diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2002-05-21 03:33:11 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2002-05-21 03:33:11 +0000 |
commit | 69fed65f640b0f4becb92e695c98632b20ec7e8f (patch) | |
tree | 73fe0912105d84d800726ed389928d690996333c /ftp/twoftpd/Makefile | |
parent | upgrade to 5.59 (diff) |
upgrade to 1.15
PR: 38237
Submitted by: maintainer
Notes
Notes:
svn path=/head/; revision=59587
Diffstat (limited to 'ftp/twoftpd/Makefile')
-rw-r--r-- | ftp/twoftpd/Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/ftp/twoftpd/Makefile b/ftp/twoftpd/Makefile index ad5808f9abb1..d91fe452fd94 100644 --- a/ftp/twoftpd/Makefile +++ b/ftp/twoftpd/Makefile @@ -6,18 +6,22 @@ # PORTNAME= twoftpd -PORTVERSION= 1.14 -PORTREVISION= 1 +PORTVERSION= 1.15 CATEGORIES= ftp MASTER_SITES= http://untroubled.org/twoftpd/ MAINTAINER= gslin@ccca.nctu.edu.tw +MAN1= twoftpd-auth.1 twoftpd-xfer.1 + BIN= twoftpd-anon twoftpd-anon-conf twoftpd-auth twoftpd-conf twoftpd-xfer do-install: +.for FILE in ${MAN1} + ${INSTALL_MAN} ${WRKSRC}/${FILE} ${PREFIX}/man/man1 +.endfor .for FILE in ${BIN} - @${INSTALL_PROGRAM} ${WRKSRC}/${FILE} ${PREFIX}/sbin + ${INSTALL_PROGRAM} ${WRKSRC}/${FILE} ${PREFIX}/sbin .endfor .include <bsd.port.mk> |