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-emulation/xe: ChangeLog xe-2.16.1.ebuild
Date: Sat, 21 Mar 2009 19:21:05
Message-Id: E1Ll6kg-0004w0-6O@stork.gentoo.org
1 mr_bones_ 09/03/21 19:21:02
2
3 Modified: ChangeLog
4 Added: xe-2.16.1.ebuild
5 Log:
6 version bump
7 (Portage version: 2.1.6.7/cvs/Linux i686)
8
9 Revision Changes Path
10 1.10 games-emulation/xe/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/xe/ChangeLog?rev=1.10&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/xe/ChangeLog?rev=1.10&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/xe/ChangeLog?r1=1.9&r2=1.10
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/games-emulation/xe/ChangeLog,v
19 retrieving revision 1.9
20 retrieving revision 1.10
21 diff -u -r1.9 -r1.10
22 --- ChangeLog 28 Apr 2008 23:53:31 -0000 1.9
23 +++ ChangeLog 21 Mar 2009 19:21:02 -0000 1.10
24 @@ -1,6 +1,12 @@
25 # ChangeLog for games-emulation/xe
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/xe/ChangeLog,v 1.9 2008/04/28 23:53:31 mr_bones_ Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/xe/ChangeLog,v 1.10 2009/03/21 19:21:02 mr_bones_ Exp $
30 +
31 +*xe-2.16.1 (21 Mar 2009)
32 +
33 + 21 Mar 2009; Michael Sterrett <mr_bones_@g.o> +files/xe-2.16.1,
34 + +xe-2.16.1.ebuild:
35 + version bump
36
37 28 Apr 2008; Michael Sterrett <mr_bones_@g.o> -files/xe-20060101,
38 -xe-20060101.ebuild:
39
40
41
42 1.1 games-emulation/xe/xe-2.16.1.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/xe/xe-2.16.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/xe/xe-2.16.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: xe-2.16.1.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/games-emulation/xe/xe-2.16.1.ebuild,v 1.1 2009/03/21 19:21:02 mr_bones_ Exp $
52
53 EAPI=2
54 inherit games
55
56 DESCRIPTION="a multi system emulator for many console and handheld video game systems"
57 HOMEPAGE="http://www.xe-emulator.com/"
58 SRC_URI="http://www.xe-emulator.com/files/${PN}-x86-32-bin.${PV}.tar.bz2"
59
60 LICENSE="as-is"
61 SLOT="0"
62 KEYWORDS="-* ~x86"
63 IUSE=""
64 RESTRICT="strip"
65
66 RDEPEND="x11-libs/libXv
67 x11-libs/libXinerama
68 x11-libs/libXxf86vm
69 sys-libs/zlib
70 media-libs/alsa-lib
71 x11-libs/gtk+:2"
72 DEPEND="${RDEPEND}
73 dev-util/pkgconfig"
74
75 S=${WORKDIR}/${PN}-x86
76
77 src_prepare() {
78 sed -i \
79 -e '/strip/d' \
80 -e '/^CC/d' \
81 -e '/CC/s/$/ $(LDFLAGS)/' \
82 -e 's/@//' \
83 Makefile \
84 || die "sed failed"
85 }
86
87 src_install() {
88 newgamesbin xe xe.bin || die "newgamesbin failed"
89 newgamesbin "${FILESDIR}"/xe-${PV} xe || die "newgamesbin failed"
90 sed -i \
91 -e "s:GENTOODIR:$(games_get_libdir)/${PN}:" "${D}/${GAMES_BINDIR}/xe" \
92 || die "sed failed"
93 insinto "$(games_get_libdir)"/${PN}
94 doins -r modules/ rc/ || die "doins failed"
95 keepdir "$(games_get_libdir)"/${PN}/bios
96 dodoc README.txt
97 dohtml manual.html
98 prepgamesdirs
99 }