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