Index: head/sysutils/fusefs-sshfs/Makefile =================================================================== --- head/sysutils/fusefs-sshfs/Makefile (revision 437663) +++ head/sysutils/fusefs-sshfs/Makefile (revision 437664) @@ -1,27 +1,27 @@ # Created by: Anish Mistry # $FreeBSD$ PORTNAME= sshfs PORTVERSION= 2.8 DISTVERSIONPREFIX= ${PORTNAME}_ +PORTREVISION= 1 CATEGORIES= sysutils PKGNAMEPREFIX= fusefs- MAINTAINER= bofh@FreeBSD.org COMMENT= Mount remote directories over ssh LICENSE= GPLv2 - -KMODDIR?= ${LOCALBASE}/modules +LICENSE_FILE= ${WRKSRC}/COPYING USE_GITHUB= yes GH_ACCOUNT= libfuse GNU_CONFIGURE= yes USES= autoreconf fuse gettext pkgconfig USE_GNOME= glib20 PLIST_FILES= bin/sshfs \ man/man1/sshfs.1.gz .include Index: head/sysutils/fusefs-sshfs/files/patch-sshfs.c =================================================================== --- head/sysutils/fusefs-sshfs/files/patch-sshfs.c (nonexistent) +++ head/sysutils/fusefs-sshfs/files/patch-sshfs.c (revision 437664) @@ -0,0 +1,11 @@ +--- sshfs.c.orig 2017-03-17 21:07:50 UTC ++++ sshfs.c +@@ -1027,7 +1027,7 @@ static int pty_master(char **name) + { + int mfd; + +- mfd = open("/dev/ptmx", O_RDWR | O_NOCTTY); ++ mfd = posix_openpt(O_RDWR | O_NOCTTY); + if (mfd == -1) { + perror("failed to open pty"); + return -1; Property changes on: head/sysutils/fusefs-sshfs/files/patch-sshfs.c ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sysutils/fusefs-sshfs/pkg-message =================================================================== --- head/sysutils/fusefs-sshfs/pkg-message (revision 437663) +++ head/sysutils/fusefs-sshfs/pkg-message (revision 437664) @@ -1,27 +1,20 @@ Basic Instructions: There are three ways to do this: -From version 2.7 it makes use of the legacy /dev/ptmx. For version 10.0+ -please load the kernel module pty: - -% kldload pty - -Daemon initiated - 1) % sshfs -o idmap=user username@example.org: /path/to/mount/point or 2) % mount_fusefs auto /path/to/mount/point sshfs -o idmap=user \ username@example.org: or 3) % env FUSE_DEV_NAME=/dev/fuse0 sshfs -o idmap=user \ username@example.org: % mount_fusefs /dev/fuse0 /path/to/mount/point For further options see ``sshfs -h''.