Gentoo Archives: gentoo-commits

From: "Tony Vroon (chainsaw)" <chainsaw@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/audacious: ChangeLog audacious-2.1_beta1.ebuild
Date: Fri, 26 Jun 2009 18:09:25
Message-Id: E1MKFrX-0003Co-N2@stork.gentoo.org
1 chainsaw 09/06/26 18:09:23
2
3 Modified: ChangeLog
4 Added: audacious-2.1_beta1.ebuild
5 Log:
6 First beta for the 2.1 version; many more bug fixes and some GTK+ performance improvements. No longer masked, please test thoroughly. Bugs still upstream please.
7 (Portage version: 2.1.6.13/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.168 media-sound/audacious/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/audacious/ChangeLog?rev=1.168&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/audacious/ChangeLog?rev=1.168&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/audacious/ChangeLog?r1=1.167&r2=1.168
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-sound/audacious/ChangeLog,v
19 retrieving revision 1.167
20 retrieving revision 1.168
21 diff -u -r1.167 -r1.168
22 --- ChangeLog 23 Jun 2009 22:22:40 -0000 1.167
23 +++ ChangeLog 26 Jun 2009 18:09:23 -0000 1.168
24 @@ -1,6 +1,13 @@
25 # ChangeLog for media-sound/audacious
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-sound/audacious/ChangeLog,v 1.167 2009/06/23 22:22:40 chainsaw Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-sound/audacious/ChangeLog,v 1.168 2009/06/26 18:09:23 chainsaw Exp $
29 +
30 +*audacious-2.1_beta1 (26 Jun 2009)
31 +
32 + 26 Jun 2009; <chainsaw@g.o> +audacious-2.1_beta1.ebuild:
33 + First beta for the 2.1 version; many more bug fixes and some GTK+
34 + performance improvements. No longer masked, please test thoroughly. Bugs
35 + still upstream please.
36
37 *audacious-2.1_alpha2 (23 Jun 2009)
38
39
40
41
42 1.1 media-sound/audacious/audacious-2.1_beta1.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/audacious/audacious-2.1_beta1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/audacious/audacious-2.1_beta1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: audacious-2.1_beta1.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/media-sound/audacious/audacious-2.1_beta1.ebuild,v 1.1 2009/06/26 18:09:23 chainsaw Exp $
52
53 MY_P="${P/_/-}"
54 S="${WORKDIR}/${MY_P}"
55 DESCRIPTION="Audacious Player - Your music, your way, no exceptions"
56 HOMEPAGE="http://audacious-media-player.org/"
57 SRC_URI="http://distfiles.atheme.org/${MY_P}.tgz
58 mirror://gentoo/gentoo_ice-xmms-0.2.tar.bz2"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
63 IUSE="altivec chardet nls libsamplerate session sse2"
64
65 RDEPEND=">=dev-libs/dbus-glib-0.60
66 >=dev-libs/glib-2.16
67 >=dev-libs/libmcs-0.7.1-r2
68 >=dev-libs/libmowgli-0.7.0
69 dev-libs/libxml2
70 >=x11-libs/cairo-1.2.6
71 >=x11-libs/gtk+-2.14
72 >=x11-libs/pango-1.8.0
73 libsamplerate? ( media-libs/libsamplerate )
74 session? ( x11-libs/libSM )"
75
76 DEPEND="${RDEPEND}
77 >=dev-util/pkgconfig-0.9.0
78 nls? ( dev-util/intltool )"
79
80 PDEPEND=">=media-plugins/audacious-plugins-2.1_beta1"
81
82 src_compile() {
83 # D-Bus is a mandatory dependency, remote control,
84 # session management and some plugins depend on this.
85 # Building without D-Bus is *unsupported* and a USE-flag
86 # will not be added due to the bug reports that will result.
87 # Bugs #197894, #199069, #207330, #208606
88 # Disabling XSPF playlists would make startup *very* slow as
89 # all plugins will then have to re-probed each time.
90 econf \
91 --enable-dbus \
92 --enable-xspf \
93 $(use_enable altivec) \
94 $(use_enable chardet) \
95 $(use_enable nls) \
96 $(use_enable session sm) \
97 $(use_enable sse2) \
98 $(use_enable libsamplerate samplerate) \
99 || die
100
101 emake || die "make failed"
102 }
103
104 src_install() {
105 make DESTDIR="${D}" install || die
106 dodoc AUTHORS NEWS README
107
108 # Gentoo_ice skin installation; bug #109772
109 insinto /usr/share/audacious/Skins/gentoo_ice
110 doins "${WORKDIR}"/gentoo_ice/*
111 docinto gentoo_ice
112 dodoc "${WORKDIR}"/README
113 }