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