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: ChangeLog glob2-0.9.4.4.ebuild
Date: Fri, 04 Sep 2009 15:15:32
Message-Id: E1MjfKB-000644-Jd@stork.gentoo.org
1 mr_bones_ 09/09/04 20:23:59
2
3 Modified: ChangeLog
4 Added: glob2-0.9.4.4.ebuild
5 Log:
6 version bump
7 (Portage version: 2.1.6.13/cvs/Linux i686)
8
9 Revision Changes Path
10 1.49 games-strategy/glob2/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/glob2/ChangeLog?rev=1.49&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/glob2/ChangeLog?rev=1.49&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/glob2/ChangeLog?r1=1.48&r2=1.49
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/games-strategy/glob2/ChangeLog,v
19 retrieving revision 1.48
20 retrieving revision 1.49
21 diff -u -r1.48 -r1.49
22 --- ChangeLog 13 Jul 2009 10:46:02 -0000 1.48
23 +++ ChangeLog 4 Sep 2009 20:23:59 -0000 1.49
24 @@ -1,6 +1,12 @@
25 # ChangeLog for games-strategy/glob2
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/games-strategy/glob2/ChangeLog,v 1.48 2009/07/13 10:46:02 tupone Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/games-strategy/glob2/ChangeLog,v 1.49 2009/09/04 20:23:59 mr_bones_ Exp $
29 +
30 +*glob2-0.9.4.4 (04 Sep 2009)
31 +
32 + 04 Sep 2009; Michael Sterrett <mr_bones_@g.o>
33 + +glob2-0.9.4.4.ebuild, +files/glob2-0.9.4.4-gcc44.patch:
34 + version bump
35
36 13 Jul 2009; Tupone Alfredo <tupone@g.o>
37 +files/glob2-0.9.4.1-gcc44.patch, glob2-0.9.4.1.ebuild:
38
39
40
41 1.1 games-strategy/glob2/glob2-0.9.4.4.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/glob2/glob2-0.9.4.4.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-strategy/glob2/glob2-0.9.4.4.ebuild?rev=1.1&content-type=text/plain
45
46 Index: glob2-0.9.4.4.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.4.ebuild,v 1.1 2009/09/04 20:23:59 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 PATCHES=( "${FILESDIR}"/${P}-gcc44.patch )
78
79 src_compile() {
80 local sconsopts=$(echo "${MAKEOPTS}" | sed -ne "/-j/ { s/.*\(-j[:space:]*[0-9]\+\).*/\1/; p }")
81
82 scons \
83 ${sconsopts} \
84 CXXFLAGS="${CXXFLAGS}" \
85 LINKFLAGS="${LDFLAGS}" \
86 INSTALLDIR="${GAMES_DATADIR}"/${PN} \
87 DATADIR="${GAMES_DATADIR}"/${PN} \
88 || die "scons failed again"
89 }
90
91 src_install() {
92 dogamesbin src/${PN} || die "dogamesbin failed"
93 insinto "${GAMES_DATADIR}"/${PN}
94 doins -r campaigns data maps scripts || die "doins failed"
95 find "${D}/${GAMES_DATADIR}"/${PN} -name SConscript -exec rm -f {} +
96 newicon data/icons/glob2-icon-48x48.png ${PN}.png
97 make_desktop_entry glob2 "Globulation 2"
98 dodoc README*
99 prepgamesdirs
100 }