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