blob: 3e29dc423680a93a37b7486e79ff1c926ac508d5 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# Maintainer: Bart Verwilst <verwilst@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/net-ftp/pure-ftpd/pure-ftpd-1.0.11-r1.ebuild,v 1.2 2002/05/27 17:27:39 drobbins Exp $
S="${WORKDIR}/${P}"
SRC_URI="mirror://sourceforge/pureftpd/${P}.tar.bz2"
DESCRIPTION="Pure-FTPd is a fast, production-quality, standard-conformant FTP server"
HOMEPAGE="http://www.pureftpd.org/"
SLOT="0"
DEPEND="virtual/glibc
pam? ( >=sys-libs/pam-0.75 )
mysql? ( >=dev-db/mysql-3.23.49 )
postgres? ( >=dev-db/postgresql-7.2 )
ldap? ( >=net-nds/openldap-2.0.21 )"
src_compile() {
local myconf
use pam && myconf="${myconf} --with-pam"
use ldap && myconf="${myconf} --with-ldap"
use mysql && myconf="${myconf} --with-mysql"
use postgres && myconf="${myconf} --with-pgsql"
./configure --prefix=/usr --mandir=/usr/share/man \
--with-altlog --with-extauth \
--with-puredb --with-cookie \
--with-throttling --with-ratios \
--with-quotas --with-ftpwho \
--with-uploadscript --with-virtualhosts \
--with-virtualchroot --with-diraliases \
--build=${CHOST} ${myconf} || die "configure failed"
emake || die "compile problem"
}
src_install() {
make \
prefix=${D}/usr \
mandir=${D}/usr/share/man \
install || die
dodoc AUTHORS CONTACT COPYING ChangeLog
dodoc FAQ HISTORY INSTALL README* NEWS
mkdir -p ${D}/etc
cp ${FILESDIR}/ftpusers ${D}/etc/ftpusers
mkdir -p ${D}/etc/conf.d
cp ${FILESDIR}/pure-ftpd.conf_d ${D}/etc/conf.d/pure-ftpd
if [ "`use pam`" ] ; then
insinto /etc/pam.d ; doins pam/{ftplockout,pure-ftpd}
fi
mkdir -p ${D}/etc/init.d
cp ${FILESDIR}/pure-ftpd.rc6 ${D}/etc/init.d/pure-ftpd
chmod 755 ${D}/etc/init.d/pure-ftpd
}
|