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-libs/libgpod: libgpod-0.7.2.ebuild libgpod-0.6.0.ebuild libgpod-0.7.0.ebuild
Date: Tue, 29 Sep 2009 21:37:43
Message-Id: E1MskOD-0004As-UE@stork.gentoo.org
1 ssuominen 09/09/29 21:37:41
2
3 Modified: libgpod-0.7.2.ebuild
4 Removed: libgpod-0.6.0.ebuild libgpod-0.7.0.ebuild
5 Log:
6 old, use emake
7 (Portage version: 2.2_rc42/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.10 media-libs/libgpod/libgpod-0.7.2.ebuild
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libgpod/libgpod-0.7.2.ebuild?rev=1.10&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libgpod/libgpod-0.7.2.ebuild?rev=1.10&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libgpod/libgpod-0.7.2.ebuild?r1=1.9&r2=1.10
15
16 Index: libgpod-0.7.2.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/libgpod/libgpod-0.7.2.ebuild,v
19 retrieving revision 1.9
20 retrieving revision 1.10
21 diff -u -r1.9 -r1.10
22 --- libgpod-0.7.2.ebuild 27 Sep 2009 15:25:33 -0000 1.9
23 +++ libgpod-0.7.2.ebuild 29 Sep 2009 21:37:41 -0000 1.10
24 @@ -1,9 +1,8 @@
25 # Copyright 1999-2009 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libgpod/libgpod-0.7.2.ebuild,v 1.9 2009/09/27 15:25:33 ranger Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libgpod/libgpod-0.7.2.ebuild,v 1.10 2009/09/29 21:37:41 ssuominen Exp $
29
30 EAPI=2
31 -
32 inherit autotools eutils
33
34 DESCRIPTION="Shared library to access the contents of an iPod"
35 @@ -30,7 +29,7 @@
36 dev-libs/libxslt"
37
38 src_prepare() {
39 - epatch "${FILESDIR}/${P}-compile-without-hal.patch"
40 + epatch "${FILESDIR}"/${P}-compile-without-hal.patch
41 eautoreconf
42 }
43
44 @@ -39,10 +38,10 @@
45 $(use_with hal) \
46 $(use_enable gtk gdk-pixbuf) \
47 $(use_enable python pygobject) \
48 - $(use_with python) || die "configure failed"
49 + $(use_with python)
50 }
51
52 src_install() {
53 - make DESTDIR="${D}" install || die "install failed"
54 + emake DESTDIR="${D}" install || die
55 dodoc README TROUBLESHOOTING AUTHORS NEWS README.SysInfo
56 }