diff options
author | Philip Paeps <philip@FreeBSD.org> | 2021-10-27 07:59:54 +0000 |
---|---|---|
committer | Philip Paeps <philip@FreeBSD.org> | 2021-10-27 07:59:54 +0000 |
commit | 9604608f8a2d458e8fbd0acb5fc492972098cc8e (patch) | |
tree | b290993a349494df338573c8bdf3e72838de6d38 /net/fort/Makefile | |
parent | ddffa24d1a494a4354d84b553f08f493e0220c11 (diff) | |
download | ports-9604608f8a2d458e8fbd0acb5fc492972098cc8e.tar.gz ports-9604608f8a2d458e8fbd0acb5fc492972098cc8e.zip |
net/fort: don't depend on gcc10, fix version check
The current version of FORT builds fine with any c11 compiler. There is
no need for USE_GCC.
Patch the build system to correctly define the version of FORT as seen
in the output of "fort --version" and the "User-Agent:" HTTP header. [1]
Approved by: Toni Yannick Kalombo <toni@devboks.com> (maintainer)
Reported by: Mark Tinka <mark@tinka.africa> [1]
Diffstat (limited to 'net/fort/Makefile')
-rw-r--r-- | net/fort/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/net/fort/Makefile b/net/fort/Makefile index dd163a3ca597..f005b965dd2f 100644 --- a/net/fort/Makefile +++ b/net/fort/Makefile @@ -1,5 +1,6 @@ PORTNAME= fort DISTVERSION= 1.5.2 +PORTREVISION= 1 CATEGORIES= net MAINTAINER= toni@devboks.com @@ -12,8 +13,7 @@ LIB_DEPENDS= libcurl.so:ftp/curl libjansson.so:devel/jansson \ libxml2.so:textproc/libxml2 RUN_DEPENDS= ${LOCALBASE}/bin/rsync:net/rsync -USES= autoreconf pkgconfig ssl -USE_GCC= yes +USES= autoreconf compiler:c11 pkgconfig ssl USE_GITHUB= yes USE_RC_SUBR= fort @@ -25,6 +25,8 @@ GNU_CONFIGURE= yes SUB_FILES= pkg-message post-patch: + @${REINPLACE_CMD} -e "s|%%DISTVERSION%%|${DISTVERSION}|" \ + ${WRKSRC}/configure.ac @${REINPLACE_CMD} -e "s|/tmp/fort|${ETCDIR}|" \ ${WRKSRC}/examples/config.json @${REINPLACE_CMD} -e "s|/usr/local/ssl|/etc/ssl|" \ |