diff options
author | BlackNoxis <steven.darklight@gmail.com> | 2015-01-31 17:29:11 +0200 |
---|---|---|
committer | BlackNoxis <steven.darklight@gmail.com> | 2015-01-31 17:29:11 +0200 |
commit | 50fb4d72f0d7941b579276d5e7ba42c6b9db7f2d (patch) | |
tree | 578ada51fe66f5b562380e186b41c20dccc46a7f /app-pda/libusbmuxd | |
parent | 14be2f2eed5153443b51f4fc04072b8fc504a58d (diff) | |
parent | 61a9d0efdb629dbf09d1e3287726b19f778088ed (diff) |
Merge branch 'master' of github.com:Rogentos/kogaion-desktop
Diffstat (limited to 'app-pda/libusbmuxd')
-rw-r--r-- | app-pda/libusbmuxd/Manifest | 1 | ||||
-rw-r--r-- | app-pda/libusbmuxd/libusbmuxd-1.0.10.ebuild | 32 |
2 files changed, 33 insertions, 0 deletions
diff --git a/app-pda/libusbmuxd/Manifest b/app-pda/libusbmuxd/Manifest new file mode 100644 index 00000000..f31a6808 --- /dev/null +++ b/app-pda/libusbmuxd/Manifest @@ -0,0 +1 @@ +DIST libusbmuxd-1.0.10.tar.bz2 292649 SHA256 1aa21391265d2284ac3ccb7cf278126d10d354878589905b35e8102104fec9f2 SHA512 180cde2e9d0860d07d29813e68abf8ca807f75e98424b50acfc1ce941ba4260922959e1047a7d2bc754470c08ed55d0a15c9367487bd41c635a52b4fbf8ff535 WHIRLPOOL 4f7344084da1d5e36476b3b67584d7ccbaefebed81f82ac9bf2ce000b666860d5508e173d3f06bb0508f7803fd54686665fc5aa8d7aed7c8425c886ac27869fe 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 +} |