Files
ports/ftp/frox/Makefile
T
Niclas Zeising a1b290c54d Extend expiration of ports broken with -fno-common
Extend the expiration of unmaintained leaf ports that are broken with
-fno-common and previously had a short expiration date.  The new date is set
to 2021-04-01, meaning the ports will be in the 2021Q2 branch, giving people
until 2021-06-30 (10 months from now) to fix issues.
Improve the wording of the deprecation message, mentioning both llvm 11 and
-fno-common.
Bump portrevision to force reinstall.  This way the warning message about
deprecation will be displayed to users installing or reinstalling the
software.

MFH:		2020Q3 (maybe)
2020-08-30 09:47:49 +00:00

76 lines
2.1 KiB
Makefile

# Created by: Sergey Matveychuk <sem@ciam.ru>
# $FreeBSD$
PORTNAME= frox
PORTVERSION= 0.7.18
PORTREVISION= 4
CATEGORIES= ftp
MASTER_SITES= http://www.hollo.org/frox/download/ \
http://frox.sourceforge.net/download/ \
SF
MAINTAINER= ports@FreeBSD.org
COMMENT= Transparent FTP proxy with caching support
LICENSE= GPLv2+
LICENSE_FILE= ${WRKSRC}/COPYING
USES= gmake tar:bzip2
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-configfile=${PREFIX}/etc/frox.conf
CFLAGS+= -fcommon
DEPRECATED= Unmaintained and dead upstream, does not build with -fno-common (llvm 11)
EXPIRATION_DATE=2021-04-01
USE_RC_SUBR= frox
SUB_FILES= pkg-message
PORTDOCS= SECURITY CREDITS ChangeLog FAQ.html FAQ-1.html FAQ-2.html \
FAQ-3.html FAQ-4.html FAQ-5.html FAQ-6.html FAQ-7.html \
FAQ-8.html
PORTEXAMPLES= *
PLIST_FILES= sbin/frox \
man/man1/frox.1.gz \
man/man5/frox.conf.5.gz
OPTIONS_DEFINE= VIRUS_SCAN HTTP_CACHE LOCAL_CACHE CCP ROOT_RUN DOCS EXAMPLES
OPTIONS_DEFAULT= HTTP_CACHE CCP
OPTIONS_RADIO= PFILTER
OPTIONS_RADIO_PFILTER= IPFILTER PF
IPFILTER_DESC= Use ipfilter instead of ipfw
PF_DESC= Build with pf(4) support
VIRUS_SCAN_DESC= Run external virus scaner on each download
HTTP_CACHE_DESC= Enable use of external cache
LOCAL_CACHE_DESC= Enable use of local cache
CCP_DESC= Ftp-proxy style command control programs
ROOT_RUN_DESC= Allow frox running as root (not recomended)
IPFILTER_CONFIGURE_ENABLE= ipfilter
PF_CPPFLAGS= -DPF
VIRUS_SCAN_CONFIGURE_ENABLE= virus-scan
HTTP_CACHE_CONFIGURE_ENABLE= http-cache
LOCAL_CACHE_CONFIGURE_ENABLE= local-cache
CCP_CONFIGURE_ENABLE= ccp
ROOT_RUN_CONFIGURE_ENABLE= run-as-root
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/src/frox ${STAGEDIR}${PREFIX}/sbin
${INSTALL_MAN} ${WRKSRC}/doc/frox.man ${STAGEDIR}${MANPREFIX}/man/man1/frox.1
${INSTALL_MAN} ${WRKSRC}/doc/frox.conf.man ${STAGEDIR}${MANPREFIX}/man/man5/frox.conf.5
do-install-EXAMPLES-on:
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
${INSTALL_DATA} ${WRKSRC}/src/frox.conf ${STAGEDIR}${EXAMPLESDIR}/frox.conf
do-install-DOCS-on:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
.for f in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/doc/${f} ${STAGEDIR}${DOCSDIR}
.endfor
.include <bsd.port.mk>