blob: 6cc1c15e0464fd86b4380733ecbc515574a28f9e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-ftp/vsftpd/vsftpd-2.0.3-r1.ebuild,v 1.10 2005/10/02 23:02:59 matsuu Exp $
inherit flag-o-matic eutils
DESCRIPTION="Very Secure FTP Daemon written with speed, size and security in mind"
HOMEPAGE="http://vsftpd.beasts.org/"
SRC_URI="ftp://vsftpd.beasts.org/users/cevans/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 ia64 ppc ppc64 s390 sh sparc x86"
IUSE="pam tcpd ssl selinux xinetd"
DEPEND="pam? ( || ( virtual/pam sys-libs/pam ) )
tcpd? ( >=sys-apps/tcp-wrappers-7.6 )
ssl? ( >=dev-libs/openssl-0.9.7d )"
RDEPEND="${DEPEND}
net-ftp/ftpbase
selinux? ( sec-policy/selinux-ftpd )
xinetd? ( sys-apps/xinetd )"
src_unpack() {
unpack "${A}" || die
cd "${S}" || die
use tcpd && echo "#define VSF_BUILD_TCPWRAPPERS" >> builddefs.h
use ssl && echo "#define VSF_BUILD_SSL" >> builddefs.h
use pam || echo "#undef VSF_BUILD_PAM" >> builddefs.h
epatch "${FILESDIR}/vsftpd-2.0.3-gentoo.diff"
}
src_compile() {
emake CFLAGS="${CFLAGS}" || die
}
src_install() {
into /usr
doman vsftpd.conf.5 vsftpd.8
dosbin vsftpd
dodoc AUDIT BENCHMARKS BUGS Changelog FAQ INSTALL \
LICENSE README README.security REWARD SIZE \
SPEED TODO TUNING
newdoc "${FILESDIR}/vsftpd.conf" vsftpd.conf.example
docinto security
dodoc SECURITY/*
insinto "/usr/share/doc/${PF}/examples"
doins -r EXAMPLE/*
insinto /etc/vsftpd
newins "${FILESDIR}/vsftpd.conf" vsftpd.conf.example
if use xinetd ; then
insinto /etc/xinetd.d
newins "${FILESDIR}/vsftpd.xinetd" vsftpd
fi
newconfd "${FILESDIR}/vsftpd.conf.d" vsftpd
newinitd "${FILESDIR}/vsftpd.init.d" vsftpd
keepdir /usr/share/vsftpd/empty
}
pkg_preinst() {
# If we use xinetd, then we comment out background=YES and listen=YES
# so that our default config works under xinetd - fixes #78347
if use xinetd ; then
sed -i '/\(background=YES\|listen=YES\)/s/^/#/g' \
${IMAGE}/etc/vsftpd/vsftpd.conf.example
fi
}
|