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.4-r4.ebuild
Date: Sat, 23 Feb 2013 08:46:42
Message-Id: 20130223084639.7E59C2171E@flycatcher.gentoo.org
1 ssuominen 13/02/23 08:46:39
2
3 Modified: ChangeLog
4 Added: libimobiledevice-1.1.4-r4.ebuild
5 Log:
6 Add patch to avoid multi-byte characters from being stripped
7
8 (Portage version: 2.2.0_alpha163/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
9
10 Revision Changes Path
11 1.41 app-pda/libimobiledevice/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/libimobiledevice/ChangeLog?rev=1.41&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/libimobiledevice/ChangeLog?rev=1.41&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/libimobiledevice/ChangeLog?r1=1.40&r2=1.41
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-pda/libimobiledevice/ChangeLog,v
20 retrieving revision 1.40
21 retrieving revision 1.41
22 diff -u -r1.40 -r1.41
23 --- ChangeLog 2 Feb 2013 22:23:16 -0000 1.40
24 +++ ChangeLog 23 Feb 2013 08:46:39 -0000 1.41
25 @@ -1,6 +1,14 @@
26 # ChangeLog for app-pda/libimobiledevice
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-pda/libimobiledevice/ChangeLog,v 1.40 2013/02/02 22:23:16 ago Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-pda/libimobiledevice/ChangeLog,v 1.41 2013/02/23 08:46:39 ssuominen Exp $
30 +
31 +*libimobiledevice-1.1.4-r4 (23 Feb 2013)
32 +
33 + 23 Feb 2013; Samuli Suominen <ssuominen@g.o>
34 + +libimobiledevice-1.1.4-r4.ebuild,
35 + +files/libimobiledevice-1.1.4-property_list_service-do-not-strip-non-ASCII-ch
36 + aract.patch:
37 + Add patch to avoid multi-byte characters from being stripped
38
39 02 Feb 2013; Agostino Sarubbo <ago@g.o>
40 libimobiledevice-1.1.4-r2.ebuild:
41
42
43
44 1.1 app-pda/libimobiledevice/libimobiledevice-1.1.4-r4.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/libimobiledevice/libimobiledevice-1.1.4-r4.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-pda/libimobiledevice/libimobiledevice-1.1.4-r4.ebuild?rev=1.1&content-type=text/plain
48
49 Index: libimobiledevice-1.1.4-r4.ebuild
50 ===================================================================
51 # Copyright 1999-2013 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/app-pda/libimobiledevice/libimobiledevice-1.1.4-r4.ebuild,v 1.1 2013/02/23 08:46:39 ssuominen Exp $
54
55 EAPI=5
56 inherit autotools eutils
57
58 DESCRIPTION="Support library to communicate with Apple iPhone/iPod Touch devices"
59 HOMEPAGE="http://www.libimobiledevice.org/"
60 SRC_URI="http://www.libimobiledevice.org/downloads/${P}.tar.bz2"
61
62 LICENSE="GPL-2 LGPL-2.1"
63 SLOT="0"
64 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
65 IUSE="gnutls"
66
67 RDEPEND=">=app-pda/libplist-1.8-r1
68 >=app-pda/usbmuxd-1.0.8
69 gnutls? (
70 dev-libs/libgcrypt
71 >=dev-libs/libtasn1-1.1
72 >=net-libs/gnutls-2.2.0
73 )
74 !gnutls? ( dev-libs/openssl:0 )"
75 DEPEND="${RDEPEND}
76 virtual/pkgconfig"
77
78 DOCS="AUTHORS NEWS README"
79
80 src_prepare() {
81 epatch \
82 "${FILESDIR}"/${P}-openssl.patch \
83 "${FILESDIR}"/${P}-HOME-segfault.patch \
84 "${FILESDIR}"/${P}-property_list_service-do-not-strip-non-ASCII-charact.patch
85
86 eautoreconf
87 }
88
89 src_configure() {
90 # Disable python support wrt #451044, look at -1.1.4-r2
91 # from Attic if you need to restore it.
92
93 local myconf
94 use gnutls && myconf='--disable-openssl'
95
96 econf \
97 --disable-static \
98 --without-cython \
99 ${myconf}
100 }
101
102 src_install() {
103 default
104 dohtml docs/html/*
105
106 prune_libtool_files --all
107 }