Gentoo Archives: gentoo-commits

From: "Julian Ospald (hasufell)" <hasufell@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in games-strategy/glob2: glob2-0.9.4.4-r1.ebuild ChangeLog
Date: Sun, 27 Oct 2013 16:49:40
Message-Id: 20131027164934.6B6F32004E@flycatcher.gentoo.org
1 hasufell 13/10/27 16:49:34
2
3 Modified: ChangeLog
4 Added: glob2-0.9.4.4-r1.ebuild
5 Log:
6 fix underlinking and other stuff wrt #489312
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key E73C35B3)
9
10 Revision Changes Path
11 1.56 games-strategy/glob2/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/glob2/ChangeLog?rev=1.56&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/glob2/ChangeLog?rev=1.56&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/glob2/ChangeLog?r1=1.55&r2=1.56
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/games-strategy/glob2/ChangeLog,v
20 retrieving revision 1.55
21 retrieving revision 1.56
22 diff -u -r1.55 -r1.56
23 --- ChangeLog 7 Nov 2012 10:29:13 -0000 1.55
24 +++ ChangeLog 27 Oct 2013 16:49:34 -0000 1.56
25 @@ -1,6 +1,12 @@
26 # ChangeLog for games-strategy/glob2
27 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/games-strategy/glob2/ChangeLog,v 1.55 2012/11/07 10:29:13 tupone Exp $
29 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/games-strategy/glob2/ChangeLog,v 1.56 2013/10/27 16:49:34 hasufell Exp $
31 +
32 +*glob2-0.9.4.4-r1 (27 Oct 2013)
33 +
34 + 27 Oct 2013; Julian Ospald <hasufell@g.o>
35 + +files/glob2-0.9.4.4-underlinking.patch, +glob2-0.9.4.4-r1.ebuild:
36 + fix underlinking and other stuff wrt #489312
37
38 07 Nov 2012; Tupone Alfredo <tupone@g.o> glob2-0.9.4.4.ebuild:
39 Migration to EAPI 4
40
41
42
43 1.1 games-strategy/glob2/glob2-0.9.4.4-r1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/glob2/glob2-0.9.4.4-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-strategy/glob2/glob2-0.9.4.4-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: glob2-0.9.4.4-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2013 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/games-strategy/glob2/glob2-0.9.4.4-r1.ebuild,v 1.1 2013/10/27 16:49:34 hasufell Exp $
53
54 EAPI=5
55 inherit eutils gnome2-utils scons-utils games
56
57 DESCRIPTION="Real Time Strategy (RTS) game involving a brave army of globs"
58 HOMEPAGE="http://globulation2.org/"
59 SRC_URI="mirror://nongnu/glob2/${PV:0:5}/${P}.tar.gz"
60
61 LICENSE="GPL-3"
62 SLOT="0"
63 KEYWORDS="~amd64 ~ppc ~x86"
64 IUSE=""
65
66 RDEPEND="
67 >=dev-libs/boost-1.34[threads]
68 dev-libs/fribidi
69 media-libs/libsdl[opengl]
70 media-libs/libvorbis
71 media-libs/sdl-image[png]
72 media-libs/sdl-net
73 media-libs/sdl-ttf
74 media-libs/speex
75 virtual/glu
76 virtual/opengl"
77 DEPEND="${RDEPEND}"
78
79 PATCHES=( "${FILESDIR}"/${P}-{gcc44,scons-blows,underlinking}.patch )
80
81 src_configure() {
82 myesconsargs=(
83 INSTALLDIR="${GAMES_DATADIR}"/${PN}
84 DATADIR="${GAMES_DATADIR}"/${PN}
85 )
86 escons data
87 }
88
89 src_compile() {
90 escons
91 }
92
93 src_install() {
94 dogamesbin src/${PN}
95 insinto "${GAMES_DATADIR}"/${PN}
96 doins -r campaigns data maps scripts
97 find "${D}/${GAMES_DATADIR}"/${PN} -name SConscript -exec rm -f '{}' +
98 newicon -s 48 data/icons/glob2-icon-48x48.png ${PN}.png
99 make_desktop_entry glob2 "Globulation 2"
100 dodoc README*
101 prepgamesdirs
102 }
103
104 pkg_preinst() {
105 games_pkg_preinst
106 gnome2_icon_savelist
107 }
108
109 pkg_postinst() {
110 games_pkg_postinst
111 gnome2_icon_cache_update
112 }
113
114 pkg_postrm() {
115 gnome2_icon_cache_update
116 }