2015-03-01 16:52:06 +03:00
|
|
|
# Copyright 1999-2015 Gentoo Foundation
|
2013-12-30 18:39:49 +04:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
2015-08-11 00:17:55 +03:00
|
|
|
# $Id$
|
2013-12-30 18:39:49 +04:00
|
|
|
|
|
|
|
EAPI=5
|
|
|
|
|
|
|
|
EGIT_REPO_URI="git://github.com/phatina/${PN}.git"
|
|
|
|
inherit autotools-utils eutils
|
|
|
|
[[ ${PV} == 9999 ]] && inherit git-r3
|
|
|
|
|
|
|
|
DESCRIPTION="Simple MTP fuse filesystem driver"
|
|
|
|
HOMEPAGE="https://github.com/phatina/simple-mtpfs"
|
|
|
|
[[ ${PV} == 9999 ]] || SRC_URI="https://github.com/phatina/${PN}/archive/${P}.tar.gz"
|
|
|
|
|
|
|
|
LICENSE="GPL-2+"
|
|
|
|
SLOT="0"
|
2015-03-01 16:52:06 +03:00
|
|
|
[[ ${PV} == 9999 ]] || \
|
|
|
|
KEYWORDS="~amd64 ~x86"
|
2013-12-30 18:39:49 +04:00
|
|
|
IUSE=""
|
|
|
|
|
|
|
|
RDEPEND="
|
|
|
|
media-libs/libmtp
|
|
|
|
>=sys-fs/fuse-2.8
|
|
|
|
"
|
|
|
|
DEPEND="${RDEPEND}
|
|
|
|
virtual/pkgconfig
|
|
|
|
"
|
|
|
|
|
|
|
|
[[ ${PV} == 9999 ]] || S="${WORKDIR}/${PN}-${P}"
|
|
|
|
|
|
|
|
AUTOTOOLS_AUTORECONF=1
|