diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2003-02-18 09:44:01 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2003-02-18 09:44:01 +0000 |
commit | 08eb9ce8d640a5ba582143d644f4e7840ee6f819 (patch) | |
tree | e1cf083c22df3b5d1048b3d3ab3d4791631f276d | |
parent | If description is set... don't overwrite it... (diff) | |
download | historical-08eb9ce8d640a5ba582143d644f4e7840ee6f819.tar.gz historical-08eb9ce8d640a5ba582143d644f4e7840ee6f819.tar.bz2 historical-08eb9ce8d640a5ba582143d644f4e7840ee6f819.zip |
filter -fPIC and use epatch
-rw-r--r-- | net-ftp/vsftpd/ChangeLog | 5 | ||||
-rw-r--r-- | net-ftp/vsftpd/vsftpd-1.1.3.ebuild | 22 |
2 files changed, 19 insertions, 8 deletions
diff --git a/net-ftp/vsftpd/ChangeLog b/net-ftp/vsftpd/ChangeLog index 54caba6b9f7f..14208b0708a4 100644 --- a/net-ftp/vsftpd/ChangeLog +++ b/net-ftp/vsftpd/ChangeLog @@ -1,9 +1,12 @@ # ChangeLog for net-ftp/vsftpd # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-ftp/vsftpd/ChangeLog,v 1.8 2003/02/15 16:43:43 woodchip Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-ftp/vsftpd/ChangeLog,v 1.9 2003/02/18 09:44:01 seemant Exp $ *vsftpd-1.1.3 (15 Feb 2003) + 18 Feb 2003; <root@gentoo.org> vsftpd-1.1.3.ebuild : + filter -fPIC and use epatch instead + 15 Feb 2003; Donny Davies <woodchip@gentoo.org> : Chase latest release. #12435; optional pam and tcpd support. diff --git a/net-ftp/vsftpd/vsftpd-1.1.3.ebuild b/net-ftp/vsftpd/vsftpd-1.1.3.ebuild index 3bdc8b5393b2..98c318cb8563 100644 --- a/net-ftp/vsftpd/vsftpd-1.1.3.ebuild +++ b/net-ftp/vsftpd/vsftpd-1.1.3.ebuild @@ -1,22 +1,30 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-ftp/vsftpd/vsftpd-1.1.3.ebuild,v 1.2 2003/02/15 17:31:31 woodchip Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-ftp/vsftpd/vsftpd-1.1.3.ebuild,v 1.3 2003/02/18 09:44:01 seemant Exp $ + +inherit flag-o-matic eutils IUSE="pam tcpd" 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="pam? ( >=sys-libs/pam-0.75 ) tcpd? ( >=sys-apps/tcp-wrappers-7.6 )" -RDEPEND="${DEPEND} || ( sys-apps/xinetd >=sys-apps/ucspi-tcp-0.88-r3 )" +SRC_URI="ftp://vsftpd.beasts.org/users/cevans/${P}.tar.gz" + SLOT="0" LICENSE="GPL-2" KEYWORDS="~x86 ~sparc" +DEPEND="pam? ( >=sys-libs/pam-0.75 ) + tcpd? ( >=sys-apps/tcp-wrappers-7.6 )" + +RDEPEND="${DEPEND} || ( sys-apps/xinetd >=sys-apps/ucspi-tcp-0.88-r3 )" + +filter-flags "-fPIC" + src_unpack() { - unpack ${A} || die - cd ${S} || die - patch -p1 <${FILESDIR}/${P}-gentoo.diff || die + unpack ${A} + cd ${S} + epatch ${FILESDIR}/${P}-gentoo.diff use tcpd && echo '#define VSF_BUILD_TCPWRAPPERS' >> builddefs.h } |