diff options
author | Pacho Ramos <pacho@gentoo.org> | 2019-09-28 17:15:56 +0200 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2019-09-28 17:19:57 +0200 |
commit | 1b38845388556ce2c0a773f80e744e1e3722bf3c (patch) | |
tree | 2045bbd117d01dbd9dc27cd6ddd3f56bca73fcb7 /app-pda | |
parent | games-action/crimsonland: New package (diff) | |
download | gentoo-1b38845388556ce2c0a773f80e744e1e3722bf3c.tar.gz gentoo-1b38845388556ce2c0a773f80e744e1e3722bf3c.tar.bz2 gentoo-1b38845388556ce2c0a773f80e744e1e3722bf3c.zip |
app-pda/libusbmuxd: Needs to bump subslot, update EAPI
Package-Manager: Portage-2.3.76, Repoman-2.3.17
Signed-off-by: Pacho Ramos <pacho@gentoo.org>
Diffstat (limited to 'app-pda')
-rw-r--r-- | app-pda/libusbmuxd/libusbmuxd-1.0.10-r1.ebuild | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/app-pda/libusbmuxd/libusbmuxd-1.0.10-r1.ebuild b/app-pda/libusbmuxd/libusbmuxd-1.0.10-r1.ebuild new file mode 100644 index 000000000000..251892a8863c --- /dev/null +++ b/app-pda/libusbmuxd/libusbmuxd-1.0.10-r1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +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/4" # based on SONAME of libusbmuxd.so +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +IUSE="kernel_linux static-libs" + +RDEPEND=" + >=app-pda/libplist-1.11:= + virtual/libusb:1 + !=app-pda/usbmuxd-1.0.9 + !<app-pda/usbmuxd-1.0.8_p1 +" +DEPEND="${RDEPEND}" +BDEPEND=" + virtual/os-headers + virtual/pkgconfig +" + +src_configure() { + local myeconfargs=( $(use_enable static-libs static) ) + use kernel_linux || myeconfargs+=( --without-inotify ) + + econf "${myeconfargs[@]}" +} + +src_install() { + default + if ! use static-libs; then + find "${D}" -name '*.la' -type f -delete || die + fi +} |