Gentoo Archives: gentoo-commits

From: "Olivier Crete (tester)" <tester@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/libgpod: ChangeLog libgpod-0.7.2.ebuild libgpod-0.5.2.ebuild
Date: Tue, 28 Apr 2009 15:11:57
Message-Id: E1LyoyQ-0002Zo-9Z@stork.gentoo.org
1 tester 09/04/28 15:11:54
2
3 Modified: ChangeLog libgpod-0.7.2.ebuild
4 Removed: libgpod-0.5.2.ebuild
5 Log:
6 Re-make hal optional, bug #267759
7 (Portage version: 2.1.6.7/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.60 media-libs/libgpod/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libgpod/ChangeLog?rev=1.60&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libgpod/ChangeLog?rev=1.60&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libgpod/ChangeLog?r1=1.59&r2=1.60
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/libgpod/ChangeLog,v
19 retrieving revision 1.59
20 retrieving revision 1.60
21 diff -u -r1.59 -r1.60
22 --- ChangeLog 26 Apr 2009 16:12:14 -0000 1.59
23 +++ ChangeLog 28 Apr 2009 15:11:54 -0000 1.60
24 @@ -1,6 +1,12 @@
25 # ChangeLog for media-libs/libgpod
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libgpod/ChangeLog,v 1.59 2009/04/26 16:12:14 tester Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libgpod/ChangeLog,v 1.60 2009/04/28 15:11:54 tester Exp $
29 +
30 + 28 Apr 2009; Olivier CrĂȘte <tester@g.o>
31 + -files/libgpod-0.5.2-no-gdk.patch,
32 + +files/libgpod-0.7.2-compile-without-hal.patch, -libgpod-0.5.2.ebuild,
33 + libgpod-0.7.2.ebuild:
34 + Re-make hal optional, bug #267759
35
36 26 Apr 2009; Olivier CrĂȘte <tester@g.o> libgpod-0.7.2.ebuild:
37 Add undocumented build-time dep on xsltproc
38
39
40
41 1.3 media-libs/libgpod/libgpod-0.7.2.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libgpod/libgpod-0.7.2.ebuild?rev=1.3&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libgpod/libgpod-0.7.2.ebuild?rev=1.3&content-type=text/plain
45 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libgpod/libgpod-0.7.2.ebuild?r1=1.2&r2=1.3
46
47 Index: libgpod-0.7.2.ebuild
48 ===================================================================
49 RCS file: /var/cvsroot/gentoo-x86/media-libs/libgpod/libgpod-0.7.2.ebuild,v
50 retrieving revision 1.2
51 retrieving revision 1.3
52 diff -u -r1.2 -r1.3
53 --- libgpod-0.7.2.ebuild 26 Apr 2009 16:12:14 -0000 1.2
54 +++ libgpod-0.7.2.ebuild 28 Apr 2009 15:11:54 -0000 1.3
55 @@ -1,10 +1,10 @@
56 # Copyright 1999-2009 Gentoo Foundation
57 # Distributed under the terms of the GNU General Public License v2
58 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libgpod/libgpod-0.7.2.ebuild,v 1.2 2009/04/26 16:12:14 tester Exp $
59 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libgpod/libgpod-0.7.2.ebuild,v 1.3 2009/04/28 15:11:54 tester Exp $
60
61 EAPI=2
62
63 -inherit eutils
64 +inherit autotools eutils
65
66 DESCRIPTION="Shared library to access the contents of an iPod"
67 HOMEPAGE="http://www.gtkpod.org/libgpod.html"
68 @@ -13,12 +13,12 @@
69 LICENSE="LGPL-2"
70 SLOT="0"
71 KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
72 -IUSE="+gtk python test"
73 +IUSE="+gtk python test hal"
74
75 RDEPEND=">=dev-libs/glib-2.16
76 sys-apps/sg3_utils
77 dev-libs/libxml2
78 - =sys-apps/hal-0.5*
79 + hal? ( =sys-apps/hal-0.5* )
80 gtk? ( >=x11-libs/gtk+-2.6 )
81 python? ( >=dev-lang/python-2.3
82 >=media-libs/mutagen-1.8
83 @@ -29,9 +29,14 @@
84 dev-util/pkgconfig
85 dev-libs/libxslt"
86
87 +src_prepare() {
88 + epatch "${FILESDIR}/${P}-compile-without-hal.patch"
89 + eautoreconf
90 +}
91 +
92 src_configure() {
93 econf \
94 - --with-hal \
95 + $(use_with hal) \
96 $(use_enable gtk gdk-pixbuf) \
97 $(use_enable python pygobject) \
98 $(use_with python) || die "configure failed"