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: audacious-2.1_alpha2.ebuild ChangeLog
Date: Tue, 23 Jun 2009 22:22:42
Message-Id: E1MJEO0-0002Xd-KG@stork.gentoo.org
1 chainsaw 09/06/23 22:22:40
2
3 Modified: ChangeLog
4 Added: audacious-2.1_alpha2.ebuild
5 Log:
6 Many bugfixes based on what people reported in the JIRA bug tracker at http://jira.atheme.org/; have *you* reported one yet?
7 (Portage version: 2.1.6.13/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.167 media-sound/audacious/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/audacious/ChangeLog?rev=1.167&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/audacious/ChangeLog?rev=1.167&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/audacious/ChangeLog?r1=1.166&r2=1.167
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-sound/audacious/ChangeLog,v
19 retrieving revision 1.166
20 retrieving revision 1.167
21 diff -u -r1.166 -r1.167
22 --- ChangeLog 22 Jun 2009 21:03:57 -0000 1.166
23 +++ ChangeLog 23 Jun 2009 22:22:40 -0000 1.167
24 @@ -1,6 +1,12 @@
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.166 2009/06/22 21:03:57 chainsaw Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-sound/audacious/ChangeLog,v 1.167 2009/06/23 22:22:40 chainsaw Exp $
29 +
30 +*audacious-2.1_alpha2 (23 Jun 2009)
31 +
32 + 23 Jun 2009; <chainsaw@g.o> +audacious-2.1_alpha2.ebuild:
33 + Many bugfixes based on what people reported in the JIRA bug tracker at
34 + http://jira.atheme.org/; have *you* reported one yet?
35
36 22 Jun 2009; <chainsaw@g.o> audacious-2.0.1.ebuild:
37 Revert stable keywords as per the wishes of the reporters in bug #274659.
38
39
40
41 1.1 media-sound/audacious/audacious-2.1_alpha2.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/audacious/audacious-2.1_alpha2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/audacious/audacious-2.1_alpha2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: audacious-2.1_alpha2.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/media-sound/audacious/audacious-2.1_alpha2.ebuild,v 1.1 2009/06/23 22:22:40 chainsaw Exp $
51
52 MY_P="${P/_/-}"
53 S="${WORKDIR}/${MY_P}"
54 DESCRIPTION="Audacious Player - Your music, your way, no exceptions"
55 HOMEPAGE="http://audacious-media-player.org/"
56 SRC_URI="http://distfiles.atheme.org/${MY_P}.tgz
57 mirror://gentoo/gentoo_ice-xmms-0.2.tar.bz2"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
62 IUSE="altivec chardet nls libsamplerate session sse2"
63
64 RDEPEND=">=dev-libs/dbus-glib-0.60
65 >=dev-libs/glib-2.16
66 >=dev-libs/libmcs-0.7.1-r2
67 >=dev-libs/libmowgli-0.7.0
68 dev-libs/libxml2
69 >=x11-libs/cairo-1.2.6
70 >=x11-libs/gtk+-2.14
71 >=x11-libs/pango-1.8.0
72 libsamplerate? ( media-libs/libsamplerate )
73 session? ( x11-libs/libSM )"
74
75 DEPEND="${RDEPEND}
76 >=dev-util/pkgconfig-0.9.0
77 nls? ( dev-util/intltool )"
78
79 PDEPEND=">=media-plugins/audacious-plugins-2.1_alpha2"
80
81 src_compile() {
82 # D-Bus is a mandatory dependency, remote control,
83 # session management and some plugins depend on this.
84 # Building without D-Bus is *unsupported* and a USE-flag
85 # will not be added due to the bug reports that will result.
86 # Bugs #197894, #199069, #207330, #208606
87 # Disabling XSPF playlists would make startup *very* slow as
88 # all plugins will then have to re-probed each time.
89 econf \
90 --enable-dbus \
91 --enable-xspf \
92 $(use_enable altivec) \
93 $(use_enable chardet) \
94 $(use_enable nls) \
95 $(use_enable session sm) \
96 $(use_enable sse2) \
97 $(use_enable libsamplerate samplerate) \
98 || die
99
100 emake || die "make failed"
101 }
102
103 src_install() {
104 make DESTDIR="${D}" install || die
105 dodoc AUTHORS NEWS README
106
107 # Gentoo_ice skin installation; bug #109772
108 insinto /usr/share/audacious/Skins/gentoo_ice
109 doins "${WORKDIR}"/gentoo_ice/*
110 docinto gentoo_ice
111 dodoc "${WORKDIR}"/README
112 }