summaryrefslogtreecommitdiff
path: root/filesystems
diff options
context:
space:
mode:
authormaya <maya@pkgsrc.org>2019-04-09 16:32:28 +0000
committermaya <maya@pkgsrc.org>2019-04-09 16:32:28 +0000
commit8027fda34f395c92bb2809496e955528804882c3 (patch)
tree790331a288053462f6148c16ea9d4a36e14543fa /filesystems
parentc7b86821f0358caf8cddea9a5e9649d84403d845 (diff)
downloadpkgsrc-8027fda34f395c92bb2809496e955528804882c3.tar.gz
fuse-encfs: workaround netbsd being wrong about which version of FUSE
changed the arguments of fuse_unmount. Fix build. I get the impression this update was done by someone on NetBSD, so I speculate the build succeeded to some people. In that cae, bump PKGREVISION, so the right arguments will be passed!
Diffstat (limited to 'filesystems')
-rw-r--r--filesystems/fuse-encfs/Makefile8
-rw-r--r--filesystems/fuse-encfs/distinfo3
-rw-r--r--filesystems/fuse-encfs/patches/patch-encfs_FileUtils.cpp16
3 files changed, 22 insertions, 5 deletions
diff --git a/filesystems/fuse-encfs/Makefile b/filesystems/fuse-encfs/Makefile
index a7bc1fa02f1..d8b51fb0152 100644
--- a/filesystems/fuse-encfs/Makefile
+++ b/filesystems/fuse-encfs/Makefile
@@ -1,8 +1,11 @@
-# $NetBSD: Makefile,v 1.15 2018/03/21 22:38:57 gdt Exp $
+# $NetBSD: Makefile,v 1.16 2019/04/09 16:32:28 maya Exp $
#
+GITHUB_PROJECT= encfs
+GITHUB_TAG= v${PKGVERSION_NOREV}
DISTNAME= encfs-1.9.4
PKGNAME= fuse-${DISTNAME}
+PKGREVISION= 1
CATEGORIES= filesystems
MASTER_SITES= ${MASTER_SITE_GITHUB:=vgough/}
@@ -11,9 +14,6 @@ HOMEPAGE= http://www.arg0.net/encfs
COMMENT= FUSE Encrypted Filesystem
LICENSE= gnu-gpl-v3
-GITHUB_PROJECT= encfs
-GITHUB_TAG= v${PKGVERSION_NOREV}
-
USE_TOOLS+= autoconf cmake pkg-config
USE_CMAKE= yes
diff --git a/filesystems/fuse-encfs/distinfo b/filesystems/fuse-encfs/distinfo
index 1e3a152eaf9..4a030155cc4 100644
--- a/filesystems/fuse-encfs/distinfo
+++ b/filesystems/fuse-encfs/distinfo
@@ -1,8 +1,9 @@
-$NetBSD: distinfo,v 1.8 2018/03/21 22:38:57 gdt Exp $
+$NetBSD: distinfo,v 1.9 2019/04/09 16:32:28 maya Exp $
SHA1 (encfs-1.9.4.tar.gz) = bf1e2b7688ee715c487d3d181e810d53c5983a0a
RMD160 (encfs-1.9.4.tar.gz) = 847f943f6ae7622d54aa9ef25a64344153c23da0
SHA512 (encfs-1.9.4.tar.gz) = 082e35e6eae4730b5e7827eed729422f9d995ebe9e441c5f9725f39cc2f46f014ac1479c7b0a7ce04e9e7228c1a93ecf5b4228e667fc48e6a7d3b68d2324cd0b
Size (encfs-1.9.4.tar.gz) = 2794574 bytes
SHA1 (patch-encfs_DirNode.cpp) = 960480ee442f534357e3325c5001b6056b2338a6
+SHA1 (patch-encfs_FileUtils.cpp) = 6c39557409ac91e6fdd2505a6511b9c47ddc7619
SHA1 (patch-encfs_main.cpp) = f7f1d9aa6d953aee98b534428e111f38b012d70f
diff --git a/filesystems/fuse-encfs/patches/patch-encfs_FileUtils.cpp b/filesystems/fuse-encfs/patches/patch-encfs_FileUtils.cpp
new file mode 100644
index 00000000000..41741816afb
--- /dev/null
+++ b/filesystems/fuse-encfs/patches/patch-encfs_FileUtils.cpp
@@ -0,0 +1,16 @@
+$NetBSD: patch-encfs_FileUtils.cpp,v 1.1 2019/04/09 16:32:28 maya Exp $
+
+Unclear FUSE API mismatch. fuse_unmount as of FUSE 3.0 seems to take
+a single argument, but NetBSD perfuse thinks it's since FUSE 2.2.
+
+--- encfs/FileUtils.cpp.orig 2018-01-28 21:07:41.000000000 +0000
++++ encfs/FileUtils.cpp
+@@ -1690,7 +1690,7 @@ bool unmountFS(EncFS_Context *ctx) {
+ return false;
+ }
+ // Time to unmount!
+-#if FUSE_USE_VERSION < 30
++#if (FUSE_USE_VERSION < 30) && !defined(__NetBSD__)
+ fuse_unmount(ctx->opts->mountPoint.c_str(), nullptr);
+ #else
+ fuse_unmount(fuse_get_context()->fuse);