Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-pda/libusbmuxd/
Date: Sat, 28 Sep 2019 15:20:23
Message-Id: 1569683997.1b38845388556ce2c0a773f80e744e1e3722bf3c.pacho@gentoo
1 commit: 1b38845388556ce2c0a773f80e744e1e3722bf3c
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 28 15:15:56 2019 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 28 15:19:57 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b388453
7
8 app-pda/libusbmuxd: Needs to bump subslot, update EAPI
9
10 Package-Manager: Portage-2.3.76, Repoman-2.3.17
11 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
12
13 app-pda/libusbmuxd/libusbmuxd-1.0.10-r1.ebuild | 40 ++++++++++++++++++++++++++
14 1 file changed, 40 insertions(+)
15
16 diff --git a/app-pda/libusbmuxd/libusbmuxd-1.0.10-r1.ebuild b/app-pda/libusbmuxd/libusbmuxd-1.0.10-r1.ebuild
17 new file mode 100644
18 index 00000000000..251892a8863
19 --- /dev/null
20 +++ b/app-pda/libusbmuxd/libusbmuxd-1.0.10-r1.ebuild
21 @@ -0,0 +1,40 @@
22 +# Copyright 1999-2019 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=7
26 +
27 +DESCRIPTION="USB multiplex daemon for use with Apple iPhone/iPod Touch devices"
28 +HOMEPAGE="http://www.libimobiledevice.org/"
29 +SRC_URI="http://www.libimobiledevice.org/downloads/${P}.tar.bz2"
30 +
31 +# tools/iproxy.c is GPL-2+, everything else is LGPL-2.1+
32 +LICENSE="GPL-2+ LGPL-2.1+"
33 +SLOT="0/4" # based on SONAME of libusbmuxd.so
34 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
35 +IUSE="kernel_linux static-libs"
36 +
37 +RDEPEND="
38 + >=app-pda/libplist-1.11:=
39 + virtual/libusb:1
40 + !=app-pda/usbmuxd-1.0.9
41 + !<app-pda/usbmuxd-1.0.8_p1
42 +"
43 +DEPEND="${RDEPEND}"
44 +BDEPEND="
45 + virtual/os-headers
46 + virtual/pkgconfig
47 +"
48 +
49 +src_configure() {
50 + local myeconfargs=( $(use_enable static-libs static) )
51 + use kernel_linux || myeconfargs+=( --without-inotify )
52 +
53 + econf "${myeconfargs[@]}"
54 +}
55 +
56 +src_install() {
57 + default
58 + if ! use static-libs; then
59 + find "${D}" -name '*.la' -type f -delete || die
60 + fi
61 +}