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