707c6bf295
Ports that build out of source now simply can use "USES=cmake" instead of "USES=cmake:outsource". Ports that fail to build out of source now need to specify "USES=cmake:insource". I tried to only set insource where explictely needed. PR: 232038 Exp-run by: antoine
36 lines
836 B
Makefile
36 lines
836 B
Makefile
# Created by: trasz <trasz@pin.if.uz.zgora.pl>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= encfs
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 1.9.5
|
|
PORTREVISION= 3
|
|
CATEGORIES= sysutils
|
|
PKGNAMEPREFIX= fusefs-
|
|
|
|
MAINTAINER= dg@syrec.org
|
|
COMMENT= Encrypted pass-through FUSE filesystem
|
|
|
|
LICENSE= GPLv3
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USES= cmake compiler:c++11-lib fuse ssl
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= vgough
|
|
|
|
OPTIONS_DEFINE= BUNDLED_TINYXML MANPAGES NLS
|
|
OPTIONS_DEFAULT= BUNDLED_TINYXML MANPAGES
|
|
OPTIONS_SUB= yes
|
|
|
|
BUNDLED_TINYXML_DESC= Use bundled TinyXML2 instead of textproc/tinyxml2
|
|
BUNDLED_TINYXML_CMAKE_BOOL= USE_INTERNAL_TINYXML
|
|
BUNDLED_TINYXML_LIB_DEPENDS_OFF= libtinyxml2.so:textproc/tinyxml2
|
|
|
|
MANPAGES_DESC= Install manpages (requires Perl 5)
|
|
MANPAGES_USES= perl5
|
|
MANPAGES_USE= perl5=build
|
|
|
|
NLS_USES= gettext
|
|
NLS_CMAKE_BOOL= ENABLE_NLS
|
|
|
|
.include <bsd.port.mk>
|