[119116] trunk/dports/fuse

macsforever2000 at macports.org macsforever2000 at macports.org
Thu Apr 17 14:05:34 PDT 2014


Revision: 119116
          https://trac.macports.org/changeset/119116
Author:   macsforever2000 at macports.org
Date:     2014-04-17 14:05:34 -0700 (Thu, 17 Apr 2014)
Log Message:
-----------
osxfuse: New port. (#39456)

Added Paths:
-----------
    trunk/dports/fuse/osxfuse/
    trunk/dports/fuse/osxfuse/Portfile
    trunk/dports/fuse/osxfuse/files/
    trunk/dports/fuse/osxfuse/files/patch-buildsystem.diff
    trunk/dports/fuse/osxfuse/files/patch-kext-location.diff

Added: trunk/dports/fuse/osxfuse/Portfile
===================================================================
--- trunk/dports/fuse/osxfuse/Portfile	                        (rev 0)
+++ trunk/dports/fuse/osxfuse/Portfile	2014-04-17 21:05:34 UTC (rev 119116)
@@ -0,0 +1,119 @@
+# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
+# $Id$
+
+PortSystem          1.0
+
+name                osxfuse
+conflicts           fuse4x
+version             2.6.4
+categories          fuse devel
+platforms           macosx
+license             BSD APSL
+maintainers         dports openmaintainer
+
+description         A FUSE-Compliant File System Implementation Mechanism \
+                    for Mac OS X
+long_description    FUSE for OS X implements a mechanism that makes it possible to implement \
+                    a fully functional file system in a user-space program on Mac OS X. It \
+                    aims to be API-compliant with the FUSE (File-system in USErspace) \
+                    mechanism that originated on Linux.  Therefore, many existing FUSE file \
+                    systems become readily usable on Mac OS X. This port provides the \
+                    user-space library and header files for building filesystems.
+
+homepage            http://osxfuse.github.io/
+
+# We want to match the supported arch
+set kernel_arch [exec uname -m]
+switch ${kernel_arch} {
+    i386 -
+    x86_64 {
+        supported_archs ${kernel_arch}
+    }
+    default {
+        supported_archs i386 x86_64
+    }
+}
+
+distfiles
+set mp.dist {
+    osxfuse     7b0d8d3   {rmd160 05a8896c7cd738966da1f3f18e8a17723b140dff sha256 bba529834f61fe79be00b4a6298f40a86dd8170f91979c4eeaf9378a1ce067cd}
+    kext        c59029c   {rmd160 a19f4d8b0f4a4660b614e1716f21db749677444c sha256 77205fce0f289c3473d3621ca612cb33d86ebf4ea932712661c9527f91013bae}
+    framework   9fdde8a   {rmd160 4124b3e9c396ee41dfce35d480caff41936b8000 sha256 9dd705e05de0b346000853c08c143a15d73673684afcc9bbcf55e6c71b33fb87}
+    prefpane    8c3ea24   {rmd160 08376d5848025074b4a4feee3d5ed99bc456dfeb sha256 a6a4c5397d7faf9a3f068ddf409e8afc19292a03db0b094bbd144d5c64757118}
+    fuse        98b9960   {rmd160 589cbe0c819caded56dc4be64727580e1400fd9e sha256 f60205e19c2971228b78d180dc65cda2a6271a567229acdeb19567fcbcebb641}
+    support     1213520   {rmd160 1f774cd0d5273c02716a533463c1d374c793dfc1 sha256 57ccf15e451c132874664c00990c2df12d0dced32ba2cfe6bc6c1be863b663a9}
+}
+
+depends_build port:automake port:autoconf
+
+set mp.osxfuse_rev  [lindex ${mp.dist} [expr [lsearch ${mp.dist} osxfuse] + 1]]
+worksrcdir          osxfuse-osxfuse-${mp.osxfuse_rev}
+
+foreach { mp.comp mp.rev mp.chksum } ${mp.dist} {
+    set f ${mp.comp}-${mp.rev}.tar.gz
+    master_sites-append https://github.com/osxfuse/${mp.comp}/tarball/${mp.rev}/:${mp.comp}
+    distfiles-append    ${f}:${mp.comp}
+    checksums-append    ${f}
+    foreach {type chksum} ${mp.chksum} {
+        checksums-append ${type} ${chksum}
+    }
+}
+
+post-extract {
+    foreach { mp.comp mp.rev mp.chksum } ${mp.dist} {
+        if {${mp.comp} ne "osxfuse"} {
+            # Replace existing empty directory if it exists
+            file delete ${workpath}/${worksrcdir}/${mp.comp}
+            move ${workpath}/osxfuse-${mp.comp}-${mp.rev} ${workpath}/${worksrcdir}/${mp.comp}
+        }
+    }
+}
+
+patchfiles          patch-buildsystem.diff \
+                    patch-kext-location.diff
+
+post-patch {
+    # Perhaps the ports sandbox does not let us write to /tmp.
+    # For a quick and temporary fix use this reinplace.
+    file mkdir ${workpath}/tmp
+    reinplace "s,@@TMP@@,${workpath}/tmp,g" ${worksrcpath}/build.sh
+
+    # Only build the archs we want, not the hardcoded universal archs
+    reinplace -E "s,@@ARCHS@@,[get_canonical_archs],g" ${worksrcpath}/build.sh
+
+    # Inject the destroot path as the buildsystem tries to write to the prefix directly
+    reinplace -E "s,@@DESTROOT@@,${destroot},g" ${worksrcpath}/build.sh
+
+    # Correct the location of the kext
+    reinplace -E "s,@@PREFIX@@,${prefix},g" ${worksrcpath}/kext/common/fuse_param.h
+}
+
+use_configure   no
+
+build.cmd       ./build.sh
+# Yes, they really named this target homebrew
+build.target    -t homebrew
+build.args      -f ${prefix}
+
+# The build step already does everything
+destroot {}
+
+# Move filesystem bundle into place
+post-destroot {
+    # Set proper permissions
+    fs-traverse f ${destroot}${prefix}/Library {
+        file attributes $f -owner root -group wheel
+    }
+    # Enable setuid on helper binary
+    file attributes ${destroot}${prefix}/Library/Filesystems/osxfusefs.fs/Support/load_osxfusefs -permissions 04755
+}
+destroot.violate_mtree yes
+
+notes {
+    When upgrading, unmount all FUSE filesystems and then unload the kernel extension.
+    Unloading can be done via: sudo kextunload -b com.github.osxfuse.filesystems.osxfusefs
+    Alternativley (or if this fails), just reboot your computer now.
+}
+
+# Could probably be supported by setting ARCHS correctly above
+universal_variant no


Property changes on: trunk/dports/fuse/osxfuse/Portfile
___________________________________________________________________
Added: svn:keywords
   + Id
Added: svn:eol-style
   + native

Added: trunk/dports/fuse/osxfuse/files/patch-buildsystem.diff
===================================================================
--- trunk/dports/fuse/osxfuse/files/patch-buildsystem.diff	                        (rev 0)
+++ trunk/dports/fuse/osxfuse/files/patch-buildsystem.diff	2014-04-17 21:05:34 UTC (rev 119116)
@@ -0,0 +1,66 @@
+--- build.sh.orig	2013-12-21 16:40:29.000000000 +0100
++++ build.sh	2013-12-21 16:43:01.000000000 +0100
+@@ -12,7 +12,7 @@
+ # Beware: GNU libtool cannot handle directory names containing whitespace.
+ #         Therefore, do not set M_CONF_TMPDIR to such a directory.
+ #
+-readonly M_CONF_TMPDIR=/tmp
++readonly M_CONF_TMPDIR=@@TMP@@
+ readonly M_PLISTSIGNER_TEST_KEY="`dirname $0`/prefpane/autoinstaller/TestKeys/private_key.der"
+ 
+ # Other constants
+@@ -98,31 +98,31 @@
+ declare M_XCODE_VERSION_REQUIRED=""
+ 
+ # SDK 10.5
+-readonly M_SDK_105_ARCHS="ppc ppc64 i386 x86_64"
++readonly M_SDK_105_ARCHS="@@ARCHS@@"
+ declare M_SDK_105=""
+ declare M_SDK_105_XCODE=""
+ declare M_SDK_105_COMPILER=""
+ 
+ # SDK 10.6
+-readonly M_SDK_106_ARCHS="i386 x86_64"
++readonly M_SDK_106_ARCHS="@@ARCHS@@"
+ declare M_SDK_106=""
+ declare M_SDK_106_XCODE=""
+ declare M_SDK_106_COMPILER=""
+ 
+ # SDK 10.7
+-readonly M_SDK_107_ARCHS="i386 x86_64"
++readonly M_SDK_107_ARCHS="@@ARCHS@@"
+ declare M_SDK_107=""
+ declare M_SDK_107_XCODE=""
+ declare M_SDK_107_COMPILER=""
+ 
+ # SDK 10.8
+-readonly M_SDK_108_ARCHS="i386 x86_64"
++readonly M_SDK_108_ARCHS="@@ARCHS@@"
+ declare M_SDK_108=""
+ declare M_SDK_108_XCODE=""
+ declare M_SDK_108_COMPILER=""
+ 
+ # SDK 10.9
+-readonly M_SDK_109_ARCHS="i386 x86_64"
++readonly M_SDK_109_ARCHS="@@ARCHS@@"
+ declare M_SDK_109=""
+ declare M_SDK_109_XCODE=""
+ declare M_SDK_109_COMPILER=""
+@@ -1841,7 +1841,7 @@
+ 
+     local ms_osxfuse_out="$M_CONF_TMPDIR/osxfuse-homebrew-$ms_os_version-$ms_osxfuse_version"
+     local ms_osxfuse_build="$ms_osxfuse_out/build/"
+-    local ms_osxfuse_root="$m_prefix"
++    local ms_osxfuse_root="@@DESTROOT@@$m_prefix"
+ 
+     if [ -e "$ms_osxfuse_out" ]
+     then
+@@ -1945,7 +1945,7 @@
+     xcrun make -j4 >$m_stdout 2>$m_stderr
+     m_exit_on_error "make failed while compiling the OSXFUSE library."
+ 
+-    xcrun make install >$m_stdout 2>$m_stderr
++    xcrun make install DESTDIR="@@DESTROOT@@" >$m_stdout 2>$m_stderr
+     m_exit_on_error "cannot prepare library build for installation."
+ 
+     for f in "$ms_osxfuse_root"/lib/libosxfuse_i64*.dylib; do

Added: trunk/dports/fuse/osxfuse/files/patch-kext-location.diff
===================================================================
--- trunk/dports/fuse/osxfuse/files/patch-kext-location.diff	                        (rev 0)
+++ trunk/dports/fuse/osxfuse/files/patch-kext-location.diff	2014-04-17 21:05:34 UTC (rev 119116)
@@ -0,0 +1,11 @@
+--- kext/common/fuse_param.h.orig	2013-12-22 18:50:41.000000000 +0100
++++ kext/common/fuse_param.h	2013-12-22 18:50:44.000000000 +0100
+@@ -59,7 +59,7 @@
+ 
+ /* Paths */
+ 
+-#define OSXFUSE_BUNDLE_PATH "/Library/Filesystems/osxfusefs.fs"
++#define OSXFUSE_BUNDLE_PATH "@@PREFIX@@/Library/Filesystems/osxfusefs.fs"
+ #define OSXFUSE_KEXT        OSXFUSE_BUNDLE_PATH "/Support/osxfusefs.kext"
+ #define OSXFUSE_LOAD_PROG   OSXFUSE_BUNDLE_PATH "/Support/load_osxfusefs"
+ #define OSXFUSE_MOUNT_PROG  OSXFUSE_BUNDLE_PATH "/Support/mount_osxfusefs"
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.macosforge.org/pipermail/macports-changes/attachments/20140417/9de290be/attachment.html>


More information about the macports-changes mailing list