diff options
author | Stefan Cristian B. <steven.darklight@gmail.com> | 2015-01-31 16:11:14 +0200 |
---|---|---|
committer | Stefan Cristian B. <steven.darklight@gmail.com> | 2015-01-31 16:11:14 +0200 |
commit | 61a9d0efdb629dbf09d1e3287726b19f778088ed (patch) | |
tree | 0bac21bba74f9739cbd6b26b8a26a2b6cad1868b /app-pda/libusbmuxd/libusbmuxd-1.0.10.ebuild | |
parent | 986aa85f934aeba29adffe4acf1afb7b445aa14f (diff) | |
parent | 9eb46a5d6a8e0042d69684de4f0109da3184fbb6 (diff) |
Merge pull request #28 from V3n3RiX/master
support IOS 8.1.3 devices, tested with iPhone 6 and works magic
Diffstat (limited to 'app-pda/libusbmuxd/libusbmuxd-1.0.10.ebuild')
-rw-r--r-- | app-pda/libusbmuxd/libusbmuxd-1.0.10.ebuild | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/app-pda/libusbmuxd/libusbmuxd-1.0.10.ebuild b/app-pda/libusbmuxd/libusbmuxd-1.0.10.ebuild new file mode 100644 index 00000000..0559aeff --- /dev/null +++ b/app-pda/libusbmuxd/libusbmuxd-1.0.10.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-pda/libusbmuxd/libusbmuxd-1.0.9.ebuild,v 1.2 2014/08/03 12:08:23 ssuominen Exp $ + +EAPI=5 +inherit autotools-utils + +DESCRIPTION="USB multiplex daemon for use with Apple iPhone/iPod Touch devices" +HOMEPAGE="http://www.libimobiledevice.org/" +SRC_URI="http://www.libimobiledevice.org/downloads/${P}.tar.bz2" + +# tools/iproxy.c is GPL-2+, everything else is LGPL-2.1+ +LICENSE="GPL-2+ LGPL-2.1+" +SLOT="0/2" # based on SONAME of libusbmuxd.so +KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86" +IUSE="kernel_linux static-libs" + +RDEPEND=">=app-pda/libplist-1.11:= + virtual/libusb:1 + >=app-pda/usbmuxd-1.1.0" +DEPEND="${RDEPEND} + virtual/os-headers + virtual/pkgconfig" + +DOCS=( AUTHORS README ) + +src_configure() { + local myeconfargs=( $(use_enable static-libs static) ) + use kernel_linux || myeconfargs+=( --without-inotify ) + + autotools-utils_src_configure +} |