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-3.1.ebuild ChangeLog
Date: Mon, 14 Nov 2011 10:44:12
Message-Id: 20111114104401.255452004B@flycatcher.gentoo.org
1 chainsaw 11/11/14 10:44:01
2
3 Modified: ChangeLog
4 Added: audacious-3.1.ebuild
5 Log:
6 Version bump, as requested by J.D. Horelick on IRC.
7
8 (Portage version: 2.1.10.34/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.244 media-sound/audacious/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacious/ChangeLog?rev=1.244&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacious/ChangeLog?rev=1.244&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacious/ChangeLog?r1=1.243&r2=1.244
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-sound/audacious/ChangeLog,v
20 retrieving revision 1.243
21 retrieving revision 1.244
22 diff -u -r1.243 -r1.244
23 --- ChangeLog 11 Oct 2011 16:59:15 -0000 1.243
24 +++ ChangeLog 14 Nov 2011 10:44:01 -0000 1.244
25 @@ -1,6 +1,11 @@
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.243 2011/10/11 16:59:15 jer Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-sound/audacious/ChangeLog,v 1.244 2011/11/14 10:44:01 chainsaw Exp $
30 +
31 +*audacious-3.1 (14 Nov 2011)
32 +
33 + 14 Nov 2011; Tony Vroon <chainsaw@g.o> +audacious-3.1.ebuild:
34 + Version bump, as requested by J.D. Horelick on IRC.
35
36 11 Oct 2011; Jeroen Roovers <jer@g.o> audacious-2.5.4.ebuild:
37 Stable for HPPA (bug #380575).
38
39
40
41 1.1 media-sound/audacious/audacious-3.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacious/audacious-3.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacious/audacious-3.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: audacious-3.1.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/media-sound/audacious/audacious-3.1.ebuild,v 1.1 2011/11/14 10:44:01 chainsaw Exp $
51
52 EAPI=4
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}.tar.bz2
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 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.9.50
70 dev-libs/libxml2
71 >=x11-libs/cairo-1.2.6
72 >=x11-libs/pango-1.8.0
73 x11-libs/gtk+:3
74 session? ( x11-libs/libSM )"
75
76 DEPEND="${RDEPEND}
77 >=dev-util/pkgconfig-0.9.0
78 chardet? ( app-i18n/libguess )
79 nls? ( dev-util/intltool )"
80
81 PDEPEND=">=media-plugins/audacious-plugins-3.1"
82
83 src_configure() {
84 # D-Bus is a mandatory dependency, remote control,
85 # session management and some plugins depend on this.
86 # Building without D-Bus is *unsupported* and a USE-flag
87 # will not be added due to the bug reports that will result.
88 # Bugs #197894, #199069, #207330, #208606
89 # Use of GTK+2 causes plugin build failures, bug #384185
90 econf \
91 --enable-dbus \
92 --enable-gtk3 \
93 $(use_enable altivec) \
94 $(use_enable chardet) \
95 $(use_enable nls) \
96 $(use_enable session sm) \
97 $(use_enable sse2)
98 }
99
100 src_install() {
101 default
102 dodoc AUTHORS NEWS README
103
104 # Gentoo_ice skin installation; bug #109772
105 insinto /usr/share/audacious/Skins/gentoo_ice
106 doins "${WORKDIR}"/gentoo_ice/*
107 docinto gentoo_ice
108 dodoc "${WORKDIR}"/README
109 }