freebsd-ports/ftp/bftpd/Makefile
Jesse Smith f60b124279
ftp/bftpd: Update to 6.1
PR:		261559
2022-02-04 05:41:30 +08:00

41 lines
1.0 KiB
Makefile

# Created by: will
PORTNAME= bftpd
PORTVERSION= 6.1
CATEGORIES= ftp
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
MAINTAINER= jsmith@resonatingmedia.com
COMMENT= Very configurable FTP server that can do chroot easily
LICENSE= GPLv2
USES= autoreconf cpe gmake
CPE_VENDOR= ${PORTNAME}_project
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-pam
# Fix build with clang 11
CFLAGS+= -fcommon
WRKSRC= ${WRKDIR}/${PORTNAME}
PLIST_FILES= sbin/${PORTNAME} etc/${PORTNAME}.conf.sample \
man/man8/bftpd.8.gz
PORTDOCS= en pl sk
OPTIONS_DEFINE= DOCS
post-patch:
@${REINPLACE_CMD} -e 's,/etc/bftpd.conf,${PREFIX}/etc/bftpd.conf,' \
${WRKSRC}/mypaths.h
@${REINPLACE_CMD} -e 's, -ldl,,g' ${WRKSRC}/configure.in
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/sbin/
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.8 ${STAGEDIR}${MAN8PREFIX}/man/man8/
${INSTALL_DATA} ${WRKSRC}/bftpd.conf ${STAGEDIR}${PREFIX}/etc/bftpd.conf.sample
@cd ${WRKSRC}/doc && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}
.include <bsd.port.mk>