mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
68 lines
2.3 KiB
Tcl
68 lines
2.3 KiB
Tcl
# -*- 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
|
|
|
|
PortSystem 1.0
|
|
PortGroup github 1.0
|
|
PortGroup fuse 1.0
|
|
PortGroup meson 1.0
|
|
|
|
github.setup libfuse sshfs 3.7.6 sshfs-
|
|
github.tarball_from releases
|
|
use_xz yes
|
|
revision 0
|
|
categories fuse
|
|
github.tarball_from releases
|
|
|
|
maintainers {i0ntempest @i0ntempest} openmaintainer
|
|
description SSH filesystem for FUSE
|
|
long_description This is a filesystem client based on the \
|
|
SSH File Transfer Protocol. Since most SSH \
|
|
servers already support this protocol it is \
|
|
very easy to set up: i.e. on the server side \
|
|
there is nothing to do. On the client side \
|
|
mounting the filesystem is as easy as logging \
|
|
into the server with ssh.
|
|
|
|
license GPL-2
|
|
|
|
checksums rmd160 e2f3f2f16dc4eff2b52a89d691806240f2d8e5df \
|
|
sha256 6a1bcb31450a077e9cb1b7ff158c71de34db697c3c0da6cb362502131e495893 \
|
|
size 57096
|
|
|
|
set python_branch 3.14
|
|
set python_version [string map {. ""} ${python_branch}]
|
|
|
|
depends_build-append \
|
|
port:coreutils \
|
|
port:py${python_version}-docutils
|
|
|
|
depends_lib-append path:lib/pkgconfig/glib-2.0.pc:glib2 \
|
|
bin:ssh:openssh
|
|
|
|
post-patch {
|
|
reinplace "s|ln|${prefix}/bin/gln|g" ${worksrcpath}/utils/install_helper.sh
|
|
reinplace "s|'rst2man'|'rst2man-${python_branch}'|" ${worksrcpath}/meson.build
|
|
}
|
|
|
|
if {${os.platform} eq "darwin" && ${os.major} > 22} {
|
|
configure.cflags-append \
|
|
-Wno-error=incompatible-function-pointer-types
|
|
}
|
|
|
|
# These versions hang indefinitely when compiling.
|
|
compiler.blacklist {clang >= 1403 < 1600}
|
|
|
|
variant fs_link description "Link ${name} to a .fs bundle in /Library/Filesystems" {
|
|
post-destroot {
|
|
set dir /Library/Filesystems/${name}.fs/Contents/Resources
|
|
xinstall -d ${destroot}${dir}
|
|
ln -s ${prefix}/bin/${name} ${destroot}${dir}/mount_${name}
|
|
}
|
|
|
|
destroot.violate_mtree \
|
|
yes
|
|
|
|
notes-append "
|
|
With +fs_link, you may use \'mount -t ${name}\' and use ${name} in /etc/fstab.
|
|
"
|
|
}
|