mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
d63f864482
- Copy devel/zmq-devel to net/libzmq3 - Delete devel/zmq-devel - Remove from devel/Makefile - Add a MOVED entry for zmq-devel - Add libzmq3 to net/Makefile - Switch primary category - Add DEBUG and PGM (Multicast) options - Remove PKGNAMESUFFIX - Update COMMENT to align with libzqm4 - Update pkg-descr to align with libzmq4 - Add LICENSE - Update CONFLICTS - Tweak the regression-test target to build before running Reviewed by: kwm, wg
39 lines
717 B
Makefile
39 lines
717 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= libzmq3
|
|
PORTVERSION= 3.2.4
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://download.zeromq.org/
|
|
DISTNAME= zeromq-${DISTVERSION}
|
|
|
|
MAINTAINER= koobs@FreeBSD.org
|
|
COMMENT= ZeroMQ core library (Version 3)
|
|
|
|
LICENSE= LGPL3
|
|
|
|
USES= pathfix
|
|
USE_LDCONFIG= yes
|
|
|
|
OPTIONS_DEFINE= DEBUG PGM
|
|
PGM_DESC= Reliable multicast transport using PGM via OpenPGM
|
|
|
|
DEBUG_CONFIGURE_ON= --enable-debug
|
|
PGM_CONFIGURE_ON= --with-system-pgm
|
|
PGM_LIB_DEPENDS= libpgm.so:${PORTSDIR}/net/openpgm
|
|
PGM_USES= pkgconfig
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MDEBUG}
|
|
WITH_DEBUG= yes
|
|
.endif
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
CONFLICTS= zmq-[0-9]* libzmq[^3]-[0-9]*
|
|
|
|
regression-test: build
|
|
cd ${WRKSRC} && ${MAKE} check
|
|
|
|
.include <bsd.port.mk>
|