summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThilo Bangert <bangert@gentoo.org>2010-07-14 15:07:16 +0000
committerThilo Bangert <bangert@gentoo.org>2010-07-14 15:07:16 +0000
commitc5c4e5ff252df5f62c715ea7fb60e057b42442c8 (patch)
tree8a44f7ceed1dc874d5a046a9db808da2324e095a /app-pda
parentRestrict tests, bug 328269 (diff)
downloadgentoo-2-c5c4e5ff252df5f62c715ea7fb60e057b42442c8.tar.gz
gentoo-2-c5c4e5ff252df5f62c715ea7fb60e057b42442c8.tar.bz2
gentoo-2-c5c4e5ff252df5f62c715ea7fb60e057b42442c8.zip
version bump (#326173) - thanks Chris Slycord
(Portage version: 2.2_rc67/cvs/Linux i686)
Diffstat (limited to 'app-pda')
-rw-r--r--app-pda/libimobiledevice/ChangeLog8
-rw-r--r--app-pda/libimobiledevice/libimobiledevice-1.0.2.ebuild33
2 files changed, 40 insertions, 1 deletions
diff --git a/app-pda/libimobiledevice/ChangeLog b/app-pda/libimobiledevice/ChangeLog
index f8e6a7f87510..3285e06e402b 100644
--- a/app-pda/libimobiledevice/ChangeLog
+++ b/app-pda/libimobiledevice/ChangeLog
@@ -1,6 +1,12 @@
# 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.4 2010/05/28 16:01:59 bangert Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-pda/libimobiledevice/ChangeLog,v 1.5 2010/07/14 15:07:16 bangert Exp $
+
+*libimobiledevice-1.0.2 (14 Jul 2010)
+
+ 14 Jul 2010; Thilo Bangert <bangert@gentoo.org>
+ +libimobiledevice-1.0.2.ebuild:
+ version bump (#326173)
*libimobiledevice-1.0.1 (28 May 2010)
diff --git a/app-pda/libimobiledevice/libimobiledevice-1.0.2.ebuild b/app-pda/libimobiledevice/libimobiledevice-1.0.2.ebuild
new file mode 100644
index 000000000000..b6b8205e1ae2
--- /dev/null
+++ b/app-pda/libimobiledevice/libimobiledevice-1.0.2.ebuild
@@ -0,0 +1,33 @@
+# 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.2.ebuild,v 1.1 2010/07/14 15:07:16 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 ~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:0
+ !app-pda/libiphone"
+
+src_configure() {
+ econf $(use_with python swig)
+}
+
+src_install() {
+ make DESTDIR="${D}" install || die
+ dodoc README NEWS
+}