public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in games-action/transcend: transcend-0.3.ebuild ChangeLog
@ 2015-02-06  8:47 Michael Sterrett (mr_bones_)
  0 siblings, 0 replies; 3+ messages in thread
From: Michael Sterrett (mr_bones_) @ 2015-02-06  8:47 UTC (permalink / raw
  To: gentoo-commits

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 <mr_bones_@gentoo.org> transcend-0.3.ebuild:
+  EAPI=5; respect CXX, CXXFLAGS, LDFLAGS; tidy
 
   02 Jan 2015; Tupone Alfredo <tupone@gentoo.org> transcend-0.3.ebuild:
   EAPI 4
@@ -35,4 +38,3 @@
   08 Feb 2005; Michael Sterrett <mr_bones_@gentoo.org> +metadata.xml,
   +transcend-0.2.ebuild:
   initial commit (bug #65472)
-





^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in games-action/transcend: transcend-0.3.ebuild ChangeLog
@ 2015-02-06 13:41 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 3+ messages in thread
From: Agostino Sarubbo (ago) @ 2015-02-06 13:41 UTC (permalink / raw
  To: gentoo-commits

ago         15/02/06 13:41:14

  Modified:             transcend-0.3.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #539034
  
  (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --include-arches="amd64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.10                 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.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/transcend/transcend-0.3.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/transcend/transcend-0.3.ebuild?r1=1.9&r2=1.10

Index: transcend-0.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-action/transcend/transcend-0.3.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- transcend-0.3.ebuild	6 Feb 2015 08:47:53 -0000	1.9
+++ transcend-0.3.ebuild	6 Feb 2015 13:41:14 -0000	1.10
@@ -1,6 +1,6 @@
 # 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.9 2015/02/06 08:47:53 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-action/transcend/transcend-0.3.ebuild,v 1.10 2015/02/06 13:41:14 ago Exp $
 
 EAPI=5
 inherit games
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc x86"
+KEYWORDS="amd64 ~ppc x86"
 IUSE=""
 
 DEPEND="x11-libs/libXmu



1.11                 games-action/transcend/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/transcend/ChangeLog?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/transcend/ChangeLog?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/transcend/ChangeLog?r1=1.10&r2=1.11

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-action/transcend/ChangeLog,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ChangeLog	6 Feb 2015 08:47:53 -0000	1.10
+++ ChangeLog	6 Feb 2015 13:41:14 -0000	1.11
@@ -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.10 2015/02/06 08:47:53 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-action/transcend/ChangeLog,v 1.11 2015/02/06 13:41:14 ago Exp $
+
+  06 Feb 2015; Agostino Sarubbo <ago@gentoo.org> transcend-0.3.ebuild:
+  Stable for amd64, wrt bug #539034
 
   06 Feb 2015; Michael Sterrett <mr_bones_@gentoo.org> transcend-0.3.ebuild:
   EAPI=5; respect CXX, CXXFLAGS, LDFLAGS; tidy





^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in games-action/transcend: transcend-0.3.ebuild ChangeLog
@ 2015-06-04 16:42 Michael Sterrett (mr_bones_)
  0 siblings, 0 replies; 3+ messages in thread
From: Michael Sterrett (mr_bones_) @ 2015-06-04 16:42 UTC (permalink / raw
  To: gentoo-commits

mr_bones_    15/06/04 16:42:15

  Modified:             transcend-0.3.ebuild ChangeLog
  Log:
  remove pointless nonfatal (bug #551166)
  
  (Portage version: 2.2.18/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.11                 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.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/transcend/transcend-0.3.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/transcend/transcend-0.3.ebuild?r1=1.10&r2=1.11

Index: transcend-0.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-action/transcend/transcend-0.3.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- transcend-0.3.ebuild	6 Feb 2015 13:41:14 -0000	1.10
+++ transcend-0.3.ebuild	4 Jun 2015 16:42:15 -0000	1.11
@@ -1,6 +1,6 @@
 # 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.10 2015/02/06 13:41:14 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-action/transcend/transcend-0.3.ebuild,v 1.11 2015/06/04 16:42:15 mr_bones_ Exp $
 
 EAPI=5
 inherit games
@@ -50,7 +50,7 @@
 }
 
 src_compile() {
-	nonfatal emake -C portaudio
+	emake -C portaudio lib/libportaudio.a
 	emake -C game
 	cp game/Transcend ${PN} || die
 }



1.12                 games-action/transcend/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/transcend/ChangeLog?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/transcend/ChangeLog?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/transcend/ChangeLog?r1=1.11&r2=1.12

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-action/transcend/ChangeLog,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ChangeLog	6 Feb 2015 13:41:14 -0000	1.11
+++ ChangeLog	4 Jun 2015 16:42:15 -0000	1.12
@@ -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.11 2015/02/06 13:41:14 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-action/transcend/ChangeLog,v 1.12 2015/06/04 16:42:15 mr_bones_ Exp $
+
+  04 Jun 2015; Michael Sterrett <mr_bones_@gentoo.org> transcend-0.3.ebuild:
+  remove pointless nonfatal (bug #551166)
 
   06 Feb 2015; Agostino Sarubbo <ago@gentoo.org> transcend-0.3.ebuild:
   Stable for amd64, wrt bug #539034





^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-06-04 16:42 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-06  8:47 [gentoo-commits] gentoo-x86 commit in games-action/transcend: transcend-0.3.ebuild ChangeLog Michael Sterrett (mr_bones_)
  -- strict thread matches above, loose matches on Subject: below --
2015-02-06 13:41 Agostino Sarubbo (ago)
2015-06-04 16:42 Michael Sterrett (mr_bones_)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox