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_alpha2.ebuild ChangeLog
Date: Fri, 25 Jun 2010 11:15:15
Message-Id: 20100625111511.F3A812CF5F@corvid.gentoo.org
1 chainsaw 10/06/25 11:15:11
2
3 Modified: ChangeLog
4 Added: audacious-2.4_alpha2.ebuild
5 Log:
6 New alpha release. Bugs go upstream.
7 (Portage version: 2.1.8.3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.204 media-sound/audacious/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacious/ChangeLog?rev=1.204&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacious/ChangeLog?rev=1.204&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacious/ChangeLog?r1=1.203&r2=1.204
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-sound/audacious/ChangeLog,v
19 retrieving revision 1.203
20 retrieving revision 1.204
21 diff -u -r1.203 -r1.204
22 --- ChangeLog 9 Jun 2010 00:15:01 -0000 1.203
23 +++ ChangeLog 25 Jun 2010 11:15:11 -0000 1.204
24 @@ -1,6 +1,11 @@
25 # ChangeLog for media-sound/audacious
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-sound/audacious/ChangeLog,v 1.203 2010/06/09 00:15:01 chainsaw Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-sound/audacious/ChangeLog,v 1.204 2010/06/25 11:15:11 chainsaw Exp $
29 +
30 +*audacious-2.4_alpha2 (25 Jun 2010)
31 +
32 + 25 Jun 2010; <chainsaw@g.o> +audacious-2.4_alpha2.ebuild:
33 + New alpha release. Bugs go upstream.
34
35 *audacious-2.4_alpha1 (09 Jun 2010)
36
37
38
39
40 1.1 media-sound/audacious/audacious-2.4_alpha2.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacious/audacious-2.4_alpha2.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacious/audacious-2.4_alpha2.ebuild?rev=1.1&content-type=text/plain
44
45 Index: audacious-2.4_alpha2.ebuild
46 ===================================================================
47 # Copyright 1999-2010 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/media-sound/audacious/audacious-2.4_alpha2.ebuild,v 1.1 2010/06/25 11:15:11 chainsaw Exp $
50
51 MY_P="${P/_/-}"
52 S="${WORKDIR}/${MY_P}"
53 DESCRIPTION="Audacious Player - Your music, your way, no exceptions"
54 HOMEPAGE="http://audacious-media-player.org/"
55 SRC_URI="http://distfiles.atheme.org/${MY_P}.tgz
56 mirror://gentoo/gentoo_ice-xmms-0.2.tar.bz2"
57
58 LICENSE="GPL-2"
59 SLOT="0"
60 KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux"
61 IUSE="altivec chardet debug nls session sse2"
62
63 RDEPEND=">=dev-libs/dbus-glib-0.60
64 >=dev-libs/glib-2.16
65 >=dev-libs/libmcs-0.7.1-r2
66 >=dev-libs/libmowgli-0.7.0
67 dev-libs/libxml2
68 >=x11-libs/cairo-1.2.6
69 >=x11-libs/gtk+-2.14
70 >=x11-libs/pango-1.8.0
71 session? ( x11-libs/libSM )"
72
73 DEPEND="${RDEPEND}
74 >=dev-util/pkgconfig-0.9.0
75 nls? ( dev-util/intltool )"
76
77 PDEPEND=">=media-plugins/audacious-plugins-2.4_alpha2"
78
79 src_compile() {
80 # D-Bus is a mandatory dependency, remote control,
81 # session management and some plugins depend on this.
82 # Building without D-Bus is *unsupported* and a USE-flag
83 # will not be added due to the bug reports that will result.
84 # Bugs #197894, #199069, #207330, #208606
85 econf \
86 --enable-dbus \
87 $(use_enable altivec) \
88 $(use_enable chardet) \
89 $(use_enable debug) \
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 make 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 }