1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-26 05:02:18 +00:00
freebsd-ports/net/flower/Makefile
Ed Schouten 6f41015441 net/flower: Update to 0.10
This release includes proper support for egresses, meaning sandboxed
applications can now make outgoing network connections properly. In
addition to that, a new utility, flower_ls, can be used to extract a
list of registered servers. This is pretty useful for debugging.

Bump cloudabi-utils' revision to catch up with .proto changes.

Reviewed_by: koobs
Approved by: koobs (ports)
Differential_Revision: D12399
2017-09-18 07:00:55 +00:00

35 lines
699 B
Makefile

# Created by: Ed Schouten <ed@FreeBSD.org>
# $FreeBSD$
PORTNAME= flower
DISTVERSIONPREFIX= v
DISTVERSION= 0.10
CATEGORIES= net
MAINTAINER= ed@FreeBSD.org
COMMENT= Label-based networking daemon
LICENSE= BSD2CLAUSE
LICENSE_FILE= ${WRKSRC}/LICENSE
LIB_DEPENDS= libarpc.so:devel/arpc \
libjsoncpp.so:devel/jsoncpp
USES= cmake localbase:ldflags tar:xz
USE_GITHUB= yes
GH_ACCOUNT= NuxiNL
CFLAGS+= -I${LOCALBASE}/include/jsoncpp
.include <bsd.port.pre.mk>
.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1100511
IGNORE= requires various C++17 features
.endif
# Require the unit tests to pass prior to installing.
post-build:
@trap '' PIPE && ${WRKSRC}/flower_unittests
.include <bsd.port.post.mk>