- 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
29 lines
539 B
Makefile
29 lines
539 B
Makefile
# Created by: Andrew Thompson <thompsa@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= czmq
|
|
PORTVERSION= 2.2.0
|
|
PORTREVISION= 1
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://download.zeromq.org/
|
|
|
|
MAINTAINER= koobs@FreeBSD.org
|
|
COMMENT= High-level C Binding for ZeroMQ
|
|
|
|
LICENSE= LGPL3
|
|
|
|
LIB_DEPENDS= libzmq.so:${PORTSDIR}/net/libzmq4
|
|
|
|
USES= libtool pathfix
|
|
USE_LDCONFIG= yes
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-libzmq=${LOCALBASE}
|
|
|
|
MAKE_ENV= V=1
|
|
INSTALL_TARGET= install-strip
|
|
|
|
regression-test: build
|
|
@cd ${WRKSRC} && ${MAKE} check
|
|
|
|
.include <bsd.port.mk>
|