Gentoo Archives: gentoo-commits

From: "Michael Sterrett (mr_bones_)" <mr_bones_@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in games-action/transcend: transcend-0.3.ebuild ChangeLog
Date: Fri, 06 Feb 2015 08:47:58
Message-Id: 20150206084753.B34E4112AA@oystercatcher.gentoo.org
1 mr_bones_ 15/02/06 08:47:53
2
3 Modified: transcend-0.3.ebuild ChangeLog
4 Log:
5 EAPI=5; respect CXX, CXXFLAGS, LDFLAGS; tidy
6
7 (Portage version: 2.2.14/cvs/Linux x86_64, unsigned Manifest commit)
8
9 Revision Changes Path
10 1.9 games-action/transcend/transcend-0.3.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/transcend/transcend-0.3.ebuild?rev=1.9&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/transcend/transcend-0.3.ebuild?rev=1.9&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/transcend/transcend-0.3.ebuild?r1=1.8&r2=1.9
15
16 Index: transcend-0.3.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/games-action/transcend/transcend-0.3.ebuild,v
19 retrieving revision 1.8
20 retrieving revision 1.9
21 diff -u -r1.8 -r1.9
22 --- transcend-0.3.ebuild 2 Jan 2015 10:47:13 -0000 1.8
23 +++ transcend-0.3.ebuild 6 Feb 2015 08:47:53 -0000 1.9
24 @@ -1,8 +1,8 @@
25 # Copyright 1999-2015 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/games-action/transcend/transcend-0.3.ebuild,v 1.8 2015/01/02 10:47:13 tupone Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/games-action/transcend/transcend-0.3.ebuild,v 1.9 2015/02/06 08:47:53 mr_bones_ Exp $
29
30 -EAPI=4
31 +EAPI=5
32 inherit games
33
34 DESCRIPTION="retro-style, abstract, 2D shooter"
35 @@ -19,7 +19,7 @@
36 virtual/opengl
37 virtual/glu
38 media-libs/freeglut"
39 -RDEPEND="${DEPEND}"
40 +RDEPEND=${DEPEND}
41
42 S=${WORKDIR}/Transcend_${PV}_UnixSource/Transcend
43
44 @@ -27,38 +27,38 @@
45 chmod a+x portaudio/configure
46 mkdir portaudio/{lib,bin}
47 rm -f game/Makefile
48 - cat \
49 + sed \
50 + -e '/^GXX=/d' \
51 + -e 's/GXX/CXX/' \
52 + -e '/^COMPILE_FLAGS =/ s/OPTIMIZE_FLAG/CXXFLAGS/' \
53 + -e '/^EXE_LINK =/ s/LINK_FLAGS/LDFLAGS/' \
54 Makefile.GnuLinuxX86 \
55 Makefile.common \
56 Makefile.minorGems \
57 game/Makefile.all \
58 Makefile.minorGems_targets \
59 - > game/Makefile
60 + > game/Makefile || die
61 sed -i \
62 -e "s:\"levels\":\"${GAMES_DATADIR}/${PN}/levels\":" \
63 game/LevelDirectoryManager.cpp \
64 - game/game.cpp \
65 - || die "sed failed"
66 + game/game.cpp || die
67 }
68
69 src_configure() {
70 cd portaudio
71 - egamesconf --enable-dependency-tracking
72 + egamesconf
73 }
74
75 src_compile() {
76 - cd portaudio
77 - nonfatal emake
78 - cd ../game
79 - emake
80 - cd ..
81 - cp game/Transcend ${PN} || die "cp failed"
82 + nonfatal emake -C portaudio
83 + emake -C game
84 + cp game/Transcend ${PN} || die
85 }
86
87 src_install() {
88 dogamesbin ${PN}
89 insinto "${GAMES_DATADIR}/${PN}"
90 doins -r levels/
91 - dodoc doc/how_to_*.txt
92 + dodoc doc/{how_to_play.txt,changeLog.txt}
93 prepgamesdirs
94 }
95
96
97
98 1.10 games-action/transcend/ChangeLog
99
100 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/transcend/ChangeLog?rev=1.10&view=markup
101 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/transcend/ChangeLog?rev=1.10&content-type=text/plain
102 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/transcend/ChangeLog?r1=1.9&r2=1.10
103
104 Index: ChangeLog
105 ===================================================================
106 RCS file: /var/cvsroot/gentoo-x86/games-action/transcend/ChangeLog,v
107 retrieving revision 1.9
108 retrieving revision 1.10
109 diff -u -r1.9 -r1.10
110 --- ChangeLog 2 Jan 2015 10:47:13 -0000 1.9
111 +++ ChangeLog 6 Feb 2015 08:47:53 -0000 1.10
112 @@ -1,6 +1,9 @@
113 # ChangeLog for games-action/transcend
114 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
115 -# $Header: /var/cvsroot/gentoo-x86/games-action/transcend/ChangeLog,v 1.9 2015/01/02 10:47:13 tupone Exp $
116 +# $Header: /var/cvsroot/gentoo-x86/games-action/transcend/ChangeLog,v 1.10 2015/02/06 08:47:53 mr_bones_ Exp $
117 +
118 + 06 Feb 2015; Michael Sterrett <mr_bones_@g.o> transcend-0.3.ebuild:
119 + EAPI=5; respect CXX, CXXFLAGS, LDFLAGS; tidy
120
121 02 Jan 2015; Tupone Alfredo <tupone@g.o> transcend-0.3.ebuild:
122 EAPI 4
123 @@ -35,4 +38,3 @@
124 08 Feb 2005; Michael Sterrett <mr_bones_@g.o> +metadata.xml,
125 +transcend-0.2.ebuild:
126 initial commit (bug #65472)
127 -