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 dev-games/guichan: guichan-0.8.2.ebuild ChangeLog
Date: Sun, 16 Jan 2011 04:07:08
Message-Id: 20110116040656.8C11F20054@flycatcher.gentoo.org
1 mr_bones_ 11/01/16 04:06:56
2
3 Modified: guichan-0.8.2.ebuild ChangeLog
4 Log:
5 add static-libs support
6
7 (Portage version: 2.1.9.25/cvs/Linux i686)
8
9 Revision Changes Path
10 1.5 dev-games/guichan/guichan-0.8.2.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/guichan/guichan-0.8.2.ebuild?rev=1.5&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/guichan/guichan-0.8.2.ebuild?rev=1.5&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/guichan/guichan-0.8.2.ebuild?r1=1.4&r2=1.5
15
16 Index: guichan-0.8.2.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-games/guichan/guichan-0.8.2.ebuild,v
19 retrieving revision 1.4
20 retrieving revision 1.5
21 diff -u -r1.4 -r1.5
22 --- guichan-0.8.2.ebuild 15 Oct 2010 12:48:31 -0000 1.4
23 +++ guichan-0.8.2.ebuild 16 Jan 2011 04:06:56 -0000 1.5
24 @@ -1,6 +1,6 @@
25 -# Copyright 1999-2010 Gentoo Foundation
26 +# Copyright 1999-2011 Gentoo Foundation
27 # Distributed under the terms of the GNU General Public License v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-games/guichan/guichan-0.8.2.ebuild,v 1.4 2010/10/15 12:48:31 ranger Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-games/guichan/guichan-0.8.2.ebuild,v 1.5 2011/01/16 04:06:56 mr_bones_ Exp $
30
31 EAPI=2
32 inherit eutils autotools
33 @@ -12,7 +12,7 @@
34 LICENSE="BSD"
35 SLOT="0"
36 KEYWORDS="amd64 ppc x86"
37 -IUSE="allegro opengl sdl"
38 +IUSE="allegro opengl sdl static-libs"
39
40 DEPEND="allegro? ( media-libs/allegro )
41 opengl? ( virtual/opengl )
42 @@ -32,10 +32,15 @@
43 $(use_enable allegro) \
44 $(use_enable opengl) \
45 $(use_enable sdl) \
46 - $(use_enable sdl sdlimage)
47 + $(use_enable sdl sdlimage) \
48 + $(use_enable static-libs static)
49 }
50
51 src_install() {
52 emake DESTDIR="${D}" install || die "emake install failed"
53 dodoc AUTHORS ChangeLog NEWS README TODO
54 + if ! use static-libs ; then
55 + find "${D}" -type f -name '*.la' -exec rm {} + \
56 + || die "la removal failed"
57 + fi
58 }
59
60
61
62 1.24 dev-games/guichan/ChangeLog
63
64 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/guichan/ChangeLog?rev=1.24&view=markup
65 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/guichan/ChangeLog?rev=1.24&content-type=text/plain
66 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/guichan/ChangeLog?r1=1.23&r2=1.24
67
68 Index: ChangeLog
69 ===================================================================
70 RCS file: /var/cvsroot/gentoo-x86/dev-games/guichan/ChangeLog,v
71 retrieving revision 1.23
72 retrieving revision 1.24
73 diff -u -r1.23 -r1.24
74 --- ChangeLog 15 Oct 2010 12:48:31 -0000 1.23
75 +++ ChangeLog 16 Jan 2011 04:06:56 -0000 1.24
76 @@ -1,6 +1,9 @@
77 # ChangeLog for dev-games/guichan
78 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
79 -# $Header: /var/cvsroot/gentoo-x86/dev-games/guichan/ChangeLog,v 1.23 2010/10/15 12:48:31 ranger Exp $
80 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
81 +# $Header: /var/cvsroot/gentoo-x86/dev-games/guichan/ChangeLog,v 1.24 2011/01/16 04:06:56 mr_bones_ Exp $
82 +
83 + 16 Jan 2011; Michael Sterrett <mr_bones_@g.o> guichan-0.8.2.ebuild:
84 + add static-libs support
85
86 15 Oct 2010; Brent Baude <ranger@g.o> guichan-0.8.2.ebuild:
87 stable ppc, bug 318909