Gentoo Archives: gentoo-commits

From: "Jeff Horelick (jdhore)" <jdhore@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/audacious: audacious-3.2.3.ebuild ChangeLog
Date: Sun, 27 May 2012 21:00:36
Message-Id: 20120527210017.607342004C@flycatcher.gentoo.org
1 jdhore 12/05/27 21:00:17
2
3 Modified: ChangeLog
4 Added: audacious-3.2.3.ebuild
5 Log:
6 Version bump and cleanups.
7
8 (Portage version: 2.2.0_alpha108/cvs/Linux i686)
9
10 Revision Changes Path
11 1.265 media-sound/audacious/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacious/ChangeLog?rev=1.265&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacious/ChangeLog?rev=1.265&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacious/ChangeLog?r1=1.264&r2=1.265
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-sound/audacious/ChangeLog,v
20 retrieving revision 1.264
21 retrieving revision 1.265
22 diff -u -r1.264 -r1.265
23 --- ChangeLog 24 May 2012 02:16:35 -0000 1.264
24 +++ ChangeLog 27 May 2012 21:00:17 -0000 1.265
25 @@ -1,6 +1,12 @@
26 # ChangeLog for media-sound/audacious
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-sound/audacious/ChangeLog,v 1.264 2012/05/24 02:16:35 jdhore Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-sound/audacious/ChangeLog,v 1.265 2012/05/27 21:00:17 jdhore Exp $
30 +
31 +*audacious-3.2.3 (27 May 2012)
32 +
33 + 27 May 2012; Jeff Horelick <jdhore@g.o> +audacious-3.2.3.ebuild,
34 + +files/audacious-3.2.3-fix-mutex.patch:
35 + Version bump and cleanups.
36
37 24 May 2012; Jeff Horelick <jdhore@g.o> audacious-3.2.2-r1.ebuild:
38 marked x86 per bug 417143
39
40
41
42 1.1 media-sound/audacious/audacious-3.2.3.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacious/audacious-3.2.3.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacious/audacious-3.2.3.ebuild?rev=1.1&content-type=text/plain
46
47 Index: audacious-3.2.3.ebuild
48 ===================================================================
49 # Copyright 1999-2012 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/media-sound/audacious/audacious-3.2.3.ebuild,v 1.1 2012/05/27 21:00:17 jdhore Exp $
52
53 EAPI=4
54 inherit eutils
55
56 MY_P="${P/_/-}"
57 S="${WORKDIR}/${MY_P}"
58 DESCRIPTION="Audacious Player - Your music, your way, no exceptions"
59 HOMEPAGE="http://audacious-media-player.org/"
60 SRC_URI="http://distfiles.audacious-media-player.org/${MY_P}.tar.bz2
61 mirror://gentoo/gentoo_ice-xmms-0.2.tar.bz2"
62
63 LICENSE="GPL-2"
64 SLOT="0"
65 KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux"
66 IUSE="chardet +gtk gtk3 nls session"
67
68 RDEPEND=">=dev-libs/dbus-glib-0.60
69 >=dev-libs/glib-2.16
70 dev-libs/libxml2
71 >=x11-libs/cairo-1.2.6
72 >=x11-libs/pango-1.8.0
73 gtk? ( x11-libs/gtk+:2 )
74 gtk3? ( x11-libs/gtk+:3 )
75 session? ( x11-libs/libSM )"
76
77 DEPEND="${RDEPEND}
78 virtual/pkgconfig
79 chardet? ( >=app-i18n/libguess-1.1 )
80 nls? ( dev-util/intltool )"
81
82 PDEPEND=">=media-plugins/audacious-plugins-3.2.3"
83 REQUIRED_USE="^^ ( gtk gtk3 )"
84
85 src_prepare() {
86 epatch "$FILESDIR"/${P}-fix-mutex.patch
87 }
88
89 src_configure() {
90 # D-Bus is a mandatory dependency, remote control,
91 # session management and some plugins depend on this.
92 # Building without D-Bus is *unsupported* and a USE-flag
93 # will not be added due to the bug reports that will result.
94 # Bugs #197894, #199069, #207330, #208606
95 # Use of GTK+2 causes plugin build failures, bug #384185
96 econf \
97 --enable-dbus \
98 $(use_enable gtk3) \
99 $(use_enable chardet) \
100 $(use_enable nls) \
101 $(use_enable session sm)
102 }
103
104 src_install() {
105 default
106 dodoc AUTHORS README
107
108 # Gentoo_ice skin installation; bug #109772
109 insinto /usr/share/audacious/Skins/gentoo_ice
110 doins "${WORKDIR}"/gentoo_ice/*
111 docinto gentoo_ice
112 dodoc "${WORKDIR}"/README
113 }