Gentoo Archives: gentoo-commits

From: "Christoph Mende (angelos)" <angelos@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/ario: ChangeLog ario-1.5.ebuild
Date: Fri, 10 Sep 2010 07:54:35
Message-Id: 20100910075431.2776420051@flycatcher.gentoo.org
1 angelos 10/09/10 07:54:31
2
3 Modified: ChangeLog
4 Added: ario-1.5.ebuild
5 Log:
6 Version bump (bug #333407)
7 (Portage version: 2.1.8.3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.17 media-sound/ario/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/ario/ChangeLog?rev=1.17&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/ario/ChangeLog?rev=1.17&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/ario/ChangeLog?r1=1.16&r2=1.17
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-sound/ario/ChangeLog,v
19 retrieving revision 1.16
20 retrieving revision 1.17
21 diff -u -r1.16 -r1.17
22 --- ChangeLog 16 Jun 2010 14:15:37 -0000 1.16
23 +++ ChangeLog 10 Sep 2010 07:54:30 -0000 1.17
24 @@ -1,6 +1,11 @@
25 # ChangeLog for media-sound/ario
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-sound/ario/ChangeLog,v 1.16 2010/06/16 14:15:37 phajdan.jr Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-sound/ario/ChangeLog,v 1.17 2010/09/10 07:54:30 angelos Exp $
29 +
30 +*ario-1.5 (06 Sep 2010)
31 +
32 + 06 Sep 2010; <angelos@g.o> +ario-1.5.ebuild:
33 + Version bump (bug #333407)
34
35 16 Jun 2010; Pawel Hajdan jr <phajdan.jr@g.o> ario-1.4.4.ebuild:
36 x86 stable wrt bug #322911
37
38
39
40 1.1 media-sound/ario/ario-1.5.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/ario/ario-1.5.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/ario/ario-1.5.ebuild?rev=1.1&content-type=text/plain
44
45 Index: ario-1.5.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/ario/ario-1.5.ebuild,v 1.1 2010/09/10 07:54:30 angelos Exp $
50
51 EAPI=1
52 inherit gnome2-utils
53
54 DESCRIPTION="a GTK2 MPD (Music Player Daemon) client inspired by Rythmbox"
55 HOMEPAGE="http://ario-player.sourceforge.net"
56 SRC_URI="mirror://sourceforge/${PN}-player/${P}.tar.gz"
57
58 LICENSE="GPL-2"
59 SLOT="0"
60 KEYWORDS="~amd64 ~x86"
61 IUSE="audioscrobbler dbus debug +idle libnotify nls python taglib zeroconf"
62
63 RDEPEND=">=dev-libs/glib-2.14:2
64 dev-libs/libunique
65 dev-libs/libxml2
66 media-libs/libmpdclient
67 net-misc/curl
68 net-libs/gnutls
69 >=x11-libs/gtk+-2.16:2
70 audioscrobbler? ( net-libs/libsoup:2.4 )
71 dbus? ( dev-libs/dbus-glib )
72 libnotify? ( x11-libs/libnotify )
73 python? ( dev-python/pygtk
74 dev-python/pygobject )
75 taglib? ( media-libs/taglib )
76 zeroconf? ( net-dns/avahi )"
77 DEPEND="sys-devel/gettext
78 dev-util/intltool
79 dev-util/pkgconfig"
80
81 src_compile() {
82 econf \
83 --enable-libmpdclient2 \
84 --enable-search \
85 --enable-playlists \
86 --disable-xmms2 \
87 --disable-deprecations \
88 $(use_enable audioscrobbler) \
89 $(use_enable dbus) \
90 $(use_enable debug) \
91 $(use_enable idle mpdidle) \
92 $(use_enable libnotify notify) \
93 $(use_enable nls) \
94 $(use_enable python) \
95 $(use_enable taglib) \
96 $(use_enable zeroconf avahi)
97
98 emake || die "emake failed"
99 }
100
101 src_install() {
102 emake DESTDIR="${D}" install || die "emake install failed"
103 dodoc AUTHORS ChangeLog NEWS README TODO
104 }
105
106 pkg_preinst() {
107 gnome2_icon_savelist
108 }
109
110 pkg_postinst() {
111 gnome2_icon_cache_update
112 }
113
114 pkg_postrm() {
115 gnome2_icon_cache_update
116 }