Gentoo Archives: gentoo-commits

From: "Jeff Horelick (jdhore)" <jdhore@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/audacious: audacious-3.4.1.ebuild ChangeLog
Date: Mon, 02 Sep 2013 21:13:06
Message-Id: 20130902211301.C70BE2004C@flycatcher.gentoo.org
1 jdhore 13/09/02 21:13:01
2
3 Modified: ChangeLog
4 Added: audacious-3.4.1.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.1/cvs/Linux i686, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.288 media-sound/audacious/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacious/ChangeLog?rev=1.288&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacious/ChangeLog?rev=1.288&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacious/ChangeLog?r1=1.287&r2=1.288
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-sound/audacious/ChangeLog,v
20 retrieving revision 1.287
21 retrieving revision 1.288
22 diff -u -r1.287 -r1.288
23 --- ChangeLog 7 Feb 2013 07:10:52 -0000 1.287
24 +++ ChangeLog 2 Sep 2013 21:13:01 -0000 1.288
25 @@ -1,6 +1,11 @@
26 # ChangeLog for media-sound/audacious
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-sound/audacious/ChangeLog,v 1.287 2013/02/07 07:10:52 jdhore Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-sound/audacious/ChangeLog,v 1.288 2013/09/02 21:13:01 jdhore Exp $
30 +
31 +*audacious-3.4.1 (02 Sep 2013)
32 +
33 + 02 Sep 2013; Jeff Horelick <jdhore@g.o> +audacious-3.4.1.ebuild:
34 + Version bump.
35
36 *audacious-3.3.4 (07 Feb 2013)
37
38
39
40
41 1.1 media-sound/audacious/audacious-3.4.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacious/audacious-3.4.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/audacious/audacious-3.4.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: audacious-3.4.1.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/media-sound/audacious/audacious-3.4.1.ebuild,v 1.1 2013/09/02 21:13:01 jdhore Exp $
51
52 EAPI=5
53 inherit eutils
54
55 MY_P="${P/_/-}"
56 S="${WORKDIR}/${MY_P}"
57 DESCRIPTION="Audacious Player - Your music, your way, no exceptions"
58 HOMEPAGE="http://audacious-media-player.org/"
59 SRC_URI="http://distfiles.audacious-media-player.org/${MY_P}.tar.bz2
60 mirror://gentoo/gentoo_ice-xmms-0.2.tar.bz2"
61
62 LICENSE="BSD-2"
63 SLOT="0"
64 KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux"
65
66 IUSE="chardet nls"
67
68 RDEPEND=">=dev-libs/dbus-glib-0.60
69 >=dev-libs/glib-2.28
70 dev-libs/libxml2
71 >=x11-libs/cairo-1.2.6
72 >=x11-libs/pango-1.8.0
73 x11-libs/gtk+:3"
74
75 DEPEND="${RDEPEND}
76 virtual/pkgconfig
77 chardet? ( >=app-i18n/libguess-1.1 )
78 nls? ( dev-util/intltool )"
79
80 PDEPEND="~media-plugins/audacious-plugins-3.4.1"
81
82 src_configure() {
83 # D-Bus is a mandatory dependency, remote control,
84 # session management and some plugins depend on this.
85 # Building without D-Bus is *unsupported* and a USE-flag
86 # will not be added due to the bug reports that will result.
87 # Bugs #197894, #199069, #207330, #208606
88 econf \
89 --enable-dbus \
90 $(use_enable chardet) \
91 $(use_enable nls)
92 }
93
94 src_install() {
95 default
96 dodoc AUTHORS
97
98 # Gentoo_ice skin installation; bug #109772
99 insinto /usr/share/audacious/Skins/gentoo_ice
100 doins "${WORKDIR}"/gentoo_ice/*
101 docinto gentoo_ice
102 dodoc "${WORKDIR}"/README
103 }