Gentoo Archives: gentoo-commits

From: "Samuli Suominen (drac)" <drac@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in games-arcade/amphetamine: amphetamine-0.8.10.ebuild ChangeLog
Date: Fri, 02 Nov 2007 21:23:59
Message-Id: E1Io3zd-0001SP-GZ@stork.gentoo.org
1 drac 07/11/02 21:23:53
2
3 Modified: amphetamine-0.8.10.ebuild ChangeLog
4 Log:
5 While keywording for AMD64, add a new patch from Debian, courtesy of Darren Salt: fix wrong assumption that long is a 32 bit type. Also fix desktop file to meet f.d.o standard, Icon= should not be suffixed if full path is not specified. Bug 166049.
6 (Portage version: 2.1.3.16)
7
8 Revision Changes Path
9 1.4 games-arcade/amphetamine/amphetamine-0.8.10.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-arcade/amphetamine/amphetamine-0.8.10.ebuild?rev=1.4&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-arcade/amphetamine/amphetamine-0.8.10.ebuild?rev=1.4&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-arcade/amphetamine/amphetamine-0.8.10.ebuild?r1=1.3&r2=1.4
14
15 Index: amphetamine-0.8.10.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/games-arcade/amphetamine/amphetamine-0.8.10.ebuild,v
18 retrieving revision 1.3
19 retrieving revision 1.4
20 diff -u -r1.3 -r1.4
21 --- amphetamine-0.8.10.ebuild 9 Apr 2007 21:43:16 -0000 1.3
22 +++ amphetamine-0.8.10.ebuild 2 Nov 2007 21:23:52 -0000 1.4
23 @@ -1,8 +1,8 @@
24 # Copyright 1999-2007 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/amphetamine/amphetamine-0.8.10.ebuild,v 1.3 2007/04/09 21:43:16 welp Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/games-arcade/amphetamine/amphetamine-0.8.10.ebuild,v 1.4 2007/11/02 21:23:52 drac Exp $
28
29 -inherit eutils games
30 +inherit eutils games toolchain-funcs
31
32 DESCRIPTION="a cool Jump'n Run game offering some unique visual effects."
33 HOMEPAGE="http://n.ethz.ch/student/loehrerl/amph/amph.html"
34 @@ -11,28 +11,28 @@
35
36 LICENSE="GPL-2"
37 SLOT="0"
38 -KEYWORDS="~ppc ~x86 ~x86-fbsd"
39 +KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
40 IUSE=""
41
42 DEPEND="media-libs/libsdl
43 x11-libs/libXpm"
44
45 src_compile() {
46 - epatch "${FILESDIR}/${P}"-gentoo.patch
47 - sed -i -e "s:@GENTOO_DATADIR@:${GAMES_DATADIR}/${PN}:" \
48 - Makefile
49 - emake || die "emake failed"
50 + epatch "${FILESDIR}"/${P}-gentoo.patch
51 + epatch "${FILESDIR}"/020_assumed_sizeof_long.diff
52 + sed -i -e "s:@GENTOO_DATADIR@:${GAMES_DATADIR}/${PN}:" Makefile
53 + emake CC="$(tc-getCC)" CXX="$(tc-getCXX)" || die "emake failed."
54 }
55
56 src_install() {
57 newgamesbin amph ${PN}
58
59 - insinto "${GAMES_DATADIR}/${PN}"
60 - doins -r ../amph/* || die "installing data failed"
61 + insinto "${GAMES_DATADIR}"/${PN}
62 + doins -r ../amph/* || die "doins failed."
63
64 - dodoc BUGS ChangeLog NEWS README || die "Installing doc"
65 + dodoc BUGS ChangeLog NEWS README || die "dodoc failed."
66 newicon amph.xpm ${PN}.xpm
67 - make_desktop_entry ${PN} "Amphetamine" ${PN}.xpm
68 + make_desktop_entry ${PN} Amphetamine ${PN}
69
70 prepgamesdirs
71 }
72
73
74
75 1.4 games-arcade/amphetamine/ChangeLog
76
77 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-arcade/amphetamine/ChangeLog?rev=1.4&view=markup
78 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-arcade/amphetamine/ChangeLog?rev=1.4&content-type=text/plain
79 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-arcade/amphetamine/ChangeLog?r1=1.3&r2=1.4
80
81 Index: ChangeLog
82 ===================================================================
83 RCS file: /var/cvsroot/gentoo-x86/games-arcade/amphetamine/ChangeLog,v
84 retrieving revision 1.3
85 retrieving revision 1.4
86 diff -u -r1.3 -r1.4
87 --- ChangeLog 9 Apr 2007 21:43:16 -0000 1.3
88 +++ ChangeLog 2 Nov 2007 21:23:52 -0000 1.4
89 @@ -1,6 +1,13 @@
90 # ChangeLog for games-arcade/amphetamine
91 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
92 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/amphetamine/ChangeLog,v 1.3 2007/04/09 21:43:16 welp Exp $
93 +# $Header: /var/cvsroot/gentoo-x86/games-arcade/amphetamine/ChangeLog,v 1.4 2007/11/02 21:23:52 drac Exp $
94 +
95 + 02 Nov 2007; Samuli Suominen <drac@g.o>
96 + +files/020_assumed_sizeof_long.diff, amphetamine-0.8.10.ebuild:
97 + While keywording for AMD64, add a new patch from Debian, courtesy of Darren
98 + Salt: fix wrong assumption that long is a 32 bit type. Also fix desktop file
99 + to meet f.d.o standard, Icon= should not be suffixed if full path is not
100 + specified. Bug #166049.
101
102 09 Apr 2007; Peter Weller <welp@g.o> amphetamine-0.8.10.ebuild:
103 Keyworded ~x86-fbsd wrt bug 173405
104
105
106
107 --
108 gentoo-commits@g.o mailing list