mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
c71b83c89e
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)
53 lines
1.1 KiB
Makefile
53 lines
1.1 KiB
Makefile
# Created by: Veniamin Gvozdikov <vg@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= blastbeat
|
|
PORTVERSION= 20121205
|
|
PORTREVISION= 2
|
|
CATEGORIES= www
|
|
MASTER_SITES= GH GHC
|
|
|
|
MAINTAINER= vg@FreeBSD.org
|
|
COMMENT= High-performance HTTP/HTTPS/SPDY proxy
|
|
|
|
LICENSE= UNBIT
|
|
LICENSE_NAME= UNBIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
LICENSE_PERMS= auto-accept
|
|
|
|
LIB_DEPENDS= ev:${PORTSDIR}/devel/libev \
|
|
uuid:${PORTSDIR}/misc/e2fsprogs-libuuid \
|
|
zmq:${PORTSDIR}/net/libzmq2
|
|
|
|
USE_GMAKE= yes
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= zloidemon
|
|
GH_COMMIT= cdac9a9
|
|
GH_TAGNAME= ${GH_COMMIT}
|
|
PORTEXAMPLES= *
|
|
|
|
CFLAGS+= -I${LOCALBASE}/include \
|
|
-L${LOCALBASE}/lib
|
|
|
|
PLIST_FILES= bin/blastbeat \
|
|
%%ETCDIR%%/blastbeat.ini.sample
|
|
PLIST_DIRSTRY= %%ETCDIR%%
|
|
|
|
OPTIONS_DEFINE= EXAMPLES
|
|
|
|
NO_STAGE= yes
|
|
.include <bsd.port.options.mk>
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
|
|
${MKDIR} ${ETCDIR} && \
|
|
${INSTALL} ${WRKSRC}/${PORTNAME}.ini ${ETCDIR}/${PORTNAME}.ini.sample
|
|
|
|
post-install:
|
|
.if ${PORT_OPTIONS:MEXAMPLES}
|
|
${MKDIR} ${EXAMPLESDIR}
|
|
@cd ${WRKSRC}/examples && ${COPYTREE_SHARE} \* ${EXAMPLESDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|