mirror of
https://git.FreeBSD.org/ports.git
synced 2025-02-01 10:59:55 +00:00
a1b290c54d
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)
38 lines
899 B
Makefile
38 lines
899 B
Makefile
# Created by: se
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= jftpgw
|
|
PORTVERSION= 0.13.5
|
|
PORTREVISION= 5
|
|
CATEGORIES= ftp
|
|
MASTER_SITES= http://www.mcknight.de/jftpgw/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Highly configurable FTP proxy
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USES= tar:bzip2
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-logpath=/var/log \
|
|
--enable-crypt \
|
|
--enable-sftp
|
|
|
|
CFLAGS+= -fcommon
|
|
|
|
DEPRECATED= Unmaintained and dead upstream, does not build with -fno-common (llvm 11)
|
|
EXPIRATION_DATE=2021-04-01
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
USE_RC_SUBR= ${PORTNAME}
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/jftpgw ${STAGEDIR}${PREFIX}/sbin/
|
|
${INSTALL_DATA} ${WRKSRC}/jftpgw.conf.sample ${STAGEDIR}${PREFIX}/etc/
|
|
${INSTALL_MAN} ${WRKSRC}/jftpgw.1 ${STAGEDIR}${PREFIX}/man/man1/
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/share/doc/jftpgw
|
|
${INSTALL_DATA} ${WRKSRC}/doc/config.html ${STAGEDIR}${PREFIX}/share/doc/jftpgw
|
|
|
|
.include <bsd.port.mk>
|