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