Index: head/sysutils/avfs/Makefile =================================================================== --- head/sysutils/avfs/Makefile (revision 424045) +++ head/sysutils/avfs/Makefile (revision 424046) @@ -1,33 +1,33 @@ # Created by: Evgeny Zhirnov # $FreeBSD$ PORTNAME= avfs -PORTVERSION= 1.0.3 +PORTVERSION= 1.0.4 CATEGORIES= sysutils MASTER_SITES= SF/avf/${PORTNAME}/${PORTVERSION} MAINTAINER= mp39590@gmail.com COMMENT= Virtual File System library # FUSE daemon is licensed as GPLv2, shared library is LGPLv2 LICENSE= LGPL20 GPLv2 LICENSE_COMB= multi RUN_DEPENDS= ${LOCALBASE}/bin/bash:shells/bash USES= libtool pkgconfig tar:bz2 shebangfix perl5 USE_PERL5= run SHEBANG_FILES= extfs/uimg scripts/umountavfs scripts/mountavfs USE_LDCONFIG= yes GNU_CONFIGURE= yes CONFIGURE_ENV= PERL="${PERL}" INSTALL_TARGET= install-strip OPTIONS_DEFINE= DEBUG FUSE OPTIONS_SUB= yes DEBUG_CONFIGURE_ENABLE= debug FUSE_CONFIGURE_ENABLE= fuse FUSE_USES= fuse .include Index: head/sysutils/avfs/distinfo =================================================================== --- head/sysutils/avfs/distinfo (revision 424045) +++ head/sysutils/avfs/distinfo (revision 424046) @@ -1,2 +1,3 @@ -SHA256 (avfs-1.0.3.tar.bz2) = c6dee77b2b71567528f897727e51695587189765fc35f694e4734db0a7d4fec8 -SIZE (avfs-1.0.3.tar.bz2) = 722861 +TIMESTAMP = 1474051275 +SHA256 (avfs-1.0.4.tar.bz2) = 6b652120d9ed8730a9dcfd161d0e68481d176e854d94bed67754cb7b03e0b100 +SIZE (avfs-1.0.4.tar.bz2) = 719761 Property changes on: head/sysutils/avfs/distinfo ___________________________________________________________________ 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/avfs/files/patch-scripts_umountavs =================================================================== --- head/sysutils/avfs/files/patch-scripts_umountavs (revision 424045) +++ head/sysutils/avfs/files/patch-scripts_umountavs (nonexistent) @@ -1,16 +0,0 @@ ---- scripts/umountavfs.orig 2015-02-07 16:14:17.372402564 +0600 -+++ scripts/umountavfs 2015-02-07 16:15:29.270400346 +0600 -@@ -14,11 +14,11 @@ - MntDir="${HOME}/.avfs" - fi - --grep -qE "${MntDir}.*avfsd" /proc/mounts && { -+mount -p | grep -qE "${MntDir}.*fusefs" && { - echo unMounting AVFS on $MntDir... - if type -p fusermount > /dev/null 2>&1 ; then - fusermount -u -z "$MntDir" - else -- umount -l "$MntDir" -+ umount "$MntDir" - fi - } Property changes on: head/sysutils/avfs/files/patch-scripts_umountavs ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sysutils/avfs/files/patch-scripts_mountavs =================================================================== --- head/sysutils/avfs/files/patch-scripts_mountavs (revision 424045) +++ head/sysutils/avfs/files/patch-scripts_mountavs (nonexistent) @@ -1,11 +0,0 @@ ---- scripts/mountavfs.orig 2015-02-07 16:14:05.773404035 +0600 -+++ scripts/mountavfs 2015-02-07 16:14:56.488399333 +0600 -@@ -14,7 +14,7 @@ - MntDir=${HOME}/.avfs - fi - --grep -qE "avfsd ${MntDir}" /proc/mounts || { -+mount -p | grep -qE "${MntDir}.*fusefs" || { - if [ ! -e "$MntDir" ]; then - mkdir -p "$MntDir" - fi Property changes on: head/sysutils/avfs/files/patch-scripts_mountavs ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sysutils/avfs/files/patch-scripts_mountavfs =================================================================== --- head/sysutils/avfs/files/patch-scripts_mountavfs (nonexistent) +++ head/sysutils/avfs/files/patch-scripts_mountavfs (revision 424046) @@ -0,0 +1,11 @@ +--- scripts/mountavfs.orig 2016-09-16 18:43:19 UTC ++++ scripts/mountavfs +@@ -14,7 +14,7 @@ else + MntDir=${HOME}/.avfs + fi + +-grep -qE "avfsd ${MntDir}" /proc/mounts || { ++mount -p | grep -qE "${MntDir}.*fusefs" || { + if [ ! -e "$MntDir" ]; then + mkdir -p "$MntDir" + fi Property changes on: head/sysutils/avfs/files/patch-scripts_mountavfs ___________________________________________________________________ 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/avfs/files/patch-scripts_umountavfs =================================================================== --- head/sysutils/avfs/files/patch-scripts_umountavfs (nonexistent) +++ head/sysutils/avfs/files/patch-scripts_umountavfs (revision 424046) @@ -0,0 +1,16 @@ +--- scripts/umountavfs.orig 2016-09-16 18:43:19 UTC ++++ scripts/umountavfs +@@ -14,11 +14,11 @@ else + MntDir="${HOME}/.avfs" + fi + +-grep -qE "${MntDir}.*avfsd" /proc/mounts && { ++mount -p | grep -qE "${MntDir}.*fusefs" && { + echo unMounting AVFS on $MntDir... + if type -p fusermount > /dev/null 2>&1 ; then + fusermount -u -z "$MntDir" + else +- umount -l "$MntDir" ++ umount "$MntDir" + fi + } Property changes on: head/sysutils/avfs/files/patch-scripts_umountavfs ___________________________________________________________________ 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