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

(-)b/ftp/vsftpd/Makefile (-2 / +3 lines)
Lines 2-7 Link Here
2
2
3
PORTNAME=	vsftpd
3
PORTNAME=	vsftpd
4
PORTVERSION=	3.0.5
4
PORTVERSION=	3.0.5
5
PORTREVISION=	1
5
CATEGORIES=	ftp
6
CATEGORIES=	ftp
6
MASTER_SITES=	https://security.appspot.com/downloads/ \
7
MASTER_SITES=	https://security.appspot.com/downloads/ \
7
		GENTOO
8
		GENTOO
Lines 12-19 COMMENT= FTP daemon that aims to be "very secure" Link Here
12
13
13
LICENSE=	GPLv2
14
LICENSE=	GPLv2
14
15
15
#USERS=		ftp
16
USERS=		ftp
16
#GROUPS=	ftp
17
GROUPS=		ftp
17
USES=		alias
18
USES=		alias
18
ALL_TARGET=	vsftpd
19
ALL_TARGET=	vsftpd
19
USE_RC_SUBR=	vsftpd
20
USE_RC_SUBR=	vsftpd
(-)b/ftp/vsftpd/pkg-plist (-2 lines)
Lines 1-8 Link Here
1
libexec/vsftpd
1
libexec/vsftpd
2
man/man5/vsftpd.conf.5.gz
2
man/man5/vsftpd.conf.5.gz
3
man/man8/vsftpd.8.gz
3
man/man8/vsftpd.8.gz
4
@preexec if ! pw groupshow ftp 2>/dev/null; then pw groupadd ftp -g 14; fi
5
@preexec if ! pw usershow ftp 2>/dev/null; then pw useradd ftp -g ftp -u 14 -h - -d /var/ftp -s /nonexistent -c "Anonymous FTP"; fi
6
@preunexec if diff -q %D/etc/vsftpd.conf %D/etc/vsftpd.conf.dist; then rm %D/etc/vsftpd.conf; fi
4
@preunexec if diff -q %D/etc/vsftpd.conf %D/etc/vsftpd.conf.dist; then rm %D/etc/vsftpd.conf; fi
7
etc/vsftpd.conf.dist
5
etc/vsftpd.conf.dist
8
@postexec if [ ! -f %B/vsftpd.conf ]; then cp %B/vsftpd.conf.dist %B/vsftpd.conf; fi
6
@postexec if [ ! -f %B/vsftpd.conf ]; then cp %B/vsftpd.conf.dist %B/vsftpd.conf; fi

Return to bug 257803