* [gentoo-commits] proj/gamerlay:master commit in: games-strategy/defcon/
@ 2013-02-14 7:07 Daniel Johnson
0 siblings, 0 replies; 4+ messages in thread
From: Daniel Johnson @ 2013-02-14 7:07 UTC (permalink / raw
To: gentoo-commits
commit: 025c2fd9ff820955f33ae116c6a562a63b203adc
Author: Dan Johnson <ComputerDruid <AT> gmail <DOT> com>
AuthorDate: Thu Feb 14 07:07:13 2013 +0000
Commit: Daniel Johnson <ComputerDruid <AT> gmail <DOT> com>
CommitDate: Thu Feb 14 07:07:13 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=025c2fd9
[games-strategy/defcon] new ebuild
---
games-strategy/defcon/defcon-1.6.1.ebuild | 46 +++++++++++++++++++++++++++++
games-strategy/defcon/metadata.xml | 10 ++++++
2 files changed, 56 insertions(+), 0 deletions(-)
diff --git a/games-strategy/defcon/defcon-1.6.1.ebuild b/games-strategy/defcon/defcon-1.6.1.ebuild
new file mode 100644
index 0000000..a8e409a
--- /dev/null
+++ b/games-strategy/defcon/defcon-1.6.1.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=4
+
+inherit games
+inherit versionator
+
+MY_PV=$(replace_version_separator 2 '-')
+
+DESCRIPTION="http://www.introversion.co.uk/defcon/"
+HOMEPAGE="Global thermonuclear war simulation with multiplayer support"
+SRC_URI="${PN}_${MY_PV}_amd64.tar.gz"
+
+LICENSE="Introversion"
+SLOT="0"
+KEYWORDS="~amd64"
+RESTRICT="fetch strip"
+IUSE=""
+
+DEPEND=""
+RDEPEND="
+ virtual/glu
+ media-libs/libogg
+ media-libs/libvorbis
+ media-libs/libsdl:0
+ "
+
+S="${WORKDIR}/${PN}"
+
+src_install() {
+ local dir="${GAMES_PREFIX_OPT}/${PN}"
+ local exe="${PN}.bin.x86_64"
+
+ insinto "${dir}"
+ exeinto "${dir}"
+ doexe "${exe}"
+ doicon "${PN}.png"
+ doins sounds.dat main.dat
+
+ games_make_wrapper "${PN}" "./${exe}" "${dir}"
+ make_desktop_entry "${PN}" "${PN}" "${PN}"
+
+ prepgamesdirs
+}
diff --git a/games-strategy/defcon/metadata.xml b/games-strategy/defcon/metadata.xml
new file mode 100644
index 0000000..2edb4f6
--- /dev/null
+++ b/games-strategy/defcon/metadata.xml
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<longdescription lang="en">
+Defcon. Everybody Dies.
+It's Global Thermonuclear War, and nobody wins.
+But maybe - just maybe - you can lose the least.
+</longdescription>
+</pkgmetadata>
+
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] proj/gamerlay:master commit in: games-strategy/defcon/
@ 2018-02-11 18:29 Vadim A. Misbakh-Soloviov
0 siblings, 0 replies; 4+ messages in thread
From: Vadim A. Misbakh-Soloviov @ 2018-02-11 18:29 UTC (permalink / raw
To: gentoo-commits
commit: 2671149b0467cd977600131470988d14098beac8
Author: Vadim A. Misbakh-Soloviov <git <AT> mva <DOT> name>
AuthorDate: Sun Feb 11 17:47:58 2018 +0000
Commit: Vadim A. Misbakh-Soloviov <mva <AT> mva <DOT> name>
CommitDate: Sun Feb 11 17:47:58 2018 +0000
URL: https://gitweb.gentoo.org/proj/gamerlay.git/commit/?id=2671149b
defcon: ebuild fix by email request of "R Moog"
games-strategy/defcon/defcon-1.6.1.ebuild | 35 ++++++++++++++++++-------------
1 file changed, 20 insertions(+), 15 deletions(-)
diff --git a/games-strategy/defcon/defcon-1.6.1.ebuild b/games-strategy/defcon/defcon-1.6.1.ebuild
index a8e409a..5bd959c 100644
--- a/games-strategy/defcon/defcon-1.6.1.ebuild
+++ b/games-strategy/defcon/defcon-1.6.1.ebuild
@@ -1,46 +1,51 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-EAPI=4
+EAPI=6
-inherit games
-inherit versionator
+inherit eutils unpacker versionator
MY_PV=$(replace_version_separator 2 '-')
DESCRIPTION="http://www.introversion.co.uk/defcon/"
HOMEPAGE="Global thermonuclear war simulation with multiplayer support"
-SRC_URI="${PN}_${MY_PV}_amd64.tar.gz"
+BASE_URI="https://www.introversion.co.uk/defcon/downloads/${PN}_${MY_PV}___ARCH__.deb"
+SRC_URI="
+ x86? ( ${BASE_URI/__ARCH__/i386} )
+ amd64? ( ${BASE_URI/__ARCH__/amd64} )
+"
LICENSE="Introversion"
SLOT="0"
-KEYWORDS="~amd64"
-RESTRICT="fetch strip"
+KEYWORDS="~x86 ~amd64"
+RESTRICT="strip"
IUSE=""
DEPEND=""
RDEPEND="
+ ${DEPEND}
virtual/glu
media-libs/libogg
media-libs/libvorbis
media-libs/libsdl:0
- "
+"
-S="${WORKDIR}/${PN}"
+S="${WORKDIR}"
src_install() {
- local dir="${GAMES_PREFIX_OPT}/${PN}"
- local exe="${PN}.bin.x86_64"
+ local dir="/opt/${PN}"
+ local exe="${PN}.bin.${ARCH/amd/x86_}"
+ #use x86 && exe="${PN}.bin.x86"
+ #use amd64 && exe="${PN}.bin.x86_64"
insinto "${dir}"
exeinto "${dir}"
+ cd "${S}/usr/local/games/${PN}"
doexe "${exe}"
doicon "${PN}.png"
+ dodoc "linux.txt" "license.txt"
doins sounds.dat main.dat
- games_make_wrapper "${PN}" "./${exe}" "${dir}"
+ make_wrapper "${PN}" "./${exe}" "${dir}"
make_desktop_entry "${PN}" "${PN}" "${PN}"
-
- prepgamesdirs
}
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] proj/gamerlay:master commit in: games-strategy/defcon/
@ 2020-02-29 13:04 Azamat H. Hackimov
0 siblings, 0 replies; 4+ messages in thread
From: Azamat H. Hackimov @ 2020-02-29 13:04 UTC (permalink / raw
To: gentoo-commits
commit: 2256aea9e5ca8cafd7842b80ccaf4feebe23c656
Author: Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
AuthorDate: Sat Feb 29 13:01:58 2020 +0000
Commit: Azamat H. Hackimov <winterheart <AT> gentoo <DOT> ru>
CommitDate: Sat Feb 29 13:01:58 2020 +0000
URL: https://gitweb.gentoo.org/proj/gamerlay.git/commit/?id=2256aea9
games-strategy/defcon: minor fixes
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Azamat H. Hackimov <azamat.hackimov <AT> gmail.com>
games-strategy/defcon/defcon-1.6.1.ebuild | 29 ++++++++++++-----------------
1 file changed, 12 insertions(+), 17 deletions(-)
diff --git a/games-strategy/defcon/defcon-1.6.1.ebuild b/games-strategy/defcon/defcon-1.6.1.ebuild
index 5bd959c..d155858 100644
--- a/games-strategy/defcon/defcon-1.6.1.ebuild
+++ b/games-strategy/defcon/defcon-1.6.1.ebuild
@@ -1,33 +1,28 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=6
+EAPI=7
-inherit eutils unpacker versionator
+inherit eutils unpacker
-MY_PV=$(replace_version_separator 2 '-')
-
-DESCRIPTION="http://www.introversion.co.uk/defcon/"
-HOMEPAGE="Global thermonuclear war simulation with multiplayer support"
-BASE_URI="https://www.introversion.co.uk/defcon/downloads/${PN}_${MY_PV}___ARCH__.deb"
+HOMEPAGE="http://www.introversion.co.uk/defcon/"
+DESCRIPTION="Global thermonuclear war simulation with multiplayer support"
SRC_URI="
- x86? ( ${BASE_URI/__ARCH__/i386} )
- amd64? ( ${BASE_URI/__ARCH__/amd64} )
+ x86? ( https://www.introversion.co.uk/defcon/downloads/${PN}_$(ver_rs 2 -)_i386.deb )
+ amd64? ( https://www.introversion.co.uk/defcon/downloads/${PN}_$(ver_rs 2 -)_amd64.deb )
"
LICENSE="Introversion"
SLOT="0"
-KEYWORDS="~x86 ~amd64"
+KEYWORDS="~amd64 ~x86"
RESTRICT="strip"
IUSE=""
-DEPEND=""
RDEPEND="
- ${DEPEND}
- virtual/glu
- media-libs/libogg
- media-libs/libvorbis
- media-libs/libsdl:0
+ virtual/glu
+ media-libs/libogg
+ media-libs/libvorbis
+ media-libs/libsdl:0
"
S="${WORKDIR}"
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] proj/gamerlay:master commit in: games-strategy/defcon/
@ 2023-04-15 22:48 Vadim Misbakh-Soloviov
0 siblings, 0 replies; 4+ messages in thread
From: Vadim Misbakh-Soloviov @ 2023-04-15 22:48 UTC (permalink / raw
To: gentoo-commits
commit: bd9c0a1ae4c7af9f0019f879c7085f3f2e37daee
Author: Vadim Misbakh-Soloviov <mva <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 15 19:06:03 2023 +0000
Commit: Vadim Misbakh-Soloviov <mva <AT> gentoo <DOT> org>
CommitDate: Sat Apr 15 19:06:03 2023 +0000
URL: https://gitweb.gentoo.org/proj/gamerlay.git/commit/?id=bd9c0a1a
games-strategy/defcon: use version from gentoo repo
Signed-off-by: Vadim Misbakh-Soloviov <mva <AT> gentoo.org>
games-strategy/defcon/defcon-1.6.1.ebuild | 46 -------------------------------
games-strategy/defcon/metadata.xml | 10 -------
2 files changed, 56 deletions(-)
diff --git a/games-strategy/defcon/defcon-1.6.1.ebuild b/games-strategy/defcon/defcon-1.6.1.ebuild
deleted file mode 100644
index d155858..0000000
--- a/games-strategy/defcon/defcon-1.6.1.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit eutils unpacker
-
-HOMEPAGE="http://www.introversion.co.uk/defcon/"
-DESCRIPTION="Global thermonuclear war simulation with multiplayer support"
-SRC_URI="
- x86? ( https://www.introversion.co.uk/defcon/downloads/${PN}_$(ver_rs 2 -)_i386.deb )
- amd64? ( https://www.introversion.co.uk/defcon/downloads/${PN}_$(ver_rs 2 -)_amd64.deb )
-"
-
-LICENSE="Introversion"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-RESTRICT="strip"
-IUSE=""
-
-RDEPEND="
- virtual/glu
- media-libs/libogg
- media-libs/libvorbis
- media-libs/libsdl:0
-"
-
-S="${WORKDIR}"
-
-src_install() {
- local dir="/opt/${PN}"
- local exe="${PN}.bin.${ARCH/amd/x86_}"
- #use x86 && exe="${PN}.bin.x86"
- #use amd64 && exe="${PN}.bin.x86_64"
-
- insinto "${dir}"
- exeinto "${dir}"
- cd "${S}/usr/local/games/${PN}"
- doexe "${exe}"
- doicon "${PN}.png"
- dodoc "linux.txt" "license.txt"
- doins sounds.dat main.dat
-
- make_wrapper "${PN}" "./${exe}" "${dir}"
- make_desktop_entry "${PN}" "${PN}" "${PN}"
-}
diff --git a/games-strategy/defcon/metadata.xml b/games-strategy/defcon/metadata.xml
deleted file mode 100644
index 2edb4f6..0000000
--- a/games-strategy/defcon/metadata.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<longdescription lang="en">
-Defcon. Everybody Dies.
-It's Global Thermonuclear War, and nobody wins.
-But maybe - just maybe - you can lose the least.
-</longdescription>
-</pkgmetadata>
-
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2023-04-15 22:48 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-02-11 18:29 [gentoo-commits] proj/gamerlay:master commit in: games-strategy/defcon/ Vadim A. Misbakh-Soloviov
-- strict thread matches above, loose matches on Subject: below --
2023-04-15 22:48 Vadim Misbakh-Soloviov
2020-02-29 13:04 Azamat H. Hackimov
2013-02-14 7:07 Daniel Johnson
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox