Gentoo Archives: gentoo-commits

From: "Tristan Heaven (nyhm)" <nyhm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in games-strategy/warzone2100: ChangeLog warzone2100-2.1_rc2.ebuild warzone2100-2.1_rc1.ebuild warzone2100-2.1_beta5.ebuild warzone2100-2.1_beta4.ebuild
Date: Mon, 01 Dec 2008 00:19:17
Message-Id: E1L6wVO-0004YJ-8f@stork.gentoo.org
1 nyhm 08/12/01 00:19:14
2
3 Modified: ChangeLog
4 Added: warzone2100-2.1_rc2.ebuild
5 Removed: warzone2100-2.1_rc1.ebuild
6 warzone2100-2.1_beta5.ebuild
7 warzone2100-2.1_beta4.ebuild
8 Log:
9 Version bump
10 (Portage version: 2.2_rc16/cvs/Linux 2.6.27.7 i686)
11
12 Revision Changes Path
13 1.24 games-strategy/warzone2100/ChangeLog
14
15 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/warzone2100/ChangeLog?rev=1.24&view=markup
16 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/warzone2100/ChangeLog?rev=1.24&content-type=text/plain
17 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/warzone2100/ChangeLog?r1=1.23&r2=1.24
18
19 Index: ChangeLog
20 ===================================================================
21 RCS file: /var/cvsroot/gentoo-x86/games-strategy/warzone2100/ChangeLog,v
22 retrieving revision 1.23
23 retrieving revision 1.24
24 diff -u -r1.23 -r1.24
25 --- ChangeLog 11 Nov 2008 14:59:55 -0000 1.23
26 +++ ChangeLog 1 Dec 2008 00:19:14 -0000 1.24
27 @@ -1,6 +1,11 @@
28 # ChangeLog for games-strategy/warzone2100
29 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
30 -# $Header: /var/cvsroot/gentoo-x86/games-strategy/warzone2100/ChangeLog,v 1.23 2008/11/11 14:59:55 nyhm Exp $
31 +# $Header: /var/cvsroot/gentoo-x86/games-strategy/warzone2100/ChangeLog,v 1.24 2008/12/01 00:19:14 nyhm Exp $
32 +
33 +*warzone2100-2.1_rc2 (01 Dec 2008)
34 +
35 + 01 Dec 2008; Tristan Heaven <nyhm@g.o> +warzone2100-2.1_rc2.ebuild:
36 + Version bump
37
38 *warzone2100-2.1_rc1 (11 Nov 2008)
39
40
41
42
43 1.1 games-strategy/warzone2100/warzone2100-2.1_rc2.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/warzone2100/warzone2100-2.1_rc2.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/warzone2100/warzone2100-2.1_rc2.ebuild?rev=1.1&content-type=text/plain
47
48 Index: warzone2100-2.1_rc2.ebuild
49 ===================================================================
50 # Copyright 1999-2008 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/games-strategy/warzone2100/warzone2100-2.1_rc2.ebuild,v 1.1 2008/12/01 00:19:14 nyhm Exp $
53
54 inherit autotools eutils versionator games
55
56 MY_PV=$(get_version_component_range -2)
57 DESCRIPTION="3D real-time strategy game"
58 HOMEPAGE="http://wz2100.net/"
59 SRC_URI="http://download.gna.org/warzone/releases/${MY_PV}/${P}.tar.bz2"
60
61 LICENSE="GPL-2 CCPL-Attribution-ShareAlike-3.0 public-domain"
62 SLOT="0"
63 KEYWORDS="~amd64 ~ppc ~x86"
64 # upstream requested debug support
65 IUSE="debug nls"
66
67 RDEPEND="dev-games/physfs
68 dev-libs/popt
69 media-libs/jpeg
70 media-libs/libogg
71 media-libs/libpng
72 media-libs/libsdl
73 media-libs/libvorbis
74 media-libs/openal
75 media-libs/sdl-net
76 media-libs/quesoglc
77 virtual/glu
78 virtual/opengl
79 nls? ( virtual/libintl )"
80 DEPEND="${RDEPEND}
81 app-arch/zip
82 dev-util/pkgconfig
83 nls? ( sys-devel/gettext )"
84 RDEPEND="${RDEPEND}
85 media-fonts/dejavu"
86
87 src_unpack() {
88 unpack ${A}
89 cd "${S}"
90 eautoreconf
91 }
92
93 src_compile() {
94 egamesconf \
95 --disable-dependency-tracking \
96 --docdir=/usr/share/doc/${PF} \
97 --localedir=/usr/share/locale \
98 --with-distributor="Gentoo ${PF}" \
99 --with-icondir=/usr/share/pixmaps \
100 --with-applicationdir=/usr/share/applications \
101 $(use_enable debug) \
102 $(use_enable nls) \
103 || die
104 emake || die "emake failed"
105 }
106
107 src_install() {
108 emake DESTDIR="${D}" install || die "emake install failed"
109 rm -f "${D}"/usr/share/doc/${PF}/COPYING*
110 prepgamesdirs
111 }