mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
Add fusefs-ext2 0.0.9, FUSE module to mount ext2, ext3 and ext4 with
read write support.
This commit is contained in:
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
|
@ -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
|
||||
|
|
28
sysutils/fusefs-ext2/Makefile
Normal file
28
sysutils/fusefs-ext2/Makefile
Normal 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>
|
3
sysutils/fusefs-ext2/distinfo
Normal file
3
sysutils/fusefs-ext2/distinfo
Normal 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
|
11
sysutils/fusefs-ext2/files/patch-fuse-ext2_Makefile.am
Normal file
11
sysutils/fusefs-ext2/files/patch-fuse-ext2_Makefile.am
Normal 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:
|
10
sysutils/fusefs-ext2/files/patch-fuse-ext2_op__access.c
Normal file
10
sysutils/fusefs-ext2/files/patch-fuse-ext2_op__access.c
Normal 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)
|
||||
{
|
4
sysutils/fusefs-ext2/pkg-descr
Normal file
4
sysutils/fusefs-ext2/pkg-descr
Normal 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
|
Loading…
Add table
Reference in a new issue