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_beta1.ebuild
Date: Sun, 28 Feb 2010 15:20:02
Message-Id: E1Nlkw2-0007L8-8t@stork.gentoo.org
1 chainsaw 10/02/28 15:19:58
2
3 Modified: ChangeLog
4 Added: audacious-2.3_beta1.ebuild
5 Log:
6 First 2.3 beta; now unmasked so ~arch users can join in on the fun. Bug reports upstream please.
7 (Portage version: 2.1.7.17/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.196 media-sound/audacious/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/audacious/ChangeLog?rev=1.196&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/audacious/ChangeLog?rev=1.196&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/audacious/ChangeLog?r1=1.195&r2=1.196
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-sound/audacious/ChangeLog,v
19 retrieving revision 1.195
20 retrieving revision 1.196
21 diff -u -r1.195 -r1.196
22 --- ChangeLog 9 Feb 2010 21:47:20 -0000 1.195
23 +++ ChangeLog 28 Feb 2010 15:19:57 -0000 1.196
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.195 2010/02/09 21:47:20 chainsaw Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-sound/audacious/ChangeLog,v 1.196 2010/02/28 15:19:57 chainsaw Exp $
29 +
30 +*audacious-2.3_beta1 (28 Feb 2010)
31 +
32 + 28 Feb 2010; <chainsaw@g.o> +audacious-2.3_beta1.ebuild:
33 + First 2.3 beta; now unmasked so ~arch users can join in on the fun. Bug
34 + reports upstream please.
35
36 *audacious-2.3_alpha2 (09 Feb 2010)
37
38
39
40
41 1.1 media-sound/audacious/audacious-2.3_beta1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/audacious/audacious-2.3_beta1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/audacious/audacious-2.3_beta1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: audacious-2.3_beta1.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_beta1.ebuild,v 1.1 2010/02/28 15:19:57 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 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.3_beta1"
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 debug) \
91 $(use_enable nls) \
92 $(use_enable session sm) \
93 $(use_enable sse2) \
94 || die
95
96 emake || die "make failed"
97 }
98
99 src_install() {
100 make DESTDIR="${D}" install || die
101 dodoc AUTHORS NEWS README
102
103 # Gentoo_ice skin installation; bug #109772
104 insinto /usr/share/audacious/Skins/gentoo_ice
105 doins "${WORKDIR}"/gentoo_ice/*
106 docinto gentoo_ice
107 dodoc "${WORKDIR}"/README
108 }
109
110 pkg_postinst() {
111 einfo "Your bug reports for this beta version should go upstream: http://jira.atheme.org/"
112 }