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/warmux: ChangeLog warmux-11.01.ebuild
Date: Sun, 23 Jan 2011 07:50:46
Message-Id: 20110123075036.EE2E520057@flycatcher.gentoo.org
1 mr_bones_ 11/01/23 07:50:36
2
3 Modified: ChangeLog
4 Added: warmux-11.01.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.1.9.25/cvs/Linux i686)
9
10 Revision Changes Path
11 1.2 games-strategy/warmux/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/warmux/ChangeLog?rev=1.2&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/warmux/ChangeLog?rev=1.2&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/warmux/ChangeLog?r1=1.1&r2=1.2
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/games-strategy/warmux/ChangeLog,v
20 retrieving revision 1.1
21 retrieving revision 1.2
22 diff -u -r1.1 -r1.2
23 --- ChangeLog 23 Jan 2011 06:46:17 -0000 1.1
24 +++ ChangeLog 23 Jan 2011 07:50:36 -0000 1.2
25 @@ -1,6 +1,16 @@
26 -# ChangeLog for games-strategy/wormux
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/games-strategy/warmux/ChangeLog,v 1.1 2011/01/23 06:46:17 mr_bones_ Exp $
29 +# ChangeLog for games-strategy/warmux
30 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/games-strategy/warmux/ChangeLog,v 1.2 2011/01/23 07:50:36 mr_bones_ Exp $
32 +
33 + 23 Jan 2011; Michael Sterrett <mr_bones_@g.o> +warmux-11.01.ebuild,
34 + +files/warmux-11.01-gentoo.patch:
35 + version bump
36 +
37 +*warmux-11.01 (23 Jan 2011)
38 +
39 + 23 Jan 2011; Michael Sterrett <mr_bones_@g.o> +warmux-11.01.ebuild,
40 + +files/warmux-11.01-gentoo.patch:
41 + version bump
42
43 20 Jun 2010; Markus Meier <maekke@g.o> wormux-0.9.2.1.ebuild:
44 x86 stable, bug #320903
45
46
47
48 1.1 games-strategy/warmux/warmux-11.01.ebuild
49
50 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/warmux/warmux-11.01.ebuild?rev=1.1&view=markup
51 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/warmux/warmux-11.01.ebuild?rev=1.1&content-type=text/plain
52
53 Index: warmux-11.01.ebuild
54 ===================================================================
55 # Copyright 1999-2011 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 # $Header: /var/cvsroot/gentoo-x86/games-strategy/warmux/warmux-11.01.ebuild,v 1.1 2011/01/23 07:50:36 mr_bones_ Exp $
58
59 EAPI=2
60 inherit autotools eutils games
61
62 DESCRIPTION="A free Worms clone"
63 HOMEPAGE="http://www.wormux.org/"
64 SRC_URI="http://download.gna.org/warmux/${P}.tar.bz2"
65
66 LICENSE="GPL-2"
67 SLOT="0"
68 KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
69 IUSE="debug nls unicode"
70
71 RDEPEND="media-libs/libsdl[joystick,video]
72 media-libs/sdl-image[jpeg,png]
73 media-libs/sdl-mixer[vorbis]
74 media-libs/sdl-ttf
75 media-libs/sdl-net
76 media-libs/sdl-gfx
77 net-misc/curl
78 media-fonts/dejavu
79 dev-libs/libxml2
80 x11-libs/libX11
81 nls? ( virtual/libintl )
82 unicode? ( dev-libs/fribidi )"
83 DEPEND="${RDEPEND}
84 dev-util/pkgconfig
85 nls? ( sys-devel/gettext )"
86
87 src_prepare() {
88 epatch "${FILESDIR}"/${P}-gentoo.patch
89 eautoreconf
90 }
91
92 src_configure() {
93 egamesconf \
94 --disable-dependency-tracking \
95 --with-localedir-name=/usr/share/locale \
96 --with-datadir-name="${GAMES_DATADIR}/${PN}" \
97 --with-font-path=/usr/share/fonts/dejavu/DejaVuSans.ttf \
98 $(use_enable debug) \
99 $(use_enable nls) \
100 $(use_enable unicode fribidi)
101 }
102
103 src_install() {
104 emake DESTDIR="${D}" install || die "emake install failed"
105 dodoc AUTHORS ChangeLog README TODO
106 rm -f "${D}${GAMES_DATADIR}/${PN}/font/DejaVuSans.ttf"
107 doicon data/icon/warmux.svg || die
108 make_desktop_entry warmux Warmux || die
109 prepgamesdirs
110 }