Add fusefs-ext2 0.0.9, FUSE module to mount ext2, ext3 and ext4 with

read write support.
This commit is contained in:
Emanuel Haupt 2017-10-30 07:36:01 +00:00
parent f584aeedf3
commit 6533a3e36f
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=453158
6 changed files with 57 additions and 0 deletions

View file

@ -350,6 +350,7 @@
SUBDIR += fusefs-curlftpfs
SUBDIR += fusefs-encfs
SUBDIR += fusefs-exfat
SUBDIR += fusefs-ext2
SUBDIR += fusefs-ext4fuse
SUBDIR += fusefs-funionfs
SUBDIR += fusefs-fusepak

View file

@ -0,0 +1,28 @@
# Created by: Emanuel Haupt <ehaupt@FreeBSD.org>
# $FreeBSD$
PORTNAME= fusefs-ext2
PORTVERSION= 0.0.9
DISTVERSIONPREFIX= v
CATEGORIES= sysutils
MAINTAINER= ehaupt@FreeBSD.org
COMMENT= FUSE module to mount ext2, ext3 and ext4 with read write support
LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/COPYING
BUILD_DEPENDS= mke2fs:sysutils/e2fsprogs
RUN_DEPENDS= mke2fs:sysutils/e2fsprogs
USES= autoreconf libtool fuse pkgconfig localbase:ldflags
USE_GITHUB= yes
GNU_CONFIGURE= yes
GH_PROJECT= fuse-ext2
GH_ACCOUNT= alperakcan
PLIST_FILES= bin/fuse-ext2 bin/fuse-ext2.probe \
libdata/pkgconfig/fuse-ext2.pc man/man1/fuse-ext2.1.gz
.include <bsd.port.mk>

View file

@ -0,0 +1,3 @@
TIMESTAMP = 1506281848
SHA256 (alperakcan-fuse-ext2-v0.0.9_GH0.tar.gz) = a6375e51ae8fd42b07eed0e5ab2d85d867c640b6ae0f16b3ae907e54d85acb23
SIZE (alperakcan-fuse-ext2-v0.0.9_GH0.tar.gz) = 163442

View file

@ -0,0 +1,11 @@
--- fuse-ext2/Makefile.am.orig 2015-03-30 23:42:20 UTC
+++ fuse-ext2/Makefile.am
@@ -146,7 +146,7 @@ fuse_ext2_CFLAGS += \
endif
install-data-hook:
- cd "$(DESTDIR)/$(moddir)" && rm -f $(mod_LTLIBRARIES)
+ true
if DARWIN
install-exec-local:

View file

@ -0,0 +1,10 @@
--- fuse-ext2/op_access.c.orig 2015-03-30 23:42:20 UTC
+++ fuse-ext2/op_access.c
@@ -19,6 +19,7 @@
*/
#include "fuse-ext2.h"
+#include <unistd.h>
int op_access (const char *path, int mask)
{

View file

@ -0,0 +1,4 @@
Fuse-ext2 is a multi OS FUSE module to mount ext2, ext3 and ext4 file system
devices and/or images with read write support.
WWW: https://github.com/alperakcan/fuse-ext2