opnsense-ports/devel/socket_wrapper/Makefile
2022-09-07 22:33:21 +02:00

45 lines
1.6 KiB
Makefile

PORTNAME= socket_wrapper
PORTVERSION= 1.1.9
CATEGORIES= devel
MASTER_SITES= SAMBA/cwrap
MAINTAINER= timur@FreeBSD.org
COMMENT= Library passing all socket communications through unix sockets
WWW= https://cwrap.org/socket_wrapper.html
LICENSE= GPLv3
USES= cmake
USE_LDCONFIG= yes
CFLAGS_aarch64= -Wno-error=int-to-pointer-cast -Wno-error=pointer-to-int-cast
CFLAGS_mips= -Wno-error=int-to-pointer-cast -Wno-error=pointer-to-int-cast
CFLAGS_mips64= -Wno-error=int-to-pointer-cast -Wno-error=pointer-to-int-cast
CFLAGS_powerpc= -Wno-error=int-to-pointer-cast -Wno-error=pointer-to-int-cast
CFLAGS_powerpc64= -Wno-error=int-to-pointer-cast -Wno-error=pointer-to-int-cast
CFLAGS_powerpc64le= -Wno-error=int-to-pointer-cast -Wno-error=pointer-to-int-cast
CFLAGS_powerpcspe= -Wno-error=int-to-pointer-cast -Wno-error=pointer-to-int-cast
CFLAGS_riscv64= -Wno-error=int-to-pointer-cast -Wno-error=pointer-to-int-cast
CFLAGS_sparc64= -Wno-error=int-to-pointer-cast -Wno-error=pointer-to-int-cast
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/socket_wrapper.pc \
lib/cmake/socket_wrapper/socket_wrapper-config-version.cmake \
lib/cmake/socket_wrapper/socket_wrapper-config.cmake \
lib/libsocket_wrapper.so.0.1.9 \
lib/libsocket_wrapper.so.0 \
lib/libsocket_wrapper.so \
man/man1/socket_wrapper.1.gz
post-configure:
${REINPLACE_CMD} -Ee '/HAVE_FALLTHROUGH_ATTRIBUTE/d' \
${CONFIGURE_WRKSRC}/config.h
.include <bsd.port.mk>