mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
e2b70a7be6
- Update to 2.0.3 - Update pkg-plist - Switch primary category to net/ - Update COMMENT to match other ZeroMQ ports and Google Juice - Point LIB_DEPENDS to the latest libzmq4 port - Remove gmake from USES (make works fine) - Group USE/USES entries together and sort - Add regression-test target - pkg-descr: Tab->space in WWW: - Whitespace alignment - Move devel/czmq to net/czmq - Update Makefile entries in devel/ and net/ - Add a MOVED entry
26 lines
470 B
Makefile
26 lines
470 B
Makefile
# Created by: Andrew Thompson <thompsa@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= czmq
|
|
PORTVERSION= 2.0.3
|
|
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= pathfix
|
|
USE_LDCONFIG= yes
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-libzmq=${LOCALBASE}
|
|
|
|
regression-test: build
|
|
@cd ${WRKSRC} && ${MAKE} check
|
|
|
|
.include <bsd.port.mk>
|