foo/lib/pgm-5.2/include does not exist, so applications using strict compiler flags will fail to build due to this. Here this breaks devel/xeus build after r491260 [1]: CMake Error in CMakeLists.txt: Imported target "cppzmq" includes non-existent path "/usr/local/lib/pgm-5.2/include" in its INTERFACE_INCLUDE_DIRECTORIES. Possible reasons include: * The path was deleted, renamed, or moved to another location. * An install or uninstall procedure did not complete successfully. * The installation package was faulty and references files it does not provide. - Bump revisions of all net/openpgm consumers - Unbreak devel/xeus [1] http://beefy9.nyi.freebsd.org/data/112amd64-default/491532/logs/errors/xeus-0.18.1.log PR: 230575
76 lines
1.9 KiB
Makefile
76 lines
1.9 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= libzmq4
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 4.3.1
|
|
PORTREVISION= 1
|
|
CATEGORIES= net
|
|
MASTER_SITES= https://github.com/zeromq/libzmq/releases/download/${DISTVERSIONFULL}/
|
|
DISTNAME= zeromq-${DISTVERSION}
|
|
|
|
MAINTAINER= koobs@FreeBSD.org
|
|
COMMENT= ZeroMQ core library (Version 4)
|
|
|
|
LICENSE= LGPL3
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USES= gmake libtool pkgconfig
|
|
USE_LDCONFIG= yes
|
|
|
|
CONFLICTS= zmq-[0-9]* libzmq[^4]-[0-9]*
|
|
|
|
GNU_CONFIGURE= yes
|
|
INSTALL_TARGET= install-strip
|
|
TEST_TARGET= check
|
|
|
|
OPTIONS_DEFINE= DEBUG LIBUNWIND MANPAGES
|
|
OPTIONS_RADIO= CURVE
|
|
OPTIONS_RADIO_CURVE= SODIUM TWEETNACL
|
|
OPTIONS_GROUP= MULTICAST
|
|
OPTIONS_GROUP_MULTICAST= NORM PGM
|
|
OPTIONS_DEFAULT= MANPAGES NORM PGM TWEETNACL
|
|
OPTIONS_SUB= yes
|
|
|
|
LIBUNWIND_DESC= Use libunwind to print stack trace in case of error
|
|
CURVE_DESC= CURVE security backend
|
|
MULTICAST_DESC= Reliable Multicast Transports
|
|
TWEETNACL_DESC= Use tweetnacl
|
|
SODIUM_DESC= Use libsodium
|
|
PGM_DESC= Enable PGM transport via OpenPGM
|
|
NORM_DESC= Enable NORM via NRL
|
|
|
|
DEBUG_CONFIGURE_ENABLE= debug
|
|
DEBUG_VARS= WITH_DEBUG=yes
|
|
|
|
PGM_CONFIGURE_WITH= pgm
|
|
PGM_LIB_DEPENDS= libpgm.so:net/openpgm
|
|
|
|
LIBUNWIND_LIB_DEPENDS= libunwind.so:devel/libunwind
|
|
LIBUNWIND_CONFIGURE_ENABLE= libunwind
|
|
|
|
MANPAGES_BUILD_DEPENDS= xmlto:textproc/xmlto \
|
|
asciidoc:textproc/asciidoc
|
|
MANPAGES_CONFIGURE_WITH= docs
|
|
|
|
NORM_CONFIGURE_WITH= norm=${PREFIX}
|
|
NORM_LIB_DEPENDS= libnorm.so:net/norm
|
|
|
|
SODIUM_CONFIGURE_WITH= libsodium
|
|
SODIUM_LIB_DEPENDS= libsodium.so:security/libsodium
|
|
SODIUM_PLIST_FILES= bin/curve_keygen
|
|
|
|
TWEETNACL_PLIST_FILES= bin/curve_keygen
|
|
|
|
CONFIGURE_ARGS+= --with-pkgconfigdir=${PREFIX}/libdata/pkgconfig \
|
|
--disable-static \
|
|
--disable-Werror \
|
|
--disable-silent-rules
|
|
CFLAGS+= -Wno-long-long
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if !${PORT_OPTIONS:MSODIUM} && !${PORT_OPTIONS:MTWEETNACL}
|
|
CONFIGURE_ARGS+= --disable-curve
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|