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.4.0.ebuild ChangeLog audacious-2.4_rc2.ebuild
Date: Wed, 25 Aug 2010 23:32:50
Message-Id: 20100825233245.C4E582004E@flycatcher.gentoo.org
1 chainsaw 10/08/25 23:32:45
2
3 Modified: ChangeLog
4 Added: audacious-2.4.0.ebuild
5 Removed: audacious-2.4_rc2.ebuild
6 Log:
7 Final release. Audacious 2.4 is now officially perfect so we are going into 2.5 development. Thank you for the bug reports on JIRA.
8 (Portage version: 2.2_rc67/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.211 media-sound/audacious/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacious/ChangeLog?rev=1.211&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacious/ChangeLog?rev=1.211&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacious/ChangeLog?r1=1.210&r2=1.211
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-sound/audacious/ChangeLog,v
20 retrieving revision 1.210
21 retrieving revision 1.211
22 diff -u -r1.210 -r1.211
23 --- ChangeLog 23 Aug 2010 22:14:59 -0000 1.210
24 +++ ChangeLog 25 Aug 2010 23:32:45 -0000 1.211
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.210 2010/08/23 22:14:59 chainsaw Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-sound/audacious/ChangeLog,v 1.211 2010/08/25 23:32:45 chainsaw Exp $
30 +
31 +*audacious-2.4.0 (25 Aug 2010)
32 +
33 + 25 Aug 2010; <chainsaw@g.o> -audacious-2.4_rc2.ebuild,
34 + +audacious-2.4.0.ebuild:
35 + Final release. Audacious 2.4 is now officially perfect so we are going
36 + into 2.5 development. Thank you for the bug reports on JIRA.
37
38 *audacious-2.4_rc3 (23 Aug 2010)
39
40
41
42
43 1.1 media-sound/audacious/audacious-2.4.0.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacious/audacious-2.4.0.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacious/audacious-2.4.0.ebuild?rev=1.1&content-type=text/plain
47
48 Index: audacious-2.4.0.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.0.ebuild,v 1.1 2010/08/25 23:32:45 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.0"
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 }