Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/ario: ChangeLog ario-1.5.ebuild
Date: Sat, 05 Feb 2011 08:11:08
Message-Id: 20110205081058.5018420054@flycatcher.gentoo.org
1 ssuominen 11/02/05 08:10:58
2
3 Modified: ChangeLog ario-1.5.ebuild
4 Log:
5 Fix building with x11-libs/libnotify >= 0.7 and remove useless libtool and static archive files for plugins.
6
7 (Portage version: 2.2.0_alpha19/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.18 media-sound/ario/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/ario/ChangeLog?rev=1.18&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/ario/ChangeLog?rev=1.18&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/ario/ChangeLog?r1=1.17&r2=1.18
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-sound/ario/ChangeLog,v
19 retrieving revision 1.17
20 retrieving revision 1.18
21 diff -u -r1.17 -r1.18
22 --- ChangeLog 10 Sep 2010 07:54:30 -0000 1.17
23 +++ ChangeLog 5 Feb 2011 08:10:58 -0000 1.18
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.17 2010/09/10 07:54:30 angelos Exp $
28 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/media-sound/ario/ChangeLog,v 1.18 2011/02/05 08:10:58 ssuominen Exp $
30 +
31 + 05 Feb 2011; Samuli Suominen <ssuominen@g.o> ario-1.5.ebuild,
32 + +files/ario-1.5-libnotify-0.7.patch:
33 + Fix building with x11-libs/libnotify >= 0.7 and remove useless libtool and
34 + static archive files for plugins.
35
36 *ario-1.5 (06 Sep 2010)
37
38
39
40
41 1.2 media-sound/ario/ario-1.5.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/ario/ario-1.5.ebuild?rev=1.2&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/ario/ario-1.5.ebuild?rev=1.2&content-type=text/plain
45 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/ario/ario-1.5.ebuild?r1=1.1&r2=1.2
46
47 Index: ario-1.5.ebuild
48 ===================================================================
49 RCS file: /var/cvsroot/gentoo-x86/media-sound/ario/ario-1.5.ebuild,v
50 retrieving revision 1.1
51 retrieving revision 1.2
52 diff -u -r1.1 -r1.2
53 --- ario-1.5.ebuild 10 Sep 2010 07:54:30 -0000 1.1
54 +++ ario-1.5.ebuild 5 Feb 2011 08:10:58 -0000 1.2
55 @@ -1,9 +1,9 @@
56 -# Copyright 1999-2010 Gentoo Foundation
57 +# Copyright 1999-2011 Gentoo Foundation
58 # Distributed under the terms of the GNU General Public License v2
59 -# $Header: /var/cvsroot/gentoo-x86/media-sound/ario/ario-1.5.ebuild,v 1.1 2010/09/10 07:54:30 angelos Exp $
60 +# $Header: /var/cvsroot/gentoo-x86/media-sound/ario/ario-1.5.ebuild,v 1.2 2011/02/05 08:10:58 ssuominen Exp $
61
62 -EAPI=1
63 -inherit gnome2-utils
64 +EAPI=2
65 +inherit eutils gnome2-utils
66
67 DESCRIPTION="a GTK2 MPD (Music Player Daemon) client inspired by Rythmbox"
68 HOMEPAGE="http://ario-player.sourceforge.net"
69 @@ -28,16 +28,23 @@
70 dev-python/pygobject )
71 taglib? ( media-libs/taglib )
72 zeroconf? ( net-dns/avahi )"
73 -DEPEND="sys-devel/gettext
74 +DEPEND="${RDEPEND}
75 dev-util/intltool
76 - dev-util/pkgconfig"
77 + dev-util/pkgconfig
78 + sys-devel/gettext"
79
80 -src_compile() {
81 +src_prepare() {
82 + epatch "${FILESDIR}"/${P}-libnotify-0.7.patch
83 +}
84 +
85 +src_configure() {
86 econf \
87 + --disable-dependency-tracking \
88 + --disable-static \
89 + --disable-xmms2 \
90 --enable-libmpdclient2 \
91 --enable-search \
92 --enable-playlists \
93 - --disable-xmms2 \
94 --disable-deprecations \
95 $(use_enable audioscrobbler) \
96 $(use_enable dbus) \
97 @@ -48,13 +55,13 @@
98 $(use_enable python) \
99 $(use_enable taglib) \
100 $(use_enable zeroconf avahi)
101 -
102 - emake || die "emake failed"
103 }
104
105 src_install() {
106 - emake DESTDIR="${D}" install || die "emake install failed"
107 + emake DESTDIR="${D}" install || die
108 dodoc AUTHORS ChangeLog NEWS README TODO
109 +
110 + find "${D}" -name '*.la' -exec rm -f '{}' +
111 }
112
113 pkg_preinst() {