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/glob2: glob2-0.9.4.1.ebuild ChangeLog
Date: Thu, 26 Mar 2009 20:38:34
Message-Id: E1LmwLQ-0000aE-DJ@stork.gentoo.org
1 mr_bones_ 09/03/26 20:38:32
2
3 Modified: ChangeLog
4 Added: glob2-0.9.4.1.ebuild
5 Log:
6 version bump
7 (Portage version: 2.1.6.7/cvs/Linux i686)
8
9 Revision Changes Path
10 1.45 games-strategy/glob2/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/glob2/ChangeLog?rev=1.45&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/glob2/ChangeLog?rev=1.45&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/glob2/ChangeLog?r1=1.44&r2=1.45
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/games-strategy/glob2/ChangeLog,v
19 retrieving revision 1.44
20 retrieving revision 1.45
21 diff -u -r1.44 -r1.45
22 --- ChangeLog 24 Feb 2009 23:48:06 -0000 1.44
23 +++ ChangeLog 26 Mar 2009 20:38:32 -0000 1.45
24 @@ -1,6 +1,12 @@
25 # ChangeLog for games-strategy/glob2
26 # Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/games-strategy/glob2/ChangeLog,v 1.44 2009/02/24 23:48:06 mr_bones_ Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/games-strategy/glob2/ChangeLog,v 1.45 2009/03/26 20:38:32 mr_bones_ Exp $
29 +
30 +*glob2-0.9.4.1 (26 Mar 2009)
31 +
32 + 26 Mar 2009; Michael Sterrett <mr_bones_@g.o>
33 + +glob2-0.9.4.1.ebuild:
34 + version bump
35
36 *glob2-0.9.4 (24 Feb 2009)
37
38
39
40
41 1.1 games-strategy/glob2/glob2-0.9.4.1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/glob2/glob2-0.9.4.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/glob2/glob2-0.9.4.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: glob2-0.9.4.1.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/games-strategy/glob2/glob2-0.9.4.1.ebuild,v 1.1 2009/03/26 20:38:32 mr_bones_ Exp $
51
52 EAPI=2
53 inherit eutils games
54
55 DESCRIPTION="Real Time Strategy (RTS) game involving a brave army of globs"
56 HOMEPAGE="http://globulation2.org/"
57 SRC_URI="http://dl.sv.nongnu.org/releases/glob2/0.9.4/${P}.tar.gz"
58
59 LICENSE="GPL-3"
60 SLOT="0"
61 KEYWORDS="~amd64 ~hppa ~ppc ~x86"
62 IUSE=""
63
64 RDEPEND="virtual/opengl
65 virtual/glu
66 >=dev-libs/boost-1.34
67 media-libs/libsdl[opengl]
68 media-libs/sdl-net
69 media-libs/sdl-ttf
70 media-libs/sdl-image
71 media-libs/libvorbis
72 dev-libs/fribidi
73 media-libs/speex"
74 DEPEND="${RDEPEND}
75 >=dev-util/scons-1"
76
77 src_compile() {
78 local sconsopts=$(echo "${MAKEOPTS}" | sed -e "s/.*\(-j[0-9]\+\).*/\1/")
79
80 scons \
81 ${sconsopts} \
82 CXXFLAGS="${CXXFLAGS}" \
83 LINKFLAGS="${LDFLAGS}" \
84 INSTALLDIR="${GAMES_DATADIR}"/${PN} \
85 DATADIR="${GAMES_DATADIR}"/${PN} \
86 || die "scons failed again"
87 }
88
89 src_install() {
90 dogamesbin src/${PN} || die "dogamesbin failed"
91 insinto "${GAMES_DATADIR}"/${PN}
92 doins -r campaigns data maps scripts || die "doins failed"
93 find "${D}/${GAMES_DATADIR}"/${PN} -name SConscript -exec rm -f {} +
94 newicon data/icons/glob2-icon-48x48.png ${PN}.png
95 make_desktop_entry glob2 "Globulation 2"
96 dodoc README*
97 prepgamesdirs
98 }