diff options
author | koobs <koobs@FreeBSD.org> | 2013-12-04 22:08:03 +0800 |
---|---|---|
committer | koobs <koobs@FreeBSD.org> | 2013-12-04 22:08:03 +0800 |
commit | 67b00be1eb575b14f7e183b438164e2a077bec1a (patch) | |
tree | 754b3663485f9b13ff4b8f3685115ac80f066624 /textproc/groonga | |
parent | bfa77c61f4e4cf73ab2024e70078cd760599c09b (diff) | |
download | freebsd-ports-gnome-67b00be1eb575b14f7e183b438164e2a077bec1a.tar.gz freebsd-ports-gnome-67b00be1eb575b14f7e183b438164e2a077bec1a.tar.zst freebsd-ports-gnome-67b00be1eb575b14f7e183b438164e2a077bec1a.zip |
devel/zmq: Move to net/libzmq2 & update to align with other ZeroMQ ports
All other core ZeroMQ library ports have been moved to the net/ category
along with the czmq client library. This change completes the set,
enabling greater flexibility and choice for maintainers of ZeroMQ-based
software in the ports tree.
- Move devel/zmq to net/libzmq2
- Update devel/ and net/ category Makefiles
- Add MOVED entry
- Update LIB_DEPENDS in dependent ports
net/libzmq2:
- Switch primary category to net
- Enable STAGE support
- Add DEBUG option
- Update COMMENT to match libzmq[34]
- Update pkg-descr to match libzmq[34]
- Update CONFLICTS
- Add LICENSE
- Sort USE_* section
- Remove MAN macros and move entries to pkg-plist
- Add regression-test target for QA
Reviewed by: makc
Approved by: Gea-Suan Lin <gslin@gslin.org> (maintainer, via email)
Diffstat (limited to 'textproc/groonga')
-rw-r--r-- | textproc/groonga/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/textproc/groonga/Makefile b/textproc/groonga/Makefile index 685bdeb92f5f..f9e9b679ed34 100644 --- a/textproc/groonga/Makefile +++ b/textproc/groonga/Makefile @@ -2,6 +2,7 @@ PORTNAME= groonga PORTVERSION= 3.0.0 +PORTREVISION= 1 CATEGORIES= textproc MASTER_SITES= http://packages.groonga.org/source/groonga/ @@ -56,7 +57,7 @@ CONFIGURE_ARGS+= --with-libevent=${LOCALBASE} \ --enable-zeromq LIB_DEPENDS+= event-1.4:${PORTSDIR}/devel/libevent \ msgpack:${PORTSDIR}/devel/msgpack \ - zmq:${PORTSDIR}/devel/zmq + zmq:${PORTSDIR}/net/libzmq2 PLIST_SUB+= SUGGEST="" .else CONFIGURE_ARGS+= --without-libevent \ |