diff options
author | Jeffrey Lin <jeffrey@icurse.nl> | 2020-06-20 15:38:31 -0400 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2020-07-16 15:59:23 +0300 |
commit | 9d6ade62ef5c0ebc17cb1f24bc53db16844a8ee0 (patch) | |
tree | 9d968919e21478b0abe00833096f2c70bc8174b5 | |
parent | app-pda/libplist: version bump to 2.2.0 (diff) | |
download | gentoo-9d6ade62ef5c0ebc17cb1f24bc53db16844a8ee0.tar.gz gentoo-9d6ade62ef5c0ebc17cb1f24bc53db16844a8ee0.tar.bz2 gentoo-9d6ade62ef5c0ebc17cb1f24bc53db16844a8ee0.zip |
app-pda/libusbmuxd: version bump to 2.0.2
Signed-off-by: Jeffrey Lin <jeffrey@icurse.nl>
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
-rw-r--r-- | app-pda/libusbmuxd/Manifest | 1 | ||||
-rw-r--r-- | app-pda/libusbmuxd/libusbmuxd-2.0.2.ebuild | 38 |
2 files changed, 39 insertions, 0 deletions
diff --git a/app-pda/libusbmuxd/Manifest b/app-pda/libusbmuxd/Manifest index e5b74112edd0..972b301fc5f4 100644 --- a/app-pda/libusbmuxd/Manifest +++ b/app-pda/libusbmuxd/Manifest @@ -1,2 +1,3 @@ DIST libusbmuxd-1.0.10.tar.bz2 292649 BLAKE2B 7ec9a576cb20f7e87cf1f31e57e66100c496e5809142d225df9b3cc295a71546bed2d90f41df3144f7316ce0aec5f08fad850c528e27f336bf96e9578bcffd04 SHA512 180cde2e9d0860d07d29813e68abf8ca807f75e98424b50acfc1ce941ba4260922959e1047a7d2bc754470c08ed55d0a15c9367487bd41c635a52b4fbf8ff535 DIST libusbmuxd-2.0.1.tar.bz2 37373 BLAKE2B 3d7d8b4ccc5331f1f3868e67ac9726281dccb8eabc58cf78d4b8a921c403095adb18cd8ec4f156c06297abb8566daae04300709fd1afd35c57dbda155db03c0d SHA512 c2a977898ccd28d32f7754bac08829b57bc87ad958febded2c95087a06cb0b5a73daf087b3a00630701a7313fd3900f916846b77b4794321c90e6aa9f9246ed3 +DIST libusbmuxd-2.0.2.tar.bz2 43162 BLAKE2B e3559583e691a5f87a61ffece0ebf944d4aed48d37f83a504ee4d7a245e05511c6620c4a82d29bea2a10686910a14f7a730afec0f2cfc9435f748499e35df433 SHA512 3086ce1a05026afeabcdb5364ec30f4a6a5c84fe6f09e15ef6ff438bd3dfdb262ebdff94e5e0d0828b6d946bc8bdf01760271ba0d1fbf98d743dce149764a519 diff --git a/app-pda/libusbmuxd/libusbmuxd-2.0.2.ebuild b/app-pda/libusbmuxd/libusbmuxd-2.0.2.ebuild new file mode 100644 index 000000000000..9c0bb1c26cbf --- /dev/null +++ b/app-pda/libusbmuxd/libusbmuxd-2.0.2.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools + +DESCRIPTION="USB multiplex daemon for use with Apple iPhone/iPod Touch devices" +HOMEPAGE="https://www.libimobiledevice.org/" +SRC_URI="https://cgit.libimobiledevice.org/${PN}.git/snapshot/${P}.tar.bz2" +LICENSE="GPL-2+ LGPL-2.1+" # tools/*.c is GPL-2+, rest is LGPL-2.1+ +SLOT="0/6" # based on SONAME of libusbmuxd.so +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +IUSE="static-libs" + +RDEPEND=" + >=app-pda/libplist-2.2.0:= +" +DEPEND="${RDEPEND}" +BDEPEND=" + virtual/pkgconfig +" + +src_prepare() { + default + eautoreconf +} + +src_configure() { + econf \ + $(use_enable static-libs static) \ + $(usex kernel_linux '' --without-inotify) +} + +src_install() { + default + find "${D}" -name '*.la' -type f -delete || die +} |