mr_bones_ 15/02/06 08:47:53 Modified: transcend-0.3.ebuild ChangeLog Log: EAPI=5; respect CXX, CXXFLAGS, LDFLAGS; tidy (Portage version: 2.2.14/cvs/Linux x86_64, unsigned Manifest commit)
Revision Changes Path 1.9 games-action/transcend/transcend-0.3.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/transcend/transcend-0.3.ebuild?rev=1.9&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/transcend/transcend-0.3.ebuild?rev=1.9&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/transcend/transcend-0.3.ebuild?r1=1.8&r2=1.9 Index: transcend-0.3.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/games-action/transcend/transcend-0.3.ebuild,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- transcend-0.3.ebuild 2 Jan 2015 10:47:13 -0000 1.8 +++ transcend-0.3.ebuild 6 Feb 2015 08:47:53 -0000 1.9 @@ -1,8 +1,8 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-action/transcend/transcend-0.3.ebuild,v 1.8 2015/01/02 10:47:13 tupone Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-action/transcend/transcend-0.3.ebuild,v 1.9 2015/02/06 08:47:53 mr_bones_ Exp $ -EAPI=4 +EAPI=5 inherit games DESCRIPTION="retro-style, abstract, 2D shooter" @@ -19,7 +19,7 @@ virtual/opengl virtual/glu media-libs/freeglut" -RDEPEND="${DEPEND}" +RDEPEND=${DEPEND} S=${WORKDIR}/Transcend_${PV}_UnixSource/Transcend @@ -27,38 +27,38 @@ chmod a+x portaudio/configure mkdir portaudio/{lib,bin} rm -f game/Makefile - cat \ + sed \ + -e '/^GXX=/d' \ + -e 's/GXX/CXX/' \ + -e '/^COMPILE_FLAGS =/ s/OPTIMIZE_FLAG/CXXFLAGS/' \ + -e '/^EXE_LINK =/ s/LINK_FLAGS/LDFLAGS/' \ Makefile.GnuLinuxX86 \ Makefile.common \ Makefile.minorGems \ game/Makefile.all \ Makefile.minorGems_targets \ - > game/Makefile + > game/Makefile || die sed -i \ -e "s:\"levels\":\"${GAMES_DATADIR}/${PN}/levels\":" \ game/LevelDirectoryManager.cpp \ - game/game.cpp \ - || die "sed failed" + game/game.cpp || die } src_configure() { cd portaudio - egamesconf --enable-dependency-tracking + egamesconf } src_compile() { - cd portaudio - nonfatal emake - cd ../game - emake - cd .. - cp game/Transcend ${PN} || die "cp failed" + nonfatal emake -C portaudio + emake -C game + cp game/Transcend ${PN} || die } src_install() { dogamesbin ${PN} insinto "${GAMES_DATADIR}/${PN}" doins -r levels/ - dodoc doc/how_to_*.txt + dodoc doc/{how_to_play.txt,changeLog.txt} prepgamesdirs } 1.10 games-action/transcend/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/transcend/ChangeLog?rev=1.10&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/transcend/ChangeLog?rev=1.10&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/transcend/ChangeLog?r1=1.9&r2=1.10 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/games-action/transcend/ChangeLog,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- ChangeLog 2 Jan 2015 10:47:13 -0000 1.9 +++ ChangeLog 6 Feb 2015 08:47:53 -0000 1.10 @@ -1,6 +1,9 @@ # ChangeLog for games-action/transcend # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-action/transcend/ChangeLog,v 1.9 2015/01/02 10:47:13 tupone Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-action/transcend/ChangeLog,v 1.10 2015/02/06 08:47:53 mr_bones_ Exp $ + + 06 Feb 2015; Michael Sterrett <[email protected]> transcend-0.3.ebuild: + EAPI=5; respect CXX, CXXFLAGS, LDFLAGS; tidy 02 Jan 2015; Tupone Alfredo <[email protected]> transcend-0.3.ebuild: EAPI 4 @@ -35,4 +38,3 @@ 08 Feb 2005; Michael Sterrett <[email protected]> +metadata.xml, +transcend-0.2.ebuild: initial commit (bug #65472) -
