blob: 2437c36ce2ea32a5beb96078b36b4b0e25a0de5f (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-ftp/vsftpd/vsftpd-1.0.1-r1.ebuild,v 1.8 2004/06/05 20:05:56 hansmi Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Very Secure FTP Daemon written with speed, size and security in mind"
SRC_URI="ftp://vsftpd.beasts.org/users/cevans/${P}.tar.gz"
HOMEPAGE="http://vsftpd.beasts.org/"
DEPEND=">=sys-libs/pam-0.75"
RDEPEND="sys-apps/xinetd"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 sparc "
src_unpack() {
unpack ${A} ; cd ${S}
patch -p1 < ${FILESDIR}/${P}-gentoo.diff || die "bad patchfile"
}
src_compile() {
make CFLAGS="${CFLAGS}" || die "compile problem"
}
src_install () {
dodir /home/ftp /usr/share/vsftpd/empty /var/log/vsftpd
doman vsftpd.conf.5 vsftpd.8
dosbin vsftpd
dodoc AUDIT BENCHMARKS BUGS Changelog FAQ INSTALL KERNEL-2.4.0-WARNING
dodoc LICENSE README README.security REWARD SIZE SPEED TODO TUNING
docinto security ; dodoc SECURITY/*
newdoc ${FILESDIR}/vsftpd.conf vsftpd.conf.sample
newdoc vsftpd.conf vsftpd.conf.dist.sample
insinto /etc ; doins ${FILESDIR}/ftpusers
insinto /etc/vsftpd ; newins ${FILESDIR}/vsftpd.conf vsftpd.conf.sample
insinto /etc/xinetd.d ; newins ${FILESDIR}/vsftpd.xinetd vsftpd
insinto /etc/pam.d ; newins ${FILESDIR}/vsftpd.pam vsftpd
}
|