View | Details | Raw Unified | Return to bug 69343
Collapse All | Expand All

(-)bsdftpd-ssl/Makefile (-1 / +1 lines)
Lines 6-12 Link Here
6
#
6
#
7
7
8
PORTNAME=	bsdftpd-ssl
8
PORTNAME=	bsdftpd-ssl
9
PORTVERSION=	1.0.1
9
PORTVERSION=	1.0.2
10
PORTREVISION=	0
10
PORTREVISION=	0
11
CATEGORIES=	ftp
11
CATEGORIES=	ftp
12
MASTER_SITES=	http://bsdftpd-ssl.sc.ru/files/bsdftpd-ssl/archive/1.0/src/
12
MASTER_SITES=	http://bsdftpd-ssl.sc.ru/files/bsdftpd-ssl/archive/1.0/src/
(-)bsdftpd-ssl/distinfo (-1 / +2 lines)
Line 1 Link Here
1
MD5 (bsdftpd-ssl-1.0.1.tar.gz) = fe77f5a8631c01aa85f969355fba3b69
1
MD5 (bsdftpd-ssl-1.0.2.tar.gz) = 987d8645a254ec3695d21054a6cad91f
2
SIZE (bsdftpd-ssl-1.0.2.tar.gz) = 334010
(-)bsdftpd-ssl/files/bsdftpd-ssl.sh (-1 / +6 lines)
Lines 1-5 Link Here
1
#!/bin/sh
1
#!/bin/sh
2
2
3
# Add extra options here for the BSDftpd-ssl FTP server.
4
# See ftpd-ssl(8) for more details.
5
EXTRAOPTS="-l"
6
7
# You shouldn't edit anything below...
3
if ! PREFIX=$(expr $0 : "\(/.*\)/etc/rc\.d/$(basename $0)\$"); then
8
if ! PREFIX=$(expr $0 : "\(/.*\)/etc/rc\.d/$(basename $0)\$"); then
4
    echo "$0: Cannot determine the PREFIX" >&2
9
    echo "$0: Cannot determine the PREFIX" >&2
5
    exit 1
10
    exit 1
Lines 8-14 Link Here
8
case "$1" in
13
case "$1" in
9
start)
14
start)
10
	if [ -x ${PREFIX}/libexec/ftpd ]; then
15
	if [ -x ${PREFIX}/libexec/ftpd ]; then
11
		${PREFIX}/libexec/ftpd -D -l -p /var/run/ftpd.pid > /dev/null
16
		${PREFIX}/libexec/ftpd -D -p /var/run/ftpd.pid ${EXTRAOPTS} > /dev/null
12
		echo -n ' BSDftpd-ssl'
17
		echo -n ' BSDftpd-ssl'
13
	fi
18
	fi
14
	;;
19
	;;

Return to bug 69343