diff options
Diffstat (limited to 'app-pda/libusbmuxd/libusbmuxd-9999.ebuild')
-rw-r--r-- | app-pda/libusbmuxd/libusbmuxd-9999.ebuild | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/app-pda/libusbmuxd/libusbmuxd-9999.ebuild b/app-pda/libusbmuxd/libusbmuxd-9999.ebuild new file mode 100644 index 00000000..8706af4f --- /dev/null +++ b/app-pda/libusbmuxd/libusbmuxd-9999.ebuild @@ -0,0 +1,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 +} |