diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-09-03 10:02:41 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-09-03 10:02:41 +0000 |
commit | ca7d7c925462068fe3c0c0a2d0e08a6952fac5ce (patch) | |
tree | b8dcab0fc4c0dff171cbc62598853f46226a8ba1 /games-action | |
parent | Stable sparc, x86. (Manifest recommit) (diff) | |
download | gentoo-2-ca7d7c925462068fe3c0c0a2d0e08a6952fac5ce.tar.gz gentoo-2-ca7d7c925462068fe3c0c0a2d0e08a6952fac5ce.tar.bz2 gentoo-2-ca7d7c925462068fe3c0c0a2d0e08a6952fac5ce.zip |
added the rc patch from Loz Hygate via bug #58289
Diffstat (limited to 'games-action')
-rw-r--r-- | games-action/glaxium/ChangeLog | 6 | ||||
-rw-r--r-- | games-action/glaxium/files/0.5-rc.patch | 10 | ||||
-rw-r--r-- | games-action/glaxium/glaxium-0.5.ebuild | 21 |
3 files changed, 27 insertions, 10 deletions
diff --git a/games-action/glaxium/ChangeLog b/games-action/glaxium/ChangeLog index d585e19bc418..dd91652abccb 100644 --- a/games-action/glaxium/ChangeLog +++ b/games-action/glaxium/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for games-action/glaxium # Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-action/glaxium/ChangeLog,v 1.8 2004/06/25 03:22:30 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-action/glaxium/ChangeLog,v 1.9 2004/09/03 10:02:41 mr_bones_ Exp $ + + 03 Sep 2004; Michael Sterrett <mr_bones_@gentoo.org> +files/0.5-rc.patch, + glaxium-0.5.ebuild: + added the rc patch from Loz Hygate via bug #58289 19 Apr 2004; Chris Gianelloni <wolf31o2@gentoo.org> glaxium-0.5.ebuild: Added IUSE. diff --git a/games-action/glaxium/files/0.5-rc.patch b/games-action/glaxium/files/0.5-rc.patch new file mode 100644 index 000000000000..826a00a482a0 --- /dev/null +++ b/games-action/glaxium/files/0.5-rc.patch @@ -0,0 +1,10 @@ +--- variables.cpp.orig 2004-08-20 01:04:34.000000000 -0700 ++++ variables.cpp 2004-08-20 01:05:19.000000000 -0700 +@@ -453,6 +453,7 @@ + static char strReturn[1024];
+ strcpy(strReturn, getenv("HOME"));
+ strcat(strReturn, "/.glaxiumrc");
++ return strReturn;
+ #endif
+ }
+
diff --git a/games-action/glaxium/glaxium-0.5.ebuild b/games-action/glaxium/glaxium-0.5.ebuild index aeb0f324a72f..7c55c09888b9 100644 --- a/games-action/glaxium/glaxium-0.5.ebuild +++ b/games-action/glaxium/glaxium-0.5.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-action/glaxium/glaxium-0.5.ebuild,v 1.10 2004/06/25 03:22:30 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-action/glaxium/glaxium-0.5.ebuild,v 1.11 2004/09/03 10:02:41 mr_bones_ Exp $ inherit eutils flag-o-matic gcc games @@ -21,29 +21,32 @@ DEPEND=">=media-libs/libsdl-1.1.5 virtual/glut >=media-libs/libpng-1.0.0" -S=${WORKDIR}/${PN}_${PV} +S="${WORKDIR}/${PN}_${PV}" src_unpack() { unpack ${A} cd ${S} $(gcc-getCXX) ${FILESDIR}/glx-test.c >& /dev/null if [ $? -ne 0 ] ; then - epatch ${FILESDIR}/${PV}-glx.patch + epatch "${FILESDIR}/${PV}-glx.patch" append-flags -DGL_GLEXT_LEGACY fi - has_version '>=media-video/nvidia-glx-1.0.5328' && epatch ${FILESDIR}/${PV}-another-glx.patch + has_version '>=media-video/nvidia-glx-1.0.5328' \ + && epatch "${FILESDIR}/${PV}-another-glx.patch" + epatch "${FILESDIR}/${PV}-rc.patch" } src_compile() { - egamesconf --datadir=${GAMES_DATADIR_BASE} || die - emake || die + egamesconf \ + --datadir="${GAMES_DATADIR_BASE}" || die + emake || die "emake failed" } src_install() { - dodir ${GAMES_BINDIR} + dodir "${GAMES_BINDIR}" egamesinstall \ - exec_prefix=${D}/${GAMES_PREFIX} \ - datadir=${D}/${GAMES_DATADIR_BASE} \ + exec_prefix="${D}/${GAMES_PREFIX}" \ + datadir="${D}/${GAMES_DATADIR_BASE}" \ || die dodoc README.txt CHANGES.txt prepgamesdirs |