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: ChangeLog libimobiledevice-1.1.2.ebuild
Date: Sat, 31 Mar 2012 15:35:12
Message-Id: 20120331153503.1FE752004B@flycatcher.gentoo.org
1 ssuominen 12/03/31 15:35:03
2
3 Modified: ChangeLog
4 Added: libimobiledevice-1.1.2.ebuild
5 Log:
6 Version bump wrt #409941 by "feiyd"
7
8 (Portage version: 2.2.0_alpha96/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.23 app-pda/libimobiledevice/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/libimobiledevice/ChangeLog?rev=1.23&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/libimobiledevice/ChangeLog?rev=1.23&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/libimobiledevice/ChangeLog?r1=1.22&r2=1.23
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-pda/libimobiledevice/ChangeLog,v
20 retrieving revision 1.22
21 retrieving revision 1.23
22 diff -u -r1.22 -r1.23
23 --- ChangeLog 13 Nov 2011 11:37:54 -0000 1.22
24 +++ ChangeLog 31 Mar 2012 15:35:02 -0000 1.23
25 @@ -1,6 +1,12 @@
26 # ChangeLog for app-pda/libimobiledevice
27 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-pda/libimobiledevice/ChangeLog,v 1.22 2011/11/13 11:37:54 ssuominen Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/app-pda/libimobiledevice/ChangeLog,v 1.23 2012/03/31 15:35:02 ssuominen Exp $
31 +
32 +*libimobiledevice-1.1.2 (31 Mar 2012)
33 +
34 + 31 Mar 2012; Samuli Suominen <ssuominen@g.o>
35 + +libimobiledevice-1.1.2.ebuild:
36 + Version bump wrt #409941 by "feiyd"
37
38 13 Nov 2011; Samuli Suominen <ssuominen@g.o>
39 libimobiledevice-1.1.1.ebuild:
40
41
42
43 1.1 app-pda/libimobiledevice/libimobiledevice-1.1.2.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/libimobiledevice/libimobiledevice-1.1.2.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/libimobiledevice/libimobiledevice-1.1.2.ebuild?rev=1.1&content-type=text/plain
47
48 Index: libimobiledevice-1.1.2.ebuild
49 ===================================================================
50 # Copyright 1999-2012 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/app-pda/libimobiledevice/libimobiledevice-1.1.2.ebuild,v 1.1 2012/03/31 15:35:02 ssuominen Exp $
53
54 EAPI=4
55
56 PYTHON_DEPEND="python? 2:2.7"
57
58 inherit python
59
60 DESCRIPTION="Support library to communicate with Apple iPhone/iPod Touch devices"
61 HOMEPAGE="http://www.libimobiledevice.org/"
62 SRC_URI="http://www.libimobiledevice.org/downloads/${P}.tar.bz2"
63
64 LICENSE="GPL-2 LGPL-2.1"
65 SLOT="0"
66 KEYWORDS="~amd64 ~ppc64 ~x86"
67 IUSE="python ssl static-libs"
68
69 RDEPEND=">=app-pda/libplist-1.8-r1[python?]
70 >=app-pda/usbmuxd-0.1.4
71 ssl? ( dev-libs/openssl:0 )
72 !ssl? (
73 dev-libs/libgcrypt
74 >=dev-libs/libtasn1-1.1
75 >=net-libs/gnutls-2.2.0
76 )"
77 DEPEND="${RDEPEND}
78 dev-util/pkgconfig
79 python? ( >=dev-python/cython-0.13 )"
80
81 pkg_setup() {
82 if use python; then
83 python_set_active_version 2
84 python_pkg_setup
85 fi
86 }
87
88 src_prepare() {
89 >py-compile
90 }
91
92 src_configure() {
93 local myconf
94 use python || myconf="--without-cython"
95 use ssl || myconf="--disable-openssl"
96
97 econf \
98 $(use_enable static-libs static) \
99 ${myconf}
100 }
101
102 src_install() {
103 emake DESTDIR="${D}" install || die
104
105 dodoc AUTHORS NEWS README
106 dohtml docs/html/*
107
108 find "${ED}" -name '*.la' -exec rm -f {} +
109 }