mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
466d11c8e2
Approved by: antoine (implicit)
36 lines
702 B
Makefile
36 lines
702 B
Makefile
# Created by: Stefan Esser
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= fusefs-libs3
|
|
DISTVERSIONPREFIX= fuse-
|
|
DISTVERSION= 3.9.1
|
|
CATEGORIES= sysutils
|
|
|
|
MAINTAINER= se@FreeBSD.org
|
|
COMMENT= FUSE library version 3 for filesystems implemented in userspace
|
|
|
|
LICENSE= GPLv2 LGPL21
|
|
LICENSE_COMB= multi
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USES= compiler meson
|
|
USE_LDCONFIG= yes
|
|
PLIST_SUB= VERSION=${PORTVERSION}
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= libfuse
|
|
GH_PROJECT= libfuse
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OPSYS} == DragonFly
|
|
IGNORE= fusefs has not been implemented on DragonFly
|
|
.endif
|
|
|
|
.if ${CHOSEN_COMPILER_TYPE} == gcc
|
|
post-patch:
|
|
${REINPLACE_CMD} -e '/-Wno-unused-result/d' ${WRKSRC}/meson.build
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|