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.3_alpha2.ebuild
Date: Tue, 09 Feb 2010 21:47:45
Message-Id: E1NexvV-00017s-7D@stork.gentoo.org
1 chainsaw 10/02/09 21:47:21
2
3 Modified: ChangeLog
4 Added: audacious-2.3_alpha2.ebuild
5 Log:
6 New and improved alpha build with debug functionality. Bugs still upstream, thank you.
7 (Portage version: 2.2_rc62/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.195 media-sound/audacious/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/audacious/ChangeLog?rev=1.195&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/audacious/ChangeLog?rev=1.195&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/audacious/ChangeLog?r1=1.194&r2=1.195
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-sound/audacious/ChangeLog,v
19 retrieving revision 1.194
20 retrieving revision 1.195
21 diff -u -r1.194 -r1.195
22 --- ChangeLog 7 Feb 2010 14:54:55 -0000 1.194
23 +++ ChangeLog 9 Feb 2010 21:47:20 -0000 1.195
24 @@ -1,6 +1,12 @@
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.194 2010/02/07 14:54:55 armin76 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-sound/audacious/ChangeLog,v 1.195 2010/02/09 21:47:20 chainsaw Exp $
29 +
30 +*audacious-2.3_alpha2 (09 Feb 2010)
31 +
32 + 09 Feb 2010; <chainsaw@g.o> +audacious-2.3_alpha2.ebuild:
33 + New and improved alpha build with debug functionality. Bugs still
34 + upstream, thank you.
35
36 07 Feb 2010; Raúl Porcel <armin76@g.o> audacious-2.2.ebuild:
37 sparc stable wrt #295051
38
39
40
41 1.1 media-sound/audacious/audacious-2.3_alpha2.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/audacious/audacious-2.3_alpha2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/audacious/audacious-2.3_alpha2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: audacious-2.3_alpha2.ebuild
47 ===================================================================
48 # Copyright 1999-2010 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.3_alpha2.ebuild,v 1.1 2010/02/09 21:47:20 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 debug nls libsamplerate 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 libsamplerate? ( media-libs/libsamplerate )
73 session? ( x11-libs/libSM )"
74
75 DEPEND="${RDEPEND}
76 >=dev-util/pkgconfig-0.9.0
77 nls? ( dev-util/intltool )"
78
79 PDEPEND=">=media-plugins/audacious-plugins-2.3_alpha2"
80
81 src_compile() {
82 # D-Bus is a mandatory dependency, remote control,
83 # session management and some plugins depend on this.
84 # Building without D-Bus is *unsupported* and a USE-flag
85 # will not be added due to the bug reports that will result.
86 # Bugs #197894, #199069, #207330, #208606
87 econf \
88 --enable-dbus \
89 $(use_enable altivec) \
90 $(use_enable chardet) \
91 $(use_enable debug) \
92 $(use_enable nls) \
93 $(use_enable session sm) \
94 $(use_enable sse2) \
95 $(use_enable libsamplerate samplerate) \
96 || die
97
98 emake || die "make failed"
99 }
100
101 src_install() {
102 make DESTDIR="${D}" install || die
103 dodoc AUTHORS NEWS README
104
105 # Gentoo_ice skin installation; bug #109772
106 insinto /usr/share/audacious/Skins/gentoo_ice
107 doins "${WORKDIR}"/gentoo_ice/*
108 docinto gentoo_ice
109 dodoc "${WORKDIR}"/README
110 }