diff options
-rw-r--r-- | net-ftp/pure-ftpd/ChangeLog | 5 | ||||
-rw-r--r-- | net-ftp/pure-ftpd/Manifest | 2 | ||||
-rw-r--r-- | net-ftp/pure-ftpd/files/digest-pure-ftpd-1.0.20 | 1 | ||||
-rw-r--r-- | net-ftp/pure-ftpd/pure-ftpd-1.0.20.ebuild | 80 |
4 files changed, 87 insertions, 1 deletions
diff --git a/net-ftp/pure-ftpd/ChangeLog b/net-ftp/pure-ftpd/ChangeLog index fe7375d59b8b..42c1443767b9 100644 --- a/net-ftp/pure-ftpd/ChangeLog +++ b/net-ftp/pure-ftpd/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-ftp/pure-ftpd # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-ftp/pure-ftpd/ChangeLog,v 1.36 2004/07/15 18:15:21 tgall Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-ftp/pure-ftpd/ChangeLog,v 1.37 2004/08/09 17:25:31 humpback Exp $ + + 09 Aug 2004; Gustavo Felisberto <humpback@gentoo.org>; : + Version bump tp 1.0.20, closes bug #59355. 15 Jul 2004; Tom Gall <tgall@gentoo.org> pure-ftpd-1.0.18-r1.ebuild: stable on ppc64, bug #55407 diff --git a/net-ftp/pure-ftpd/Manifest b/net-ftp/pure-ftpd/Manifest index cd8efcdad10a..d10af9924742 100644 --- a/net-ftp/pure-ftpd/Manifest +++ b/net-ftp/pure-ftpd/Manifest @@ -5,6 +5,7 @@ MD5 0e9a7416fd0d7f5c82850c7814a2b36e pure-ftpd-1.0.16c.ebuild 2247 MD5 f0f63cfcf24a058f13329e08b299bdf7 pure-ftpd-1.0.17a.ebuild 2254 MD5 8833765ab4ada569c253196e5dea5c03 pure-ftpd-1.0.18.ebuild 2308 MD5 eb817063f1ab88f67eacb2eb42366e25 pure-ftpd-1.0.18-r1.ebuild 2347 +MD5 df97fba80b2b812ab2ec446e371108da pure-ftpd-1.0.20.ebuild 2270 MD5 0e2de54a63d8f1c4a44d15f95e38b044 files/digest-pure-ftpd-1.0.16b 70 MD5 f1a1d4817df4539dc199812979aac307 files/digest-pure-ftpd-1.0.16c 70 MD5 48f295e6b7a19f3b4da8388a21e2e435 files/digest-pure-ftpd-1.0.17a 70 @@ -16,3 +17,4 @@ MD5 db2ba34b2491a9fb5042f78c029f6386 files/pure-ftpd.rc6-r1 741 MD5 86b7638f0ed01530fff30204ba6b5ce7 files/pure-ftpd.xinetd 238 MD5 d774a3f199df590cbbaa83ac80dfa93b files/digest-pure-ftpd-1.0.18-r1 69 MD5 f2a93e08e2a874ad4776e24ab3e0d9a7 files/pure-ftpd-1.0.18-fcntl.patch 1220 +MD5 0c2b784d8fe62db6dae7e77e6ac5a602 files/digest-pure-ftpd-1.0.20 69 diff --git a/net-ftp/pure-ftpd/files/digest-pure-ftpd-1.0.20 b/net-ftp/pure-ftpd/files/digest-pure-ftpd-1.0.20 new file mode 100644 index 000000000000..4336bc9e524f --- /dev/null +++ b/net-ftp/pure-ftpd/files/digest-pure-ftpd-1.0.20 @@ -0,0 +1 @@ +MD5 e928e9e15adf6b52bfe6183fdad20144 pure-ftpd-1.0.20.tar.bz2 470915 diff --git a/net-ftp/pure-ftpd/pure-ftpd-1.0.20.ebuild b/net-ftp/pure-ftpd/pure-ftpd-1.0.20.ebuild new file mode 100644 index 000000000000..228e77c9f770 --- /dev/null +++ b/net-ftp/pure-ftpd/pure-ftpd-1.0.20.ebuild @@ -0,0 +1,80 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-ftp/pure-ftpd/pure-ftpd-1.0.20.ebuild,v 1.1 2004/08/09 17:25:31 humpback Exp $ + +inherit eutils + +DESCRIPTION="fast, production-quality, standard-conformant FTP server" +HOMEPAGE="http://www.pureftpd.org/" +SRC_URI="ftp://ftp.pureftpd.org/pub/pure-ftpd/releases/${P}.tar.bz2" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa ~amd64 ~ia64" +IUSE="pam mysql postgres ldap ssl" + +DEPEND="virtual/libc + pam? ( >=sys-libs/pam-0.75 ) + mysql? ( >=dev-db/mysql-3* ) + postgres? ( >=dev-db/postgresql-7.2.2 ) + ldap? ( >=net-nds/openldap-2.0.25 ) + ssl? ( >=dev-libs/openssl-0.9.6g )" + +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" + use ssl && myconf="${myconf} --with-tls" + + econf \ + --with-altlog --with-extauth \ + --with-puredb --with-cookie \ + --with-throttling --with-ratios \ + --with-quotas --with-ftpwho \ + --with-uploadscript --with-virtualhosts \ + --with-virtualchroot --with-diraliases \ + --with-peruserlimits --with-largefile \ + ${myconf} || die "econf failed" + + emake || die "compile problem" +} + +src_install() { + einstall || die + + dodoc AUTHORS CONTACT ChangeLog FAQ HISTORY INSTALL README* NEWS + + use pam && cp ${FILESDIR}/ftpusers ${D}/etc/ftpusers + use pam && insinto /etc/pam.d && doins pam/pure-ftpd + + dodir /etc/{conf.d,init.d} + + cp ${FILESDIR}/pure-ftpd.conf_d ${D}/etc/conf.d/pure-ftpd + + exeopts -m 0744 + exeinto /etc/init.d + newexe ${FILESDIR}/pure-ftpd.rc6-r1 pure-ftpd + + insopts -m 0644 + insinto /etc/xinetd.d + newins ${FILESDIR}/pure-ftpd.xinetd pure-ftpd + + if use ldap ; then + dodir /etc/openldap/schema + insinto /etc/openldap/schema + doins pureftpd.schema + insinto /etc/openldap + doins pureftpd-ldap.conf + fi +} + +pkg_postinst() { + einfo "Before starting Pure-FTPd, you have to edit the /etc/conf.d/pure-ftpd file." + echo + ewarn "It's *really* important to read the README provided with Pure-FTPd." + ewarn "Check out - http://www.pureftpd.org/README" + ewarn "And for SSL/TLS help - http://www.pureftpd.org/README.TLS" +} |