Gentoo Archives: gentoo-commits

From: Jeroen Roovers <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/jmtpfs/
Date: Sun, 04 Nov 2018 22:45:54
Message-Id: 1541371546.7c43a9e55035094940e3d0469a94fe47527893e4.jer@gentoo
1 commit: 7c43a9e55035094940e3d0469a94fe47527893e4
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 4 22:45:30 2018 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 4 22:45:46 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c43a9e5
7
8 sys-fs/jmtpfs: Fix media-libs/libmtp dependency
9
10 Package-Manager: Portage-2.3.51, Repoman-2.3.12
11 Signed-off-by: Jeroen Roovers <jer <AT> gentoo.org>
12
13 sys-fs/jmtpfs/jmtpfs-0.5-r1.ebuild | 29 +++++++++++++++++++++++++++++
14 1 file changed, 29 insertions(+)
15
16 diff --git a/sys-fs/jmtpfs/jmtpfs-0.5-r1.ebuild b/sys-fs/jmtpfs/jmtpfs-0.5-r1.ebuild
17 new file mode 100644
18 index 00000000000..8ac5c3177bf
19 --- /dev/null
20 +++ b/sys-fs/jmtpfs/jmtpfs-0.5-r1.ebuild
21 @@ -0,0 +1,29 @@
22 +# Copyright 1999-2018 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=7
26 +inherit autotools
27 +
28 +DESCRIPTION="A FUSE and libmtp based filesystem for accessing MTP devices"
29 +HOMEPAGE="https://github.com/JasonFerrara/jmtpfs"
30 +SRC_URI="${HOMEPAGE}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
31 +
32 +LICENSE="GPL-3"
33 +SLOT="0"
34 +KEYWORDS="~amd64 ~x86"
35 +
36 +RDEPEND="
37 + >=media-libs/libmtp-1.1.0
38 + >=sys-fs/fuse-2.6:0
39 +"
40 +DEPEND="
41 + ${RDEPEND}
42 + virtual/pkgconfig
43 +"
44 +
45 +DOCS=( AUTHORS NEWS README )
46 +
47 +src_prepare() {
48 + default
49 + eautoreconf
50 +}