ea8c8ec7da
as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3 to GCC 9.1 under most circumstances now after revision 507371. 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, everything INDEX-11 shows with a dependency on lang/gcc9 now. PR: 238330
58 lines
1.8 KiB
Makefile
58 lines
1.8 KiB
Makefile
# Created by: Masafumi NAKANE <max@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= delegate
|
|
PORTVERSION= 9.9.13
|
|
PORTREVISION= 1
|
|
CATEGORIES= net www
|
|
MASTER_SITES= ftp://ftp.delegate.org/pub/DeleGate/
|
|
DISTNAME= ${PORTNAME}${PORTVERSION}
|
|
|
|
MAINTAINER= danilo@FreeBSD.org
|
|
COMMENT= General purpose TCP/IP proxy system
|
|
|
|
BROKEN_mips= fails to build: gmake[1]: [Makefile:116: mkmake.exe] Error 1
|
|
BROKEN_mips64= fails to build: gmake[1]: [Makefile:116: mkmake.exe] Error 1
|
|
|
|
USES= compiler:c11 gmake
|
|
SUB_FILES= pkg-message
|
|
|
|
ADMIN?= admin@example.com
|
|
|
|
CFLAGS+= -x c++ -std=gnu++98
|
|
|
|
PLIST_FILES= sbin/delegated etc/rc.d/delegated.sh-dist
|
|
PORTDOCS= CHANGES COPYRIGHT DG9note.html HowToDG.html IPv6NOTE.txt \
|
|
Manual.htm jpconv.htm tutor-en.htm tutor-jp.htm
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-extract:
|
|
@${LN} ${WRKSRC}/CHANGES ${WRKSRC}/COPYRIGHT ${WRKSRC}/DG9note.html \
|
|
${WRKSRC}/IPv6NOTE.txt ${WRKSRC}/doc
|
|
|
|
post-patch:
|
|
# Prevent "filesystem was touched prior to 'make install' phase" warning;
|
|
# allow unattended (non-interactive) builds
|
|
@${REINPLACE_CMD} -e 's,"$$(XDG)",& DGROOT=${WRKDIR},' \
|
|
${WRKSRC}/Makefile
|
|
@${REINPLACE_CMD} -E '/ADMIN/s,undef,${ADMIN}, ; \
|
|
s,-F(esign|ver),& DGROOT=${WRKDIR},' ${WRKSRC}/src/Makefile
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/src/delegated ${STAGEDIR}${PREFIX}/sbin
|
|
${INSTALL_SCRIPT} ${FILESDIR}/delegated.sh \
|
|
${STAGEDIR}${PREFIX}/etc/rc.d/delegated.sh-dist
|
|
# Re-sign the executable
|
|
@${MKDIR} ${WRKDIR}/tmp
|
|
@${CP} ${STAGEDIR}${PREFIX}/sbin/delegated ${WRKDIR}/tmp/dg
|
|
@${CHMOD} +w ${STAGEDIR}${PREFIX}/sbin/delegated
|
|
@${WRKDIR}/tmp/dg DGROOT=${WRKDIR}/tmp/ -Fesign -w ${STAGEDIR}${PREFIX}/sbin/delegated
|
|
@${CHMOD} -w ${STAGEDIR}${PREFIX}/sbin/delegated
|
|
|
|
do-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/doc/,} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|