1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-01 05:45:45 +00:00
freebsd-ports/net/libzmq3/Makefile
Kubilay Kocak 6016b49883 net/libzmq4: Update to 4.0.5
- Update to 4.0.5
- Add LICENSE_FILE
- Sort Makefile sections
- Verbose'ify build
- Reduce diffs between net/libzmq3 [1]

[1] NOTE: OpenPGM is now a DEFAULT option in net/libzmq3

Changes:

  * https://github.com/zeromq/zeromq4-x/blob/v4.0.5/NEWS

While I'm here:

- Bump PORTREVISIONS to chase shared library version change
- czmq: Verbose'ify czmq build
- czmq: Use install-strip to strip shared library

PR:		197407
2015-02-09 03:23:49 +00:00

45 lines
896 B
Makefile

# $FreeBSD$
PORTNAME= libzmq3
PORTVERSION= 3.2.5
CATEGORIES= net
MASTER_SITES= http://download.zeromq.org/
DISTNAME= zeromq-${DISTVERSION}
MAINTAINER= koobs@FreeBSD.org
COMMENT= ZeroMQ core library (Version 3)
LICENSE= LGPL3
LICENSE_FILE= ${WRKSRC}/COPYING
CONFLICTS= zmq-[0-9]* libzmq[^3]-[0-9]*
USES= libtool pathfix
USE_LDCONFIG= yes
GNU_CONFIGURE= yes
OPTIONS_DEFINE= DEBUG PGM
OPTIONS_DEFAULT= 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
MAKE_ENV= V=1
INSTALL_TARGET= install-strip
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MDEBUG}
WITH_DEBUG= yes
.endif
regression-test: build
@(cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_FLAGS} \
${MAKEFILE} ${MAKE_ARGS} check)
.include <bsd.port.mk>