Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-pda/libimobiledevice: libimobiledevice-1.1.2.ebuild
Date: Sat, 31 Mar 2012 15:39:40
Message-Id: 20120331153916.872112004B@flycatcher.gentoo.org
1 ssuominen 12/03/31 15:39:16
2
3 Modified: libimobiledevice-1.1.2.ebuild
4 Log:
5 Syntax errors.
6
7 (Portage version: 2.2.0_alpha96/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.2 app-pda/libimobiledevice/libimobiledevice-1.1.2.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/libimobiledevice/libimobiledevice-1.1.2.ebuild?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/libimobiledevice/libimobiledevice-1.1.2.ebuild?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/libimobiledevice/libimobiledevice-1.1.2.ebuild?r1=1.1&r2=1.2
15
16 Index: libimobiledevice-1.1.2.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-pda/libimobiledevice/libimobiledevice-1.1.2.ebuild,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- libimobiledevice-1.1.2.ebuild 31 Mar 2012 15:35:02 -0000 1.1
23 +++ libimobiledevice-1.1.2.ebuild 31 Mar 2012 15:39:16 -0000 1.2
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2012 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-pda/libimobiledevice/libimobiledevice-1.1.2.ebuild,v 1.1 2012/03/31 15:35:02 ssuominen Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-pda/libimobiledevice/libimobiledevice-1.1.2.ebuild,v 1.2 2012/03/31 15:39:16 ssuominen Exp $
29
30 EAPI=4
31
32 @@ -29,6 +29,8 @@
33 dev-util/pkgconfig
34 python? ( >=dev-python/cython-0.13 )"
35
36 +DOCS=( AUTHORS NEWS README )
37 +
38 pkg_setup() {
39 if use python; then
40 python_set_active_version 2
41 @@ -42,8 +44,8 @@
42
43 src_configure() {
44 local myconf
45 - use python || myconf="--without-cython"
46 - use ssl || myconf="--disable-openssl"
47 + use python || myconf+=' --without-cython'
48 + use ssl || myconf+=' --disable-openssl'
49
50 econf \
51 $(use_enable static-libs static) \
52 @@ -51,9 +53,8 @@
53 }
54
55 src_install() {
56 - emake DESTDIR="${D}" install || die
57 + default
58
59 - dodoc AUTHORS NEWS README
60 dohtml docs/html/*
61
62 find "${ED}" -name '*.la' -exec rm -f {} +