blob: 8706af4fe53f6d00f667a4c5533772721cb416a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: app-pda/libusbmuxd/libusbmuxd-9999.ebuild,v 1.0 2013/10/31 16:34:12 srcs Exp $
EAPI=4
EGIT_MASTER="master"
inherit autotools git-2
DESCRIPTION="USB multiplex daemon for use with Apple iPhone/iPod Touch devices"
HOMEPAGE="http://www.libimobiledevice.org/"
SRC_URI=""
EGIT_REPO_URI="https://github.com/libimobiledevice/libusbmuxd.git"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86"
IUSE=""
RDEPEND=">=app-pda/libplist-1.9"
DEPEND="${RDEPEND}
virtual/pkgconfig"
DOCS=( AUTHORS README README.devel )
src_prepare() {
eautoreconf
}
src_configure() {
econf --disable-static
}
src_install() {
default
prune_libtool_files --all
}
|