mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-29 10:18:30 +00:00
87096d40bb
- include posix_openpt() usage patch - add workaround for readdir() issue: #211 - fix few warnings - Add DOCS option - remove gettext dep Upstream patches: https://github.com/libfuse/sshfs/pull/212 https://github.com/libfuse/sshfs/issues/211 PR: 246325 Submitted by: rozhuk.im@gmail.com
37 lines
765 B
Makefile
37 lines
765 B
Makefile
# Created by: Anish Mistry
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= sshfs
|
|
PORTVERSION= 3.7.0
|
|
DISTVERSIONPREFIX= ${PORTNAME}-
|
|
PORTREVISION= 1
|
|
CATEGORIES= sysutils
|
|
PKGNAMEPREFIX= fusefs-
|
|
|
|
PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/
|
|
PATCHFILES+= 952a9c3fda977bce61303ae3311a3adca3d338bf.patch:-p1 # https://github.com/libfuse/sshfs/pull/212
|
|
|
|
MAINTAINER= bofh@FreeBSD.org
|
|
COMMENT= Mount remote directories over ssh
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USES= compiler:c11 fuse:3 gnome meson pkgconfig
|
|
USE_GNOME= glib20
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= libfuse
|
|
|
|
USE_GNOME= glib20
|
|
CFLAGS+= -DNDEBUG
|
|
|
|
PLIST_FILES= bin/sshfs
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
DOCS_BUILD_DEPENDS= rst2man:textproc/py-docutils
|
|
DOCS_PLIST_FILES= man/man1/sshfs.1.gz
|
|
|
|
.include <bsd.port.mk>
|