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