2017-09-07 14:12:52 +02:00
|
|
|
# Created by: Ed Schouten <ed@FreeBSD.org>
|
|
|
|
# $FreeBSD$
|
|
|
|
|
|
|
|
PORTNAME= flower
|
|
|
|
DISTVERSIONPREFIX= v
|
2017-09-18 09:00:55 +02:00
|
|
|
DISTVERSION= 0.10
|
Bump PORTREVISION for ports depending on the canonical version of GCC
defined via Mk/bsd.default-versions.mk which has moved from GCC 7.4 t
GCC 8.2 under most circumstances.
This includes ports
- with USE_GCC=yes or USE_GCC=any,
- with USES=fortran,
- using Mk/bsd.octave.mk which in turn features USES=fortran, and
- with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang,
c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib
plus, as a double check, everything INDEX-11 showed depending on lang/gcc7.
PR: 231590
2018-12-12 02:35:33 +01:00
|
|
|
PORTREVISION= 1
|
2017-09-07 14:12:52 +02:00
|
|
|
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
|
|
|
|
|
2018-10-28 17:08:49 +01:00
|
|
|
USES= cmake compiler:c++17-lang localbase:ldflags tar:xz
|
2017-09-07 14:12:52 +02:00
|
|
|
USE_GITHUB= yes
|
|
|
|
GH_ACCOUNT= NuxiNL
|
|
|
|
|
|
|
|
CFLAGS+= -I${LOCALBASE}/include/jsoncpp
|
|
|
|
|
|
|
|
# Require the unit tests to pass prior to installing.
|
|
|
|
post-build:
|
|
|
|
@trap '' PIPE && ${WRKSRC}/flower_unittests
|
|
|
|
|
2018-11-02 14:32:34 +01:00
|
|
|
.include <bsd.port.mk>
|