summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThilo Bangert <bangert@gentoo.org>2010-11-30 11:01:59 +0000
committerThilo Bangert <bangert@gentoo.org>2010-11-30 11:01:59 +0000
commitc13cf5db1ab4f0d0a36e5e7d355215c75a324efe (patch)
treefc841ab7b0510344519c329acec6606805425576 /app-pda
parentadded ~amd64 keyword (diff)
downloadgentoo-2-c13cf5db1ab4f0d0a36e5e7d355215c75a324efe.tar.gz
gentoo-2-c13cf5db1ab4f0d0a36e5e7d355215c75a324efe.tar.bz2
gentoo-2-c13cf5db1ab4f0d0a36e5e7d355215c75a324efe.zip
version bump, remove blocker on non-existent libiphone, fix dep on libusb:1(#335904)
(Portage version: 2.2.0_alpha6/cvs/Linux i686)
Diffstat (limited to 'app-pda')
-rw-r--r--app-pda/libimobiledevice/ChangeLog9
-rw-r--r--app-pda/libimobiledevice/libimobiledevice-1.0.4.ebuild32
2 files changed, 40 insertions, 1 deletions
diff --git a/app-pda/libimobiledevice/ChangeLog b/app-pda/libimobiledevice/ChangeLog
index 6df465881300..245d172123e2 100644
--- a/app-pda/libimobiledevice/ChangeLog
+++ b/app-pda/libimobiledevice/ChangeLog
@@ -1,6 +1,13 @@
# ChangeLog for app-pda/libimobiledevice
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-pda/libimobiledevice/ChangeLog,v 1.10 2010/09/16 17:44:38 josejx Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-pda/libimobiledevice/ChangeLog,v 1.11 2010/11/30 11:01:59 bangert Exp $
+
+*libimobiledevice-1.0.4 (30 Nov 2010)
+
+ 30 Nov 2010; Thilo Bangert <bangert@gentoo.org>
+ +libimobiledevice-1.0.4.ebuild:
+ version bump, remove blocker on non-existent libiphone, fix dep on libusb:1
+ (#335904)
16 Sep 2010; Joseph Jezak <josejx@gentoo.org>
libimobiledevice-1.0.2.ebuild:
diff --git a/app-pda/libimobiledevice/libimobiledevice-1.0.4.ebuild b/app-pda/libimobiledevice/libimobiledevice-1.0.4.ebuild
new file mode 100644
index 000000000000..1576921a27ba
--- /dev/null
+++ b/app-pda/libimobiledevice/libimobiledevice-1.0.4.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2010 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-pda/libimobiledevice/libimobiledevice-1.0.4.ebuild,v 1.1 2010/11/30 11:01:59 bangert Exp $
+
+EAPI=3
+
+DESCRIPTION="Support library to communicate with Apple iPhone/iPod Touch devices"
+HOMEPAGE="http://www.libimobiledevice.org/"
+SRC_URI="http://www.libimobiledevice.org/downloads/${P}.tar.bz2"
+LICENSE="GPL-2 LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc64 ~x86"
+IUSE="python"
+
+DEPEND="dev-util/pkgconfig
+ ${RDEPEND}"
+RDEPEND=">=app-pda/libplist-1.3
+ >=app-pda/usbmuxd-1.0.3
+ >=dev-libs/glib-2.14.1
+ dev-libs/libgcrypt
+ net-libs/gnutls
+ sys-fs/fuse
+ virtual/libusb:1"
+
+src_configure() {
+ econf $(use_with python swig)
+}
+
+src_install() {
+ make DESTDIR="${D}" install || die
+ dodoc README NEWS
+}