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: ario-1.3.ebuild ChangeLog
Date: Fri, 30 Oct 2009 18:27:09
Message-Id: E1N3wBm-0005kK-Er@stork.gentoo.org
1 angelos 09/10/30 18:27:06
2
3 Modified: ChangeLog
4 Added: ario-1.3.ebuild
5 Log:
6 Version bump
7 (Portage version: 2.1.7.1/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.10 media-sound/ario/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/ario/ChangeLog?rev=1.10&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/ario/ChangeLog?rev=1.10&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/ario/ChangeLog?r1=1.9&r2=1.10
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-sound/ario/ChangeLog,v
19 retrieving revision 1.9
20 retrieving revision 1.10
21 diff -u -r1.9 -r1.10
22 --- ChangeLog 28 Jan 2009 19:30:58 -0000 1.9
23 +++ ChangeLog 30 Oct 2009 18:27:05 -0000 1.10
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.9 2009/01/28 19:30:58 angelos Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-sound/ario/ChangeLog,v 1.10 2009/10/30 18:27:05 angelos Exp $
29 +
30 +*ario-1.3 (30 Oct 2009)
31 +
32 + 30 Oct 2009; Christoph Mende <angelos@g.o> +ario-1.3.ebuild:
33 + Version bump
34
35 *ario-1.2.1 (28 Jan 2009)
36
37
38
39
40 1.1 media-sound/ario/ario-1.3.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/ario/ario-1.3.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/ario/ario-1.3.ebuild?rev=1.1&content-type=text/plain
44
45 Index: ario-1.3.ebuild
46 ===================================================================
47 # Copyright 1999-2009 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.3.ebuild,v 1.1 2009/10/30 18:27:05 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 gnome-base/libglade:2.0
65 net-misc/curl
66 net-libs/gnutls
67 >=x11-libs/gtk+-2.12:2
68 audioscrobbler? ( net-libs/libsoup:2.4 )
69 dbus? ( dev-libs/dbus-glib )
70 libnotify? ( x11-libs/libnotify )
71 python? ( dev-python/pygtk
72 dev-python/pygobject )
73 taglib? ( media-libs/taglib )
74 zeroconf? ( net-dns/avahi )"
75 DEPEND="sys-devel/gettext
76 dev-util/intltool
77 dev-util/pkgconfig"
78
79 src_compile() {
80 econf \
81 $(use_enable audioscrobbler) \
82 $(use_enable dbus) \
83 $(use_enable debug) \
84 $(use_enable idle mpdidle) \
85 $(use_enable libnotify notify) \
86 $(use_enable nls) \
87 $(use_enable python) \
88 $(use_enable taglib) \
89 $(use_enable zeroconf avahi)
90
91 emake || die "emake failed"
92 }
93
94 src_install() {
95 emake DESTDIR="${D}" install || die "emake install failed"
96 dodoc AUTHORS ChangeLog NEWS README TODO
97 }
98
99 pkg_preinst() {
100 gnome2_icon_savelist
101 }
102
103 pkg_postinst() {
104 gnome2_icon_cache_update
105 }
106
107 pkg_postrm() {
108 gnome2_icon_cache_update
109 }