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: metadata.xml ChangeLog libgpod-0.7.2.ebuild
Date: Sun, 26 Apr 2009 16:02:11
Message-Id: E1Ly6nw-0002PB-BU@stork.gentoo.org
1 tester 09/04/26 16:02:08
2
3 Modified: metadata.xml ChangeLog
4 Added: libgpod-0.7.2.ebuild
5 Log:
6 Version bump, always require hal (it does not build without it), recommend GTK+ (for artwork support)
7 (Portage version: 2.1.6.7/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.5 media-libs/libgpod/metadata.xml
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libgpod/metadata.xml?rev=1.5&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libgpod/metadata.xml?rev=1.5&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libgpod/metadata.xml?r1=1.4&r2=1.5
15
16 Index: metadata.xml
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/libgpod/metadata.xml,v
19 retrieving revision 1.4
20 retrieving revision 1.5
21 diff -u -r1.4 -r1.5
22 --- metadata.xml 25 Dec 2007 13:24:18 -0000 1.4
23 +++ metadata.xml 26 Apr 2009 16:02:08 -0000 1.5
24 @@ -10,4 +10,7 @@
25 libgpod is a shared library to access the contents of an iPod. This
26 library is based on code used in the gtkpod project.
27 </longdescription>
28 + <use>
29 + <flag name="gtk">Enables ArtWorkDB support (including Photos and album covers)</flag>
30 + </use>
31 </pkgmetadata>
32
33
34
35 1.58 media-libs/libgpod/ChangeLog
36
37 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libgpod/ChangeLog?rev=1.58&view=markup
38 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libgpod/ChangeLog?rev=1.58&content-type=text/plain
39 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libgpod/ChangeLog?r1=1.57&r2=1.58
40
41 Index: ChangeLog
42 ===================================================================
43 RCS file: /var/cvsroot/gentoo-x86/media-libs/libgpod/ChangeLog,v
44 retrieving revision 1.57
45 retrieving revision 1.58
46 diff -u -r1.57 -r1.58
47 --- ChangeLog 29 Mar 2009 01:23:36 -0000 1.57
48 +++ ChangeLog 26 Apr 2009 16:02:08 -0000 1.58
49 @@ -1,6 +1,13 @@
50 # ChangeLog for media-libs/libgpod
51 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
52 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libgpod/ChangeLog,v 1.57 2009/03/29 01:23:36 tester Exp $
53 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libgpod/ChangeLog,v 1.58 2009/04/26 16:02:08 tester Exp $
54 +
55 +*libgpod-0.7.2 (26 Apr 2009)
56 +
57 + 26 Apr 2009; Olivier CrĂȘte <tester@g.o> metadata.xml,
58 + +libgpod-0.7.2.ebuild:
59 + Version bump, always require hal (it does not build without it), recommend
60 + GTK+ (for artwork support)
61
62 29 Mar 2009; Olivier CrĂȘte <tester@g.o> libgpod-0.7.0.ebuild:
63 Always require pygobject if python bindings are required, really fixes bug
64
65
66
67 1.1 media-libs/libgpod/libgpod-0.7.2.ebuild
68
69 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libgpod/libgpod-0.7.2.ebuild?rev=1.1&view=markup
70 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libgpod/libgpod-0.7.2.ebuild?rev=1.1&content-type=text/plain
71
72 Index: libgpod-0.7.2.ebuild
73 ===================================================================
74 # Copyright 1999-2009 Gentoo Foundation
75 # Distributed under the terms of the GNU General Public License v2
76 # $Header: /var/cvsroot/gentoo-x86/media-libs/libgpod/libgpod-0.7.2.ebuild,v 1.1 2009/04/26 16:02:08 tester Exp $
77
78 EAPI=2
79
80 inherit eutils
81
82 DESCRIPTION="Shared library to access the contents of an iPod"
83 HOMEPAGE="http://www.gtkpod.org/libgpod.html"
84 SRC_URI="mirror://sourceforge/gtkpod/${P}.tar.gz"
85
86 LICENSE="LGPL-2"
87 SLOT="0"
88 KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
89 IUSE="+gtk python test"
90
91 RDEPEND=">=dev-libs/glib-2.16
92 sys-apps/sg3_utils
93 dev-libs/libxml2
94 =sys-apps/hal-0.5*
95 gtk? ( >=x11-libs/gtk+-2.6 )
96 python? ( >=dev-lang/python-2.3
97 >=media-libs/mutagen-1.8
98 >=dev-python/pygobject-2.8 )
99 test? ( media-libs/taglib )"
100 DEPEND="${RDEPEND}
101 python? ( >=dev-lang/swig-1.3.24 )
102 dev-util/pkgconfig"
103
104 src_configure() {
105 econf \
106 --with-hal \
107 $(use_enable gtk gdk-pixbuf) \
108 $(use_enable python pygobject) \
109 $(use_with python) || die "configure failed"
110 }
111
112 src_install() {
113 make DESTDIR="${D}" install || die "install failed"
114 dodoc README TROUBLESHOOTING AUTHORS NEWS README.SysInfo
115 }