View | Details | Raw Unified | Return to bug 241558
Collapse All | Expand All

(-)sysutils/fusefs-jmtpfs/Makefile (+35 lines)
Line 0 Link Here
1
# Created by: Rozhuk Ivan <rozhuk.im@gmail.com>
2
# $FreeBSD$
3
4
PORTNAME=	jmtpfs
5
DISTVERSIONPREFIX= ${PORTNAME}-
6
DISTVERSION=	g20190420
7
CATEGORIES=	sysutils
8
PKGNAMEPREFIX=	fusefs-
9
10
MAINTAINER=	rozhuk.im@gmail.com
11
COMMENT=	MTP device filesystem
12
13
LICENSE=	GPLv3
14
LICENSE_FILE=	${WRKSRC}/COPYING
15
16
LIB_DEPENDS=	libmtp.so:multimedia/libmtp
17
18
USE_GITHUB=	yes
19
GH_ACCOUNT=	kiorky
20
GH_TAGNAME=	af0b79bc555ee60088306fdd2b78b2d51b781da3
21
22
USES=		autoreconf compiler:c++11-lib fuse localbase pkgconfig
23
GNU_CONFIGURE=	yes
24
INSTALL_TARGET=	install-strip
25
PLIST_FILES=	bin/${PORTNAME}
26
PORTDOCS=	AUTHORS NEWS README.rst
27
28
OPTIONS_DEFINE=	DOCS
29
30
31
post-install-DOCS-on:
32
	(cd ${WRKSRC} && ${COPYTREE_SHARE} \
33
		"${PORTDOCS}" ${STAGEDIR}${DOCSDIR})
34
35
.include <bsd.port.mk>
(-)sysutils/fusefs-jmtpfs/distinfo (+3 lines)
Line 0 Link Here
1
TIMESTAMP = 1572307386
2
SHA256 (kiorky-jmtpfs-jmtpfs-g20190420-af0b79bc555ee60088306fdd2b78b2d51b781da3_GH0.tar.gz) = 2e442aa0d087422c00e4382fbbd80ee7ee4b87e65cad25782b1a0317cce18c77
3
SIZE (kiorky-jmtpfs-jmtpfs-g20190420-af0b79bc555ee60088306fdd2b78b2d51b781da3_GH0.tar.gz) = 243976
(-)sysutils/fusefs-jmtpfs/pkg-descr (+16 lines)
Line 0 Link Here
1
jmtpfs is a FUSE and libmtp based filesystem for accessing MTP
2
(Media Transfer Protocol) devices. It was specifically designed for
3
exchaning files between Linux (and Mac OS X) systems and newer Android
4
devices that support MTP but not USB Mass Storage.
5
6
The goal is to create a well behaved filesystem, allowing tools like
7
find and rsync to work as expected. MTP file types are set automatically
8
based on file type detection using libmagic. Setting the file appears
9
to be necessary for some Android apps, like Gallery, to be able to find
10
and use the files.
11
12
Since it is meant as an Android file transfer utility, and I don't have
13
any non-Android MTP devices to test with, playlists and other non-file
14
based data are not supported.
15
16
WWW: https://github.com/kiorky/jmtpfs

Return to bug 241558