Gentoo Archives: gentoo-commits

From: "Alfredo Tupone (tupone)" <tupone@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in games-action/xblast: ChangeLog xblast-2.10.4.ebuild
Date: Sun, 28 Oct 2007 09:37:10
Message-Id: E1Im4Zh-00016k-Io@stork.gentoo.org
1 tupone 07/10/28 09:36:53
2
3 Modified: ChangeLog
4 Added: xblast-2.10.4.ebuild
5 Log:
6 bump to 2.10.4
7 (Portage version: 2.1.3.9)
8
9 Revision Changes Path
10 1.12 games-action/xblast/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-action/xblast/ChangeLog?rev=1.12&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-action/xblast/ChangeLog?rev=1.12&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-action/xblast/ChangeLog?r1=1.11&r2=1.12
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/games-action/xblast/ChangeLog,v
19 retrieving revision 1.11
20 retrieving revision 1.12
21 diff -u -r1.11 -r1.12
22 --- ChangeLog 1 Dec 2006 19:52:26 -0000 1.11
23 +++ ChangeLog 28 Oct 2007 09:36:53 -0000 1.12
24 @@ -1,6 +1,11 @@
25 # ChangeLog for games-action/xblast
26 -# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/games-action/xblast/ChangeLog,v 1.11 2006/12/01 19:52:26 wolf31o2 Exp $
28 +# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/games-action/xblast/ChangeLog,v 1.12 2007/10/28 09:36:53 tupone Exp $
30 +
31 +*xblast-2.10.4 (28 Oct 2007)
32 +
33 + 28 Oct 2007; Tupone Alfredo <tupone@g.o> +xblast-2.10.4.ebuild:
34 + bump to 2.10.4
35
36 01 Dec 2006; Chris Gianelloni <wolf31o2@g.o> xblast-2.10.2.ebuild:
37 Removing old virtual/x11 dependency.
38
39
40
41 1.1 games-action/xblast/xblast-2.10.4.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-action/xblast/xblast-2.10.4.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-action/xblast/xblast-2.10.4.ebuild?rev=1.1&content-type=text/plain
45
46 Index: xblast-2.10.4.ebuild
47 ===================================================================
48 # Copyright 1999-2007 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/games-action/xblast/xblast-2.10.4.ebuild,v 1.1 2007/10/28 09:36:53 tupone Exp $
51
52 inherit games
53
54 # Change these as releases changes
55 IMAGES="images-2005-01-06"
56 LEVELS="levels-2005-01-06"
57 MODELS="models-2005-01-06"
58 MUSICS="musics-2005-01-06"
59 SOUNDS="sounds"
60
61 DESCRIPTION="Bomberman clone w/network support for up to 6 players"
62 HOMEPAGE="http://xblast.sourceforge.net/"
63 SRC_URI="mirror://sourceforge/xblast/${P}.tar.gz
64 mirror://sourceforge/xblast/${IMAGES}.tar.gz
65 mirror://sourceforge/xblast/${LEVELS}.tar.gz
66 mirror://sourceforge/xblast/${MODELS}.tar.gz
67 mirror://sourceforge/xblast/${MUSICS}.tar.gz
68 mirror://sourceforge/xblast/${SOUNDS}.tar.gz"
69
70 LICENSE="GPL-2"
71 SLOT="0"
72 KEYWORDS="~amd64 ~ppc ~x86"
73 IUSE=""
74
75 RDEPEND="x11-libs/libICE
76 x11-libs/libX11
77 media-libs/libpng"
78 DEPEND="${RDEPEND}
79 x11-libs/libXt"
80
81 src_compile() {
82 export MY_DATADIR="${GAMES_DATADIR}/${PN}"
83 egamesconf \
84 --with-otherdatadir="${MY_DATADIR}" \
85 --enable-sound \
86 || die
87 emake || die "emake failed"
88 }
89
90 src_install() {
91 local IMAGE_INSTALL_DIR="${GAMES_DATADIR}/${PN}/image"
92
93 make DESTDIR="${D}" install || die "make install failed"
94 dodoc AUTHORS ChangeLog NEWS README
95
96 # Images
97 dodir "${IMAGE_INSTALL_DIR}"
98 cp -pPR "${WORKDIR}/${IMAGES}"/* "${D}/${IMAGE_INSTALL_DIR}" \
99 || die "cp failed"
100
101 # Levels
102 insinto "${GAMES_DATADIR}/xblast/level"
103 doins "${WORKDIR}/${LEVELS}"/* || die "doins failed"
104
105 # Models
106 insinto "${GAMES_DATADIR}/xblast/image/sprite"
107 doins "${WORKDIR}/${MODELS}"/* || die "doins failed"
108
109 # Music and sound
110 insinto "${GAMES_DATADIR}/xblast/sounds"
111 doins "${WORKDIR}/${MUSICS}"/* "${WORKDIR}/${SOUNDS}"/* \
112 || die "doins failed"
113
114 # Cleanup
115 find "${D}" -name Imakefile -exec rm \{\} \;
116
117 prepgamesdirs
118 }
119
120
121
122 --
123 gentoo-commits@g.o mailing list