diff options
author | adamw <adamw@FreeBSD.org> | 2014-08-25 00:14:28 +0800 |
---|---|---|
committer | adamw <adamw@FreeBSD.org> | 2014-08-25 00:14:28 +0800 |
commit | 421eaecdb397dcff2201a71276a107fd85c41333 (patch) | |
tree | 8a15b869da28fb2608150af51400c92fea8c8534 /sysutils | |
parent | f7567cfaa4b2bd7b0c557db870d26284883d2565 (diff) | |
download | freebsd-ports-gnome-421eaecdb397dcff2201a71276a107fd85c41333.tar.gz freebsd-ports-gnome-421eaecdb397dcff2201a71276a107fd85c41333.tar.zst freebsd-ports-gnome-421eaecdb397dcff2201a71276a107fd85c41333.zip |
Add sysutils/fusefs-simple-mtpfs.
Simple FUSE filesystem for reading from and writing to MTP devices.
SIMPLE-MTPFS (Simple Media Transfer Protocol FileSystem) is a file system for
Linux (and other operating systems with a FUSE implementation, such as Mac OS X
or FreeBSD) capable of operating on files on MTP devices attached via USB to
local machine.
WWW: https://github.com/phatina/simple-mtpfs
PR: 192552
Submitted by: Jan Beich
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/Makefile | 1 | ||||
-rw-r--r-- | sysutils/fusefs-simple-mtpfs/Makefile | 42 | ||||
-rw-r--r-- | sysutils/fusefs-simple-mtpfs/distinfo | 2 | ||||
-rw-r--r-- | sysutils/fusefs-simple-mtpfs/pkg-descr | 8 |
4 files changed, 53 insertions, 0 deletions
diff --git a/sysutils/Makefile b/sysutils/Makefile index 9583f2b83f24..370a43f6e7e0 100644 --- a/sysutils/Makefile +++ b/sysutils/Makefile @@ -299,6 +299,7 @@ SUBDIR += fusefs-pod SUBDIR += fusefs-rar2fs SUBDIR += fusefs-s3fs + SUBDIR += fusefs-simple-mtpfs SUBDIR += fusefs-smbnetfs SUBDIR += fusefs-sqlfs SUBDIR += fusefs-sshfs diff --git a/sysutils/fusefs-simple-mtpfs/Makefile b/sysutils/fusefs-simple-mtpfs/Makefile new file mode 100644 index 000000000000..c52872683c69 --- /dev/null +++ b/sysutils/fusefs-simple-mtpfs/Makefile @@ -0,0 +1,42 @@ +# $FreeBSD$ + +PORTNAME= simple-mtpfs +PORTVERSION= 0.2.s20140709 +CATEGORIES= sysutils +PKGNAMEPREFIX= fusefs- + +MAINTAINER= jbeich@vfemail.net +COMMENT= Simple MTP fuse filesystem driver + +LICENSE= GPLv2 # or any later version + +LIB_DEPENDS= libmtp.so:${PORTSDIR}/multimedia/libmtp + +USE_GITHUB= yes +GH_ACCOUNT= phatina +GH_TAGNAME= ${GH_COMMIT} +GH_COMMIT= 74dfce6 + +USES= compiler:c++11-lib fuse pkgconfig +USE_AUTOTOOLS= aclocal autoconf autoheader automake +AUTOMAKE_ARGS= --add-missing +MAKEFILE= makefile +MAKE_ENV= V=1 +INSTALL_TARGET= install-strip +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib +PLIST_FILES= bin/${PORTNAME} \ + man/man1/${PORTNAME}.1.gz +PORTDOCS= AUTHORS NEWS README.md + +OPTIONS_DEFINE= DOCS + +.if !exists(/usr/libdata/pkgconfig/libusb-1.0.pc) +CONFIGURE_ENV+= LIBUSB1_CFLAGS=" " LIBUSB1_LIBS="-lusb" +.endif + +post-install: + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:C|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} + +.include <bsd.port.mk> diff --git a/sysutils/fusefs-simple-mtpfs/distinfo b/sysutils/fusefs-simple-mtpfs/distinfo new file mode 100644 index 000000000000..461ff871ef5a --- /dev/null +++ b/sysutils/fusefs-simple-mtpfs/distinfo @@ -0,0 +1,2 @@ +SHA256 (simple-mtpfs-0.2.s20140709.tar.gz) = ef1f96d17b594513cac65e32ca75d8b1368c3bd6b916f446b060984030fb394e +SIZE (simple-mtpfs-0.2.s20140709.tar.gz) = 35333 diff --git a/sysutils/fusefs-simple-mtpfs/pkg-descr b/sysutils/fusefs-simple-mtpfs/pkg-descr new file mode 100644 index 000000000000..68fdce876bb3 --- /dev/null +++ b/sysutils/fusefs-simple-mtpfs/pkg-descr @@ -0,0 +1,8 @@ +Simple FUSE filesystem for reading from and writing to MTP devices. + +SIMPLE-MTPFS (Simple Media Transfer Protocol FileSystem) is a file system for +Linux (and other operating systems with a FUSE implementation, such as Mac OS X +or FreeBSD) capable of operating on files on MTP devices attached via USB to +local machine. + +WWW: https://github.com/phatina/simple-mtpfs |