diff options
Diffstat (limited to 'net-ftp/pure-ftpd/pure-ftpd-1.0.8-r1.ebuild')
-rw-r--r-- | net-ftp/pure-ftpd/pure-ftpd-1.0.8-r1.ebuild | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/net-ftp/pure-ftpd/pure-ftpd-1.0.8-r1.ebuild b/net-ftp/pure-ftpd/pure-ftpd-1.0.8-r1.ebuild deleted file mode 100644 index f18b5799dd50..000000000000 --- a/net-ftp/pure-ftpd/pure-ftpd-1.0.8-r1.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-ftp/pure-ftpd/pure-ftpd-1.0.8-r1.ebuild,v 1.11 2003/09/07 00:12:23 msterret Exp $ - -IUSE="ldap pam postgres mysql" - -S=${WORKDIR}/${P} -HOMEPAGE="http://pureftpd.sourceforge.net/" -SRC_URI="mirror://sourceforge/pureftpd/${P}.tar.gz" -DESCRIPTION="Pure-FTPd is a fast, production-quality, standard-conformant FTP server" - -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="x86 sparc " - -DEPEND="virtual/glibc - pam? ( >=sys-libs/pam-0.75 ) - mysql? ( >=dev-db/mysql-3.23.47 ) - postgres? ( >=dev-db/postgresql-7.1.3 ) - ldap? ( >=net-nds/openldap-2.0.21 )" - -src_compile() { - - local myconf - cd ${S} - use pam && myconf="${myconf} --with-pam" - use mysql && myconf="${myconf} --with-mysql" - use postgres && myconf="${myconf} --with-pgsql" - use ldap && myconf="${myconf} --with-ldap" - - ./configure --prefix=/usr --with-altlog --with-puredb \ - --with-extauth --with-throttling --with-ratios \ - --with-quotas --with-cookie \ - --with-uploadscript --with-virtualhosts \ - --with-virtualchroot --with-diraliases --with-ftpwho \ - --host=${CHOST} ${myconf} || die - emake || die - -} - -src_install() { - - make DESTDIR=${D} install || die - - insinto /etc - doins ${FILESDIR}/ftpusers - - insinto /etc/conf.d - newins ${FILESDIR}/pure-ftpd.conf_d pure-ftpd - - exeinto /etc/init.d - newexe ${FILESDIR}/pure-ftpd.rc6 pure-ftpd -} |