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-strategy/warzone2100: ChangeLog warzone2100-2.3.2.ebuild
Date: Wed, 28 Jul 2010 19:10:20
Message-Id: 20100728191015.8E7E72CE15@corvid.gentoo.org
1 mr_bones_ 10/07/28 19:10:15
2
3 Modified: ChangeLog
4 Added: warzone2100-2.3.2.ebuild
5 Log:
6 version bump
7 (Portage version: 2.1.8.3/cvs/Linux i686)
8
9 Revision Changes Path
10 1.46 games-strategy/warzone2100/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/warzone2100/ChangeLog?rev=1.46&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/warzone2100/ChangeLog?rev=1.46&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/warzone2100/ChangeLog?r1=1.45&r2=1.46
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/games-strategy/warzone2100/ChangeLog,v
19 retrieving revision 1.45
20 retrieving revision 1.46
21 diff -u -r1.45 -r1.46
22 --- ChangeLog 23 Jul 2010 11:32:02 -0000 1.45
23 +++ ChangeLog 28 Jul 2010 19:10:14 -0000 1.46
24 @@ -1,6 +1,12 @@
25 # ChangeLog for games-strategy/warzone2100
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/games-strategy/warzone2100/ChangeLog,v 1.45 2010/07/23 11:32:02 pva Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/games-strategy/warzone2100/ChangeLog,v 1.46 2010/07/28 19:10:14 mr_bones_ Exp $
29 +
30 +*warzone2100-2.3.2 (28 Jul 2010)
31 +
32 + 28 Jul 2010; Michael Sterrett <mr_bones_@g.o>
33 + +warzone2100-2.3.2.ebuild:
34 + version bump
35
36 23 Jul 2010; Peter Volkov <pva@g.o> warzone2100-2.3.1.ebuild:
37 amd64 stable, bug 328277
38
39
40
41 1.1 games-strategy/warzone2100/warzone2100-2.3.2.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/warzone2100/warzone2100-2.3.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/warzone2100/warzone2100-2.3.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: warzone2100-2.3.2.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/games-strategy/warzone2100/warzone2100-2.3.2.ebuild,v 1.1 2010/07/28 19:10:14 mr_bones_ Exp $
51
52 EAPI=2
53 inherit versionator games
54
55 MY_PV=$(get_version_component_range -2)
56 VIDEOS_P=${P}-videos.wz
57 DESCRIPTION="3D real-time strategy game"
58 HOMEPAGE="http://wz2100.net/"
59 SRC_URI="mirror://sourceforge/warzone2100/${P}.tar.gz
60 videos? ( mirror://sourceforge/warzone2100/warzone2100/Videos/2.2/high-quality-en/sequences.wz -> ${VIDEOS_P} )"
61
62 LICENSE="GPL-2 CCPL-Attribution-ShareAlike-3.0 public-domain"
63 SLOT="0"
64 KEYWORDS="~amd64 ~ppc ~x86"
65 # upstream requested debug support
66 IUSE="debug nls videos"
67
68 RDEPEND="dev-db/sqlite:3
69 >=dev-games/physfs-2[zip]
70 dev-libs/popt
71 media-libs/libogg
72 media-libs/libpng
73 media-libs/libsdl[opengl,video]
74 media-libs/libtheora
75 media-libs/libvorbis
76 media-libs/openal
77 media-libs/sdl-net
78 media-libs/quesoglc
79 virtual/glu
80 virtual/opengl
81 nls? ( virtual/libintl )"
82 DEPEND="${RDEPEND}
83 app-arch/zip
84 dev-util/pkgconfig
85 nls? ( sys-devel/gettext )"
86 RDEPEND="${RDEPEND}
87 media-fonts/dejavu"
88
89 src_configure() {
90 egamesconf \
91 --disable-dependency-tracking \
92 --docdir=/usr/share/doc/${PF} \
93 --localedir=/usr/share/locale \
94 --with-distributor="Gentoo ${PF}" \
95 --with-icondir=/usr/share/pixmaps \
96 --with-applicationdir=/usr/share/applications \
97 $(use_enable debug debug relaxed) \
98 $(use_enable nls)
99 }
100
101 src_install() {
102 emake DESTDIR="${D}" install || die "emake install failed"
103 rm -f "${D}"/usr/share/doc/${PF}/COPYING*
104 if use videos ; then
105 insinto "${GAMES_DATADIR}"/${PN}
106 newins "${DISTDIR}"/${VIDEOS_P} sequences.wz \
107 || die "newins failed"
108 fi
109 prepgamesdirs
110 }