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
33 lines
776 B
Makefile
33 lines
776 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= resolv_wrapper
|
|
PORTVERSION= 1.1.5
|
|
CATEGORIES= devel
|
|
MASTER_SITES= SAMBA/cwrap
|
|
|
|
MAINTAINER= timur@FreeBSD.org
|
|
COMMENT= Wrapper for dns name resolving or dns faking
|
|
|
|
LICENSE= GPLv3
|
|
|
|
USES= cmake
|
|
USE_LDCONFIG= yes
|
|
|
|
CMAKE_ARGS= -DMAN_INSTALL_DIR:PATH="${PREFIX}/man"
|
|
|
|
OPTIONS_DEFINE= TEST
|
|
OPTIONS_DEFAULT= TEST
|
|
|
|
TEST_TEST_TARGET= test
|
|
TEST_CMAKE_BOOL= UNIT_TESTING
|
|
TEST_BUILD_DEPENDS= cmocka>=1.1.1:sysutils/cmocka
|
|
|
|
PLIST_FILES= libdata/pkgconfig/resolv_wrapper.pc \
|
|
lib/cmake/resolv_wrapper/resolv_wrapper-config-version.cmake \
|
|
lib/cmake/resolv_wrapper/resolv_wrapper-config.cmake \
|
|
lib/libresolv_wrapper.so.0.0.5 \
|
|
lib/libresolv_wrapper.so.0 \
|
|
lib/libresolv_wrapper.so \
|
|
man/man1/resolv_wrapper.1.gz
|
|
|
|
.include <bsd.port.mk>
|