mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-22 00:35:15 +00:00
29 lines
686 B
Makefile
29 lines
686 B
Makefile
# Created by: Gea-Suan Lin <gslin@ccca.nctu.edu.tw>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= pftpd
|
|
PORTVERSION= 1.0.3
|
|
CATEGORIES= ftp
|
|
MASTER_SITES= ftp://ftp.ifm.liu.se/pub/unix/pftpd/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Multithreaded anonymous FTP daemon
|
|
|
|
GNU_CONFIGURE= yes
|
|
MAKE_JOBS_UNSAFE= yes
|
|
|
|
PLIST_FILES= sbin/pftpd \
|
|
man/man1/pftpd.1.gz \
|
|
man/man1/rpad.1.gz
|
|
|
|
post-patch:
|
|
@${FIND} ${WRKSRC} -name "configure" | ${XARGS} ${REINPLACE_CMD} -e \
|
|
's|-lpthread|${PTHREAD_LIBS}|g'
|
|
|
|
do-install:
|
|
(cd ${WRKSRC}/src && ${INSTALL_PROGRAM} pftpd ${STAGEDIR}${PREFIX}/sbin)
|
|
(cd ${WRKSRC}/doc && ${INSTALL_MAN} *.1 ${STAGEDIR}${MANPREFIX}/man/man1)
|
|
@${CAT} ${WRKSRC}/ISSUES
|
|
|
|
.include <bsd.port.mk>
|