mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-25 04:43:33 +00:00
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
50 lines
1.2 KiB
Makefile
50 lines
1.2 KiB
Makefile
# Created by: Dmitry Marakasov <amdmi3@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= wcmcommander
|
|
PORTVERSION= 0.20.0
|
|
DISTVERSIONPREFIX= release-
|
|
PORTREVISION= 9
|
|
CATEGORIES= x11-fm
|
|
|
|
MAINTAINER= amdmi3@FreeBSD.org
|
|
COMMENT= Multi-platform open source file manager
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= corporateshark
|
|
GH_PROJECT= WCMCommander
|
|
|
|
USES= compiler:c++11-lib cmake
|
|
CMAKE_ARGS= -DDATADIR="${DATADIR_REL}"
|
|
USE_XORG= x11
|
|
|
|
PORTDOCS= CHANGELOG.txt README.md readme_eng.txt
|
|
|
|
OPTIONS_DEFINE= FREETYPE SMB SSH DOCS
|
|
OPTIONS_DEFAULT=FREETYPE SMB SSH
|
|
|
|
FREETYPE_LIB_DEPENDS= libfreetype.so:print/freetype2
|
|
FREETYPE_CMAKE_BOOL= WITH_FREETYPE
|
|
SMB_USES= samba:lib
|
|
SMB_CMAKE_BOOL= WITH_SMBCLIENT
|
|
SMB_CMAKE_ON= -DSMBCLIENT_LIBRARY=${SAMBALIBS}/libsmbclient.so -DSMBCLIENT_INCLUDE_DIR=${SAMBAINCLUDES}
|
|
SSH_LIB_DEPENDS= libssh2.so:security/libssh2
|
|
SSH_CMAKE_BOOL= WITH_LIBSSH2
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${CHOSEN_COMPILER_TYPE} == gcc
|
|
CXXFLAGS+= -D_GLIBCXX_USE_C99 # gcc c++11 support is broken on FreeBSD
|
|
.endif
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for f in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}/
|
|
.endfor
|
|
|
|
.include <bsd.port.post.mk>
|