Gentoo Archives: gentoo-commits

From: "Alfredo Tupone (tupone)" <tupone@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-games/clanlib: ChangeLog clanlib-2.3.4.ebuild
Date: Tue, 07 Feb 2012 10:02:48
Message-Id: 20120207100239.1C1022004B@flycatcher.gentoo.org
1 tupone 12/02/07 10:02:39
2
3 Modified: ChangeLog clanlib-2.3.4.ebuild
4 Log:
5 mikmod and vorbis require sound
6
7 (Portage version: 2.1.10.45/cvs/Linux i686)
8
9 Revision Changes Path
10 1.51 dev-games/clanlib/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/clanlib/ChangeLog?rev=1.51&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/clanlib/ChangeLog?rev=1.51&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/clanlib/ChangeLog?r1=1.50&r2=1.51
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-games/clanlib/ChangeLog,v
19 retrieving revision 1.50
20 retrieving revision 1.51
21 diff -u -r1.50 -r1.51
22 --- ChangeLog 6 Feb 2012 13:56:37 -0000 1.50
23 +++ ChangeLog 7 Feb 2012 10:02:38 -0000 1.51
24 @@ -1,6 +1,9 @@
25 # ChangeLog for dev-games/clanlib
26 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-games/clanlib/ChangeLog,v 1.50 2012/02/06 13:56:37 tupone Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-games/clanlib/ChangeLog,v 1.51 2012/02/07 10:02:38 tupone Exp $
29 +
30 + 07 Feb 2012; Tupone Alfredo <tupone@g.o> clanlib-2.3.4.ebuild:
31 + mikmod and vorbis require sound
32
33 *clanlib-2.3.4 (06 Feb 2012)
34
35
36
37
38 1.2 dev-games/clanlib/clanlib-2.3.4.ebuild
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/clanlib/clanlib-2.3.4.ebuild?rev=1.2&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/clanlib/clanlib-2.3.4.ebuild?rev=1.2&content-type=text/plain
42 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-games/clanlib/clanlib-2.3.4.ebuild?r1=1.1&r2=1.2
43
44 Index: clanlib-2.3.4.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/dev-games/clanlib/clanlib-2.3.4.ebuild,v
47 retrieving revision 1.1
48 retrieving revision 1.2
49 diff -u -r1.1 -r1.2
50 --- clanlib-2.3.4.ebuild 6 Feb 2012 13:56:37 -0000 1.1
51 +++ clanlib-2.3.4.ebuild 7 Feb 2012 10:02:38 -0000 1.2
52 @@ -1,6 +1,6 @@
53 # Copyright 1999-2012 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/dev-games/clanlib/clanlib-2.3.4.ebuild,v 1.1 2012/02/06 13:56:37 tupone Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/dev-games/clanlib/clanlib-2.3.4.ebuild,v 1.2 2012/02/07 10:02:38 tupone Exp $
57
58 EAPI=2
59 inherit flag-o-matic eutils autotools-utils
60 @@ -27,13 +27,15 @@
61 x11-libs/libX11
62 )
63 sqlite? ( dev-db/sqlite )
64 - sound? (
65 + sound? ( media-libs/alsa-lib )
66 + mikmod? (
67 + media-libs/libmikmod
68 + media-libs/alsa-lib
69 + )
70 + vorbis? (
71 + media-libs/libogg
72 + media-libs/libvorbis
73 media-libs/alsa-lib
74 - mikmod? ( media-libs/libmikmod )
75 - vorbis? (
76 - media-libs/libogg
77 - media-libs/libvorbis
78 - )
79 )"
80 DEPEND="${RDEPEND}
81 dev-util/pkgconfig
82 @@ -60,12 +62,15 @@
83 $(use_enable opengl clanGL1)
84 $(use_enable opengl clanGUI)
85 $(use_enable X clanDisplay)
86 - $(use_enable sound clanSound)
87 $(use_enable vorbis clanVorbis)
88 $(use_enable mikmod clanMikMod)
89 $(use_enable sqlite clanSqlite)
90 $(use_enable ipv6 getaddr)
91 )
92 + use sound \
93 + || use vorbis \
94 + || use mikmod \
95 + || myeconfargs+=( --disable-clanSound )
96 autotools-utils_src_configure
97 }