summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2015-06-18 15:07:12 +0000
committerUlrich Müller <ulm@gentoo.org>2015-06-18 15:07:12 +0000
commite2fd1964bc516cc04761ecd1de508fc25ec0196d (patch)
tree3de8f0925e1ee54269b7ffe74eb082ac89dc5def /games-fps
parent[QA] Remove old ebuild with dependency on removed emul-linux-x86-* packages, ... (diff)
downloadgentoo-2-e2fd1964bc516cc04761ecd1de508fc25ec0196d.tar.gz
gentoo-2-e2fd1964bc516cc04761ecd1de508fc25ec0196d.tar.bz2
gentoo-2-e2fd1964bc516cc04761ecd1de508fc25ec0196d.zip
[QA] Remove old ebuild with dependency on removed emul-linux-x86-* packages, bug 552168.
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 9433907D693FB5B8!)
Diffstat (limited to 'games-fps')
-rw-r--r--games-fps/doom3-demo/ChangeLog6
-rw-r--r--games-fps/doom3-demo/doom3-demo-1.1.1286.ebuild71
2 files changed, 5 insertions, 72 deletions
diff --git a/games-fps/doom3-demo/ChangeLog b/games-fps/doom3-demo/ChangeLog
index e16855c0626b..62735ce7b51f 100644
--- a/games-fps/doom3-demo/ChangeLog
+++ b/games-fps/doom3-demo/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for games-fps/doom3-demo
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-fps/doom3-demo/ChangeLog,v 1.33 2015/06/14 19:38:13 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-fps/doom3-demo/ChangeLog,v 1.34 2015/06/18 15:07:12 ulm Exp $
+
+ 18 Jun 2015; Ulrich Müller <ulm@gentoo.org> -doom3-demo-1.1.1286.ebuild:
+ [QA] Remove old ebuild with dependency on removed emul-linux-x86-* packages,
+ bug 552168.
14 Jun 2015; Ulrich Müller <ulm@gentoo.org> doom3-demo-1.1.1286-r1.ebuild:
[QA] Remove emul-linux-x86-* from dependencies.
diff --git a/games-fps/doom3-demo/doom3-demo-1.1.1286.ebuild b/games-fps/doom3-demo/doom3-demo-1.1.1286.ebuild
deleted file mode 100644
index c9f11c260f3d..000000000000
--- a/games-fps/doom3-demo/doom3-demo-1.1.1286.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-fps/doom3-demo/doom3-demo-1.1.1286.ebuild,v 1.24 2012/02/05 06:02:06 vapier Exp $
-
-inherit eutils unpacker games
-
-DESCRIPTION="Doom III - 3rd installment of the classic id 3D first-person shooter"
-HOMEPAGE="http://www.doom3.com/"
-SRC_URI="mirror://3dgamers/doom3/doom3-linux-${PV}-demo.x86.run
- mirror://idsoftware/doom3/linux/doom3-linux-${PV}-demo.x86.run
- mirror://gentoo/doom3.png"
-
-LICENSE="DOOM3"
-SLOT="0"
-KEYWORDS="-* amd64 x86"
-IUSE="opengl dedicated"
-RESTRICT="strip mirror"
-QA_EXECSTACK="${GAMES_PREFIX_OPT:1}/${PN}/*"
-
-# Do not remove the amd64 dep unless you are POSITIVE that it is not necessary.
-# See bug #88227 for more.
-RDEPEND="opengl? ( virtual/opengl )
- sys-libs/glibc
- amd64? ( app-emulation/emul-linux-x86-xlibs
- || (
- >=app-emulation/emul-linux-x86-xlibs-7.0
- x11-drivers/nvidia-drivers
- >=x11-drivers/ati-drivers-8.8.25-r1 ) )
- dedicated? ( app-misc/screen )"
-
-S=${WORKDIR}
-
-dir=${GAMES_PREFIX_OPT}/${PN}
-Ddir=${D}/${dir}
-
-src_unpack() {
- unpack_makeself doom3-linux-${PV}-demo.x86.run
-}
-
-src_install() {
- dodir "${dir}"
-
- insinto "${dir}"
- doins License.txt README version.info
- exeinto "${dir}"
- doexe gamex86.so libgcc_s.so.1 libstdc++.so.5 || die "doexe libs"
- if use amd64; then
- doexe bin/Linux/amd64/doom.x86 || die "doexe doom.x86"
- elif use x86; then
- doexe bin/Linux/x86/doom.x86 || die "doexe doom"
- else
- die "Platform not supported"
- fi
-
- insinto "${dir}"/demo
- doins demo/* || die "doins base"
-
- newicon "${DISTDIR}"/doom3.png ${PN}.png
-
- games_make_wrapper ${PN} ./doom.x86 "${dir}" "${dir}"
- make_desktop_entry ${PN} "Doom III (Demo)"
-
- prepgamesdirs
-}
-
-pkg_postinst() {
- games_pkg_postinst
-
- elog "To play the game run:"
- elog " doom3-demo"
-}