Gentoo Archives: gentoo-commits

From: "Arun Raghavan (ford_prefect)" <ford_prefect@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/libgpod: ChangeLog libgpod-0.7.94.ebuild
Date: Sun, 05 Sep 2010 12:06:15
Message-Id: 20100905120606.F0DA620051@flycatcher.gentoo.org
1 ford_prefect 10/09/05 12:06:06
2
3 Modified: ChangeLog
4 Added: libgpod-0.7.94.ebuild
5 Log:
6 Bump to 0.7.94. Lots of fixes, and adds C# bindings (enabled with USE=mono).
7
8 (Portage version: 2.2_rc74/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.75 media-libs/libgpod/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libgpod/ChangeLog?rev=1.75&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libgpod/ChangeLog?rev=1.75&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libgpod/ChangeLog?r1=1.74&r2=1.75
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/libgpod/ChangeLog,v
20 retrieving revision 1.74
21 retrieving revision 1.75
22 diff -u -r1.74 -r1.75
23 --- ChangeLog 30 Aug 2010 15:11:40 -0000 1.74
24 +++ ChangeLog 5 Sep 2010 12:06:06 -0000 1.75
25 @@ -1,6 +1,13 @@
26 # ChangeLog for media-libs/libgpod
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libgpod/ChangeLog,v 1.74 2010/08/30 15:11:40 lxnay Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libgpod/ChangeLog,v 1.75 2010/09/05 12:06:06 ford_prefect Exp $
30 +
31 +*libgpod-0.7.94 (05 Sep 2010)
32 +
33 + 05 Sep 2010; Arun Raghavan <ford_prefect@g.o>
34 + +libgpod-0.7.94.ebuild:
35 + Bump to 0.7.94. Lots of fixes, and adds C# bindings (enabled with
36 + USE=mono).
37
38 30 Aug 2010; Fabio Erculiani <lxnay@g.o> libgpod-0.7.93.ebuild:
39 fix libimobiledevice dependency, it's also a RDEPEND
40
41
42
43 1.1 media-libs/libgpod/libgpod-0.7.94.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libgpod/libgpod-0.7.94.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libgpod/libgpod-0.7.94.ebuild?rev=1.1&content-type=text/plain
47
48 Index: libgpod-0.7.94.ebuild
49 ===================================================================
50 # Copyright 1999-2010 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/media-libs/libgpod/libgpod-0.7.94.ebuild,v 1.1 2010/09/05 12:06:06 ford_prefect Exp $
53
54 EAPI=2
55 inherit eutils
56
57 DESCRIPTION="Shared library to access the contents of an iPod"
58 HOMEPAGE="http://www.gtkpod.org/libgpod/"
59 SRC_URI="mirror://sourceforge/gtkpod/${P}.tar.gz"
60
61 LICENSE="LGPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE="+gtk python +udev iphone mono"
65
66 RDEPEND=">=dev-libs/glib-2.16
67 sys-apps/sg3_utils
68 dev-libs/libxml2
69 >=app-pda/libplist-1.0
70 gtk? ( >=x11-libs/gtk+-2.6 )
71 iphone? ( app-pda/libimobiledevice )
72 python? ( >=dev-lang/python-2.3
73 >=media-libs/mutagen-1.8
74 >=dev-python/pygobject-2.8 )
75 udev? ( sys-fs/udev )
76 mono? ( >=dev-lang/mono-1.9.1
77 >=dev-dotnet/gtk-sharp-2.12 )"
78 DEPEND="${RDEPEND}
79 python? ( >=dev-lang/swig-1.3.24 )
80 dev-util/pkgconfig
81 dev-libs/libxslt"
82
83 src_configure() {
84 econf \
85 --without-hal \
86 $(use_enable udev) \
87 $(use_enable gtk gdk-pixbuf) \
88 $(use_enable python pygobject) \
89 $(use_with python) \
90 $(use_with mono) \
91 $(use_with iphone libimobiledevice)
92 }
93
94 src_install() {
95 emake DESTDIR="${D}" install || die
96 dodoc README TROUBLESHOOTING AUTHORS NEWS README.SysInfo
97 }