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.4_rc3.ebuild audacious-2.4_rc1.ebuild
Date: Mon, 23 Aug 2010 22:15:04
Message-Id: 20100823221459.471172004E@flycatcher.gentoo.org
1 chainsaw 10/08/23 22:14:59
2
3 Modified: ChangeLog
4 Added: audacious-2.4_rc3.ebuild
5 Removed: audacious-2.4_rc1.ebuild
6 Log:
7 One more release candidate. Translation updates, bugfixes, builds again on PowerPC. Closes bug #333365 by John Ross Hunt.
8 (Portage version: 2.2_rc67/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.210 media-sound/audacious/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacious/ChangeLog?rev=1.210&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacious/ChangeLog?rev=1.210&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacious/ChangeLog?r1=1.209&r2=1.210
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-sound/audacious/ChangeLog,v
20 retrieving revision 1.209
21 retrieving revision 1.210
22 diff -u -r1.209 -r1.210
23 --- ChangeLog 13 Aug 2010 21:30:09 -0000 1.209
24 +++ ChangeLog 23 Aug 2010 22:14:59 -0000 1.210
25 @@ -1,6 +1,13 @@
26 # ChangeLog for media-sound/audacious
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-sound/audacious/ChangeLog,v 1.209 2010/08/13 21:30:09 chainsaw Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-sound/audacious/ChangeLog,v 1.210 2010/08/23 22:14:59 chainsaw Exp $
30 +
31 +*audacious-2.4_rc3 (23 Aug 2010)
32 +
33 + 23 Aug 2010; <chainsaw@g.o> -audacious-2.4_rc1.ebuild,
34 + +audacious-2.4_rc3.ebuild:
35 + One more release candidate. Translation updates, bugfixes, builds again on
36 + PowerPC. Closes bug #333365 by John Ross Hunt.
37
38 *audacious-2.4_rc2 (13 Aug 2010)
39
40
41
42
43 1.1 media-sound/audacious/audacious-2.4_rc3.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacious/audacious-2.4_rc3.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacious/audacious-2.4_rc3.ebuild?rev=1.1&content-type=text/plain
47
48 Index: audacious-2.4_rc3.ebuild
49 ===================================================================
50 # Copyright 1999-2010 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/media-sound/audacious/audacious-2.4_rc3.ebuild,v 1.1 2010/08/23 22:14:59 chainsaw Exp $
53
54 MY_P="${P/_/-}"
55 S="${WORKDIR}/${MY_P}"
56 DESCRIPTION="Audacious Player - Your music, your way, no exceptions"
57 HOMEPAGE="http://audacious-media-player.org/"
58 SRC_URI="http://distfiles.atheme.org/${MY_P}.tgz
59 mirror://gentoo/gentoo_ice-xmms-0.2.tar.bz2"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux"
64 IUSE="altivec chardet debug nls session sse2"
65
66 RDEPEND=">=dev-libs/dbus-glib-0.60
67 >=dev-libs/glib-2.16
68 >=dev-libs/libmcs-0.7.1-r2
69 >=dev-libs/libmowgli-0.7.0
70 dev-libs/libxml2
71 >=x11-libs/cairo-1.2.6
72 >=x11-libs/gtk+-2.14
73 >=x11-libs/pango-1.8.0
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.4_rc3"
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 econf \
89 --enable-dbus \
90 $(use_enable altivec) \
91 $(use_enable chardet) \
92 $(use_enable debug) \
93 $(use_enable nls) \
94 $(use_enable session sm) \
95 $(use_enable sse2) \
96 || die
97
98 emake || die "make failed"
99 }
100
101 src_install() {
102 make DESTDIR="${D}" install || die
103 dodoc AUTHORS NEWS README
104
105 # Gentoo_ice skin installation; bug #109772
106 insinto /usr/share/audacious/Skins/gentoo_ice
107 doins "${WORKDIR}"/gentoo_ice/*
108 docinto gentoo_ice
109 dodoc "${WORKDIR}"/README
110 }