summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2015-04-20 16:58:48 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2015-04-20 16:58:48 +0000
commit8692186dc2d20fbe0ae87506a19ba7ceb96c91c1 (patch)
tree86494d74f8f535aea559e3442fa56fda8edfb814 /games-sports
parentold (diff)
downloadgentoo-2-8692186dc2d20fbe0ae87506a19ba7ceb96c91c1.tar.gz
gentoo-2-8692186dc2d20fbe0ae87506a19ba7ceb96c91c1.tar.bz2
gentoo-2-8692186dc2d20fbe0ae87506a19ba7ceb96c91c1.zip
old
(Portage version: 2.2.14/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'games-sports')
-rw-r--r--games-sports/trigger/ChangeLog6
-rw-r--r--games-sports/trigger/files/trigger-0.6.0-ldflags.patch13
-rw-r--r--games-sports/trigger/trigger-0.6.0.ebuild56
3 files changed, 5 insertions, 70 deletions
diff --git a/games-sports/trigger/ChangeLog b/games-sports/trigger/ChangeLog
index 97690a0abada..e2c960434fc8 100644
--- a/games-sports/trigger/ChangeLog
+++ b/games-sports/trigger/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for games-sports/trigger
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-sports/trigger/ChangeLog,v 1.30 2015/04/19 10:08:23 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-sports/trigger/ChangeLog,v 1.31 2015/04/20 16:58:47 mr_bones_ Exp $
+
+ 20 Apr 2015; Michael Sterrett <mr_bones_@gentoo.org>
+ -files/trigger-0.6.0-ldflags.patch, -trigger-0.6.0.ebuild:
+ old
19 Apr 2015; Agostino Sarubbo <ago@gentoo.org> trigger-0.6.1.ebuild:
Stable for x86, wrt bug #546396
diff --git a/games-sports/trigger/files/trigger-0.6.0-ldflags.patch b/games-sports/trigger/files/trigger-0.6.0-ldflags.patch
deleted file mode 100644
index 90f7d41f4882..000000000000
--- a/games-sports/trigger/files/trigger-0.6.0-ldflags.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-Index: mk/jam/unix.jam
-===================================================================
---- mk/jam/unix.jam (revision 48)
-+++ mk/jam/unix.jam (working copy)
-@@ -41,7 +41,7 @@
-
- actions LinkApplication bind NEEDLIBS bind EXTRAOBJECTS
- {
-- $(LINK) -o $(<) $(>) $(EXTRAOBJECTS) $(NEEDLIBS) $(LFLAGS)
-+ $(LINK) $(C++FLAGS) $(LDFLAGS) -o $(<) $(>) $(EXTRAOBJECTS) $(NEEDLIBS) $(LFLAGS)
- }
-
-
diff --git a/games-sports/trigger/trigger-0.6.0.ebuild b/games-sports/trigger/trigger-0.6.0.ebuild
deleted file mode 100644
index dc6b30bd5f24..000000000000
--- a/games-sports/trigger/trigger-0.6.0.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-sports/trigger/trigger-0.6.0.ebuild,v 1.4 2012/11/01 20:54:54 mr_bones_ Exp $
-
-EAPI=2
-inherit eutils games
-
-MY_PN=${PN}-rally
-MY_P=${MY_PN}-${PV}
-DESCRIPTION="Free OpenGL rally car racing game"
-HOMEPAGE="http://www.positro.net/trigger/"
-SRC_URI="mirror://sourceforge/${MY_PN}/${MY_P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
-IUSE=""
-
-RDEPEND="virtual/opengl
- virtual/glu
- media-libs/libsdl
- media-libs/sdl-image[jpeg,png]
- media-libs/sdl-mixer
- media-libs/openal
- media-libs/freealut
- dev-games/physfs"
-DEPEND="${RDEPEND}
- dev-util/ftjam"
-
-S=${WORKDIR}/${MY_P}
-
-PATCHES=( "${FILESDIR}"/${P}-ldflags.patch )
-
-src_configure() {
- egamesconf --datadir="${GAMES_DATADIR}"/${PN} || die
-}
-
-src_compile() {
- AR="${AR} cru" jam -dx -qa || die "jam failed"
-}
-
-src_install() {
- dogamesbin ${PN} || die
- insinto "${GAMES_DATADIR}"/${PN}
- doins -r data/* || die
- newicon data/textures/life_helmet.png ${PN}.png
- make_desktop_entry ${PN} Trigger
- dodoc doc/*.txt
- prepgamesdirs
-}
-
-pkg_postinst() {
- games_pkg_postinst
- elog "After running ${PN} for the first time, a config file is"
- elog "available in ~/.trigger/trigger.config"
-}