summaryrefslogtreecommitdiff
path: root/ftp/proftpd
diff options
context:
space:
mode:
authorMichael Haro <mharo@FreeBSD.org>1999-10-11 04:41:55 +0000
committerMichael Haro <mharo@FreeBSD.org>1999-10-11 04:41:55 +0000
commit5492aae1afd9183709efe46b30a1d4fef3592f27 (patch)
tree02b352939ec7d0a5511d4e76a9fbf28ef2bca21b /ftp/proftpd
parentFix flaotingpoint error. (diff)
- install ftpwho
- install xferlog.5 manpage - create /var/run/proftpd in the rc.d startup script so that it will be recreated during the next boot.
Notes
Notes: svn path=/head/; revision=22343
Diffstat (limited to 'ftp/proftpd')
-rw-r--r--ftp/proftpd/Makefile8
-rw-r--r--ftp/proftpd/files/proftpd.sh.sample1
-rw-r--r--ftp/proftpd/pkg-plist3
3 files changed, 7 insertions, 5 deletions
diff --git a/ftp/proftpd/Makefile b/ftp/proftpd/Makefile
index 62eff5650a73..efcef5e82098 100644
--- a/ftp/proftpd/Makefile
+++ b/ftp/proftpd/Makefile
@@ -13,7 +13,8 @@ MASTER_SITES= ftp://ftp.tos.net/pub/proftpd/
MAINTAINER= mharo@FreeBSD.org
-MAN1= ftpcount.1
+MAN1= ftpcount.1 ftpwho.1
+MAN5= xferlog.5
MAN8= proftpd.8 ftpshut.8
USE_GMAKE= yes
@@ -39,13 +40,14 @@ post-configure:
@${SED} -e 's:/usr/bin:${PREFIX}/bin:' \
< ${WRKSRC}/src/ftpcount.1.pre_sed > ${WRKSRC}/src/ftpcount.1
-#STRIP=
do-install:
- @${MKDIR} /var/run/proftpd
@${INSTALL_PROGRAM} ${WRKSRC}/ftpcount ${PREFIX}/bin/ftpcount
+ @(cd ${PREFIX}/bin && ${LN} -s ftpcount ftpwho)
@${INSTALL_PROGRAM} ${WRKSRC}/proftpd ${PREFIX}/libexec/proftpd
@${INSTALL_PROGRAM} ${WRKSRC}/ftpshut ${PREFIX}/sbin/ftpshut
@${INSTALL_MAN} ${WRKSRC}/src/ftpcount.1 ${PREFIX}/man/man1/ftpcount.1
+ @${INSTALL_MAN} ${WRKSRC}/src/ftpwho.1 ${PREFIX}/man/man1/ftpwho.1
+ @${INSTALL_MAN} ${WRKSRC}/src/xferlog.5 ${PREFIX}/man/man5/xferlog.5
@${INSTALL_MAN} ${WRKSRC}/src/ftpshut.8 ${PREFIX}/man/man8/ftpshut.8
@${INSTALL_MAN} ${WRKSRC}/src/proftpd.8 ${PREFIX}/man/man8/proftpd.8
@${INSTALL_DATA} \
diff --git a/ftp/proftpd/files/proftpd.sh.sample b/ftp/proftpd/files/proftpd.sh.sample
index d2598672f5e2..ad976fa3984f 100644
--- a/ftp/proftpd/files/proftpd.sh.sample
+++ b/ftp/proftpd/files/proftpd.sh.sample
@@ -3,6 +3,7 @@
case "$1" in
start)
+ /bin/mkdir -p /var/run/proftpd
if [ -x /usr/local/libexec/proftpd ]; then
/usr/local/libexec/proftpd && echo -n ' proftpd'
fi
diff --git a/ftp/proftpd/pkg-plist b/ftp/proftpd/pkg-plist
index a0c97c6b7ffa..37cffafd954a 100644
--- a/ftp/proftpd/pkg-plist
+++ b/ftp/proftpd/pkg-plist
@@ -1,8 +1,7 @@
bin/ftpcount
+bin/ftpwho
etc/proftpd.conf.default
etc/rc.d/proftpd.sh.sample
@exec if [ ! -f %D/etc/proftpd.conf ] ; then cp -p %D/%F %B/proftpd.conf; fi
libexec/proftpd
sbin/ftpshut
-@exec /bin/mkdir /var/run/proftpd
-@unexec /bin/rmdir /var/run/proftpd