diff --git a/sysutils/Makefile b/sysutils/Makefile index 92ccede1adf4..bf075d49acf8 100644 --- a/sysutils/Makefile +++ b/sysutils/Makefile @@ -365,6 +365,7 @@ SUBDIR += fusefs-gnome-vfs SUBDIR += fusefs-gstfs SUBDIR += fusefs-gunzip + SUBDIR += fusefs-hfsfuse SUBDIR += fusefs-httpfs SUBDIR += fusefs-ifuse SUBDIR += fusefs-libs diff --git a/sysutils/fusefs-hfsfuse/Makefile b/sysutils/fusefs-hfsfuse/Makefile new file mode 100644 index 000000000000..3afc16cc42a8 --- /dev/null +++ b/sysutils/fusefs-hfsfuse/Makefile @@ -0,0 +1,37 @@ +# $FreeBSD$ + +PORTNAME= hfsfuse +DISTVERSION= g20180118 +CATEGORIES= sysutils +PKGNAMEPREFIX= fusefs- + +MAINTAINER= tobik@FreeBSD.org +COMMENT= FUSE driver for HFS+ filesystems + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/src/COPYING + +LIB_DEPENDS= libublio.so:devel/libublio \ + libutf8proc.so:textproc/utf8proc + +USES= fuse gmake +USE_GITHUB= yes +GH_ACCOUNT= 0x09 +GH_TAGNAME= d021835629c3fb37bd5bf8d364d5196f1db53867 + +MAKE_ARGS= WITH_UBLIO=system WITH_UTF8PROC=system + +PLIST_FILES= bin/hfsdump bin/hfsfuse +PORTDOCS= README.md + +OPTIONS_DEFINE= DOCS + +do-install: + cd ${WRKSRC} && ${INSTALL_PROGRAM} hfsdump hfsfuse \ + ${STAGEDIR}${PREFIX}/bin + +do-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR} + +.include diff --git a/sysutils/fusefs-hfsfuse/distinfo b/sysutils/fusefs-hfsfuse/distinfo new file mode 100644 index 000000000000..4b52e7918f1a --- /dev/null +++ b/sysutils/fusefs-hfsfuse/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1520943359 +SHA256 (0x09-hfsfuse-g20180118-d021835629c3fb37bd5bf8d364d5196f1db53867_GH0.tar.gz) = 035cc518ed2c58088e2a59b7a204da74cb82c6bf4ed16b64455e2e93347f8d3b +SIZE (0x09-hfsfuse-g20180118-d021835629c3fb37bd5bf8d364d5196f1db53867_GH0.tar.gz) = 205481 diff --git a/sysutils/fusefs-hfsfuse/pkg-descr b/sysutils/fusefs-hfsfuse/pkg-descr new file mode 100644 index 000000000000..dadfb6bc3b6d --- /dev/null +++ b/sysutils/fusefs-hfsfuse/pkg-descr @@ -0,0 +1,10 @@ +FUSE driver for HFS+ based on NetBSD's kernel driver with +modifications. + +This driver is read-only and cannot write to or damage the target +filesystem in any way. + +hfsfuse also includes a standalone tool, hfsdump, to inspect the +contents of an HFS+ volume without FUSE. + +WWW: https://github.com/0x09/hfsfuse