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.5.3.ebuild
Date: Wed, 29 Jun 2011 22:48:46
Message-Id: 20110629224835.A832D20054@flycatcher.gentoo.org
1 chainsaw 11/06/29 22:48:35
2
3 Modified: ChangeLog
4 Added: audacious-2.5.3.ebuild
5 Log:
6 Bugfix release; root to non-root path relocation is now handled correctly in all cases.
7
8 (Portage version: 2.1.10.3/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.233 media-sound/audacious/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacious/ChangeLog?rev=1.233&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacious/ChangeLog?rev=1.233&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacious/ChangeLog?r1=1.232&r2=1.233
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-sound/audacious/ChangeLog,v
20 retrieving revision 1.232
21 retrieving revision 1.233
22 diff -u -r1.232 -r1.233
23 --- ChangeLog 24 Jun 2011 23:06:43 -0000 1.232
24 +++ ChangeLog 29 Jun 2011 22:48:35 -0000 1.233
25 @@ -1,6 +1,12 @@
26 # ChangeLog for media-sound/audacious
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-sound/audacious/ChangeLog,v 1.232 2011/06/24 23:06:43 chainsaw Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-sound/audacious/ChangeLog,v 1.233 2011/06/29 22:48:35 chainsaw Exp $
30 +
31 +*audacious-2.5.3 (29 Jun 2011)
32 +
33 + 29 Jun 2011; Tony Vroon <chainsaw@g.o> +audacious-2.5.3.ebuild:
34 + Bugfix release; root to non-root path relocation is now handled correctly in
35 + all cases.
36
37 *audacious-2.5.2 (24 Jun 2011)
38
39
40
41
42 1.1 media-sound/audacious/audacious-2.5.3.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacious/audacious-2.5.3.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacious/audacious-2.5.3.ebuild?rev=1.1&content-type=text/plain
46
47 Index: audacious-2.5.3.ebuild
48 ===================================================================
49 # Copyright 1999-2011 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.5.3.ebuild,v 1.1 2011/06/29 22:48:35 chainsaw Exp $
52
53 EAPI=4
54
55 MY_P="${P/_/-}"
56 S="${WORKDIR}/${MY_P}"
57 DESCRIPTION="Audacious Player - Your music, your way, no exceptions"
58 HOMEPAGE="http://audacious-media-player.org/"
59 SRC_URI="http://distfiles.atheme.org/${MY_P}.tar.gz
60 mirror://gentoo/gentoo_ice-xmms-0.2.tar.bz2"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux"
65 IUSE="altivec chardet nls session sse2"
66
67 RDEPEND=">=dev-libs/dbus-glib-0.60
68 >=dev-libs/glib-2.16
69 >=dev-libs/libmcs-0.7.1-r2
70 >=dev-libs/libmowgli-0.9.50
71 dev-libs/libxml2
72 >=x11-libs/cairo-1.2.6
73 >=x11-libs/gtk+-2.14:2
74 >=x11-libs/pango-1.8.0
75 session? ( x11-libs/libSM )"
76
77 DEPEND="${RDEPEND}
78 >=dev-util/pkgconfig-0.9.0
79 chardet? ( app-i18n/libguess )
80 nls? ( dev-util/intltool )"
81
82 PDEPEND=">=media-plugins/audacious-plugins-2.5.3"
83
84 src_configure() {
85 # D-Bus is a mandatory dependency, remote control,
86 # session management and some plugins depend on this.
87 # Building without D-Bus is *unsupported* and a USE-flag
88 # will not be added due to the bug reports that will result.
89 # Bugs #197894, #199069, #207330, #208606
90 econf \
91 --enable-dbus \
92 $(use_enable altivec) \
93 $(use_enable chardet) \
94 $(use_enable nls) \
95 $(use_enable session sm) \
96 $(use_enable sse2)
97 }
98
99 src_install() {
100 emake DESTDIR="${D}" install || die
101 dodoc AUTHORS NEWS README
102
103 # Gentoo_ice skin installation; bug #109772
104 insinto /usr/share/audacious/Skins/gentoo_ice
105 doins "${WORKDIR}"/gentoo_ice/*
106 docinto gentoo_ice
107 dodoc "${WORKDIR}"/README
108 }