Ticket #39456: Portfile.3

File Portfile.3, 4.4 KB (added by irony42@…, 10 years ago)
Line 
1# -*- 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
2# $Id$
3
4PortSystem          1.0
5
6name                osxfuse
7version             2.6.4
8categories          fuse devel
9platforms           macosx
10license             BSD APSL
11maintainers         dports openmaintainer
12description         A FUSE-Compliant File System Implementation Mechanism \
13                    for Mac OS X
14
15long_description    FUSE for OS X implements a mechanism that makes it possible to implement \
16                    a fully functional file system in a user-space program on Mac OS X. It \
17                    aims to be API-compliant with the FUSE (File-system in USErspace) \
18                    mechanism that originated on Linux.  Therefore, many existing FUSE file \
19                    systems become readily usable on Mac OS X. This port provides the \
20                    user-space library and header files for building filesystems.
21
22homepage            http://osxfuse.github.io/
23
24distfiles
25set mp.dist {
26    osxfuse     7b0d8d3   {rmd160 05a8896c7cd738966da1f3f18e8a17723b140dff sha256 bba529834f61fe79be00b4a6298f40a86dd8170f91979c4eeaf9378a1ce067cd}
27    kext        c59029c   {rmd160 a19f4d8b0f4a4660b614e1716f21db749677444c sha256 77205fce0f289c3473d3621ca612cb33d86ebf4ea932712661c9527f91013bae}
28    framework   9fdde8a   {rmd160 4124b3e9c396ee41dfce35d480caff41936b8000 sha256 9dd705e05de0b346000853c08c143a15d73673684afcc9bbcf55e6c71b33fb87}
29    prefpane    8c3ea24   {rmd160 08376d5848025074b4a4feee3d5ed99bc456dfeb sha256 a6a4c5397d7faf9a3f068ddf409e8afc19292a03db0b094bbd144d5c64757118}
30    fuse        98b9960   {rmd160 589cbe0c819caded56dc4be64727580e1400fd9e sha256 f60205e19c2971228b78d180dc65cda2a6271a567229acdeb19567fcbcebb641}
31    support     1213520   {rmd160 1f774cd0d5273c02716a533463c1d374c793dfc1 sha256 57ccf15e451c132874664c00990c2df12d0dced32ba2cfe6bc6c1be863b663a9}
32}
33
34depends_build port:automake port:autoconf
35
36set mp.osxfuse_rev  [lindex ${mp.dist} [expr [lsearch ${mp.dist} osxfuse] + 1]]
37worksrcdir          osxfuse-osxfuse-${mp.osxfuse_rev}
38
39foreach { mp.comp mp.rev mp.chksum } ${mp.dist} {
40    set f ${mp.comp}-${mp.rev}.tar.gz
41    master_sites-append https://github.com/osxfuse/${mp.comp}/tarball/${mp.rev}/:${mp.comp}
42    distfiles-append    ${f}:${mp.comp}
43    checksums-append    ${f}
44    foreach {type chksum} ${mp.chksum} {
45        checksums-append ${type} ${chksum}
46    }
47}
48
49post-extract {
50    foreach { mp.comp mp.rev mp.chksum } ${mp.dist} {
51        if {${mp.comp} ne "osxfuse"} {
52            # Replace existing empty directory if it exists
53            file delete ${workpath}/${worksrcdir}/${mp.comp}
54            move ${workpath}/osxfuse-${mp.comp}-${mp.rev} ${workpath}/${worksrcdir}/${mp.comp}
55        }
56    }
57}
58
59patchfiles          patch-buildsystem.diff \
60                    patch-kext-location.diff
61
62post-patch {
63    # Perhaps the ports sandbox does not let us write to /tmp.
64    # For a quick and temporary fix use this reinplace.
65    file mkdir ${workpath}/tmp
66    reinplace "s,@@TMP@@,${workpath}/tmp,g" ${worksrcpath}/build.sh
67
68    # Only build the archs we want, not the hardcoded universal archs
69    reinplace -E "s,@@ARCHS@@,[get_canonical_archs],g" ${worksrcpath}/build.sh
70
71    # Inject the destroot path as the buildsystem tries to write to the prefix directly
72    reinplace -E "s,@@DESTROOT@@,${destroot},g" ${worksrcpath}/build.sh
73
74    # Correct the location of the kext
75    reinplace -E "s,@@PREFIX@@,${prefix},g" ${worksrcpath}/kext/common/fuse_param.h
76}
77
78use_configure   no
79
80build.cmd       ./build.sh
81# Yes, they really named this target homebrew
82build.target    -t homebrew
83build.args      -f ${prefix}
84
85# The build step already does everything
86destroot {}
87
88# Move filesystem bundle into place
89post-destroot {
90    # Set proper permissions
91    fs-traverse f ${destroot}${prefix}/Library {
92        file attributes $f -owner root -group wheel
93    }
94    # Enable setuid on helper binary
95    file attributes ${destroot}${prefix}/Library/Filesystems/osxfusefs.fs/Support/load_osxfusefs -permissions 04755
96}
97destroot.violate_mtree yes
98
99notes {
100    When upgrading, unmount all FUSE filesystems and then unload the kernel extension.
101    Unloading can be done via: sudo kextunload -b com.github.osxfuse.filesystems.osxfusefs
102    Alternativley (or if this fails), just reboot your computer now.
103}
104
105# Could probably be supported by setting ARCHS correctly above
106universal_variant no