commit:     d568abee9884d4593c73b69426178bca194456bc
Author:     Markos Chandras <hwoarang <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 29 10:20:45 2015 +0000
Commit:     Markos Chandras <hwoarang <AT> gentoo <DOT> org>
CommitDate: Sat Aug 29 10:20:45 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d568abee

net-ftp/vsftpd: Version bump

Package-Manager: portage-2.2.20.1

 net-ftp/vsftpd/Manifest            |   1 +
 net-ftp/vsftpd/vsftpd-3.0.3.ebuild | 132 +++++++++++++++++++++++++++++++++++++
 2 files changed, 133 insertions(+)

diff --git a/net-ftp/vsftpd/Manifest b/net-ftp/vsftpd/Manifest
index a455d55..3966c05 100644
--- a/net-ftp/vsftpd/Manifest
+++ b/net-ftp/vsftpd/Manifest
@@ -1,2 +1,3 @@
 DIST vsftpd-2.3.5.tar.gz 187691 SHA256 
d87ee2987df8f03e1dbe294905f7907b2798deb89c67ca965f6e2f60879e54f1 SHA512 
7d58d601c4a14cf16c074f238d557fd28e080d7573a1257f742e43bf97cff455b6bf083d8e3594cc7f8865f9485b307b692e91c17426c7fed11af9e4b41a0643
 WHIRLPOOL 
2dba4ae125bbd66522f58ce4ffc9d5be8ea2a84876fe6751593b82aa2c3e5fe1e1ed076c1c09268054f7ea6831683a2be0dd4e269e321d572d859d0ae2535406
 DIST vsftpd-3.0.2.tar.gz 192808 SHA256 
be46f0e2c5528fe021fafc8dab1ecfea0c1f183063a06977f8537fcd0b195e56 SHA512 
d5b978e07d8b0a623b79a531824666fb9b970ad5989a8c34c21b545b62ba07cde4bfe3d77b40a8b6e92d17890c37cae209231af8f106da3404f6548e217bd023
 WHIRLPOOL 
7a74ab478880d021f7a82ffc6ec3989617003234e30d97063760bc06baeee2ab207861b440896b926b95eed7b3d902ab96c05c1bbd23d494d9ff168f98d3404a
+DIST vsftpd-3.0.3.tar.gz 196649 SHA256 
9d4d2bf6e6e2884852ba4e69e157a2cecd68c5a7635d66a3a8cf8d898c955ef7 SHA512 
5a4410a88e72ecf6f60a60a89771bcec300c9f63c2ea83b219bdf65fd9749b9853f9579f7257205b55659aefcd5dab243eba878dbbd4f0ff8532dd6e60884df7
 WHIRLPOOL 
014b13a1031d89a12412fb1abc808c8d62f474b84e9d1699ec789e99c9b9ec7f4538e7504caa810c6b77dcccea8fc0e32e9bb3ac5ffc8e2e9a29f67b69ddc3cb

diff --git a/net-ftp/vsftpd/vsftpd-3.0.3.ebuild 
b/net-ftp/vsftpd/vsftpd-3.0.3.ebuild
new file mode 100644
index 0000000..916b4ac
--- /dev/null
+++ b/net-ftp/vsftpd/vsftpd-3.0.3.ebuild
@@ -0,0 +1,132 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="4"
+
+inherit eutils systemd toolchain-funcs
+
+DESCRIPTION="Very Secure FTP Daemon written with speed, size and security in 
mind"
+HOMEPAGE="http://vsftpd.beasts.org/";
+SRC_URI="http://security.appspot.com/downloads/${P}.tar.gz";
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~x86-fbsd"
+IUSE="caps pam tcpd ssl selinux xinetd"
+
+DEPEND="caps? ( >=sys-libs/libcap-2 )
+       pam? ( virtual/pam )
+       tcpd? ( >=sys-apps/tcp-wrappers-7.6 )
+       ssl? ( >=dev-libs/openssl-0.9.7d )"
+RDEPEND="${DEPEND}
+       net-ftp/ftpbase
+       selinux? ( sec-policy/selinux-ftp )
+       xinetd? ( sys-apps/xinetd )"
+
+src_prepare() {
+       # kerberos patch. bug #335980
+       epatch "${FILESDIR}/${PN}-2.3.2-kerberos.patch"
+
+       # Patch the source, config and the manpage to use /etc/vsftpd/
+       epatch "${FILESDIR}/${PN}-2.3.5-gentoo.patch"
+
+       # Fix building without the libcap
+       epatch "${FILESDIR}/${PN}-2.1.0-caps.patch"
+
+       # Fix building on alpha. Bug #405829
+       epatch "${FILESDIR}/${PN}-3.0.2-alpha.patch"
+
+       # Configure vsftpd build defaults
+       use tcpd && echo "#define VSF_BUILD_TCPWRAPPERS" >> builddefs.h
+       use ssl && echo "#define VSF_BUILD_SSL" >> builddefs.h
+       use pam || echo "#undef VSF_BUILD_PAM" >> builddefs.h
+
+       # Ensure that we don't link against libcap unless asked
+       if ! use caps ; then
+               sed -i '/^#define VSF_SYSDEP_HAVE_LIBCAP$/ d' sysdeputil.c || 
die
+               epatch "${FILESDIR}"/${PN}-2.2.0-dont-link-caps.patch
+       fi
+
+       # Let portage control stripping
+       sed -i '/^LINK[[:space:]]*=[[:space:]]*/ s/-Wl,-s//' Makefile || die
+
+       #Bug #335977
+       epatch "${FILESDIR}"/${PN}-3.0.0-Makefile.patch
+
+       #Bug #450536
+       epatch "${FILESDIR}"/${PN}-3.0.2-remove-legacy-cap.patch
+
+       epatch_user
+}
+
+src_compile() {
+       # Override LIBS variable. Bug #508192
+       LIBS=
+       use caps && LIBS+=" -lcap"
+       use pam && LIBS+=" -lpam"
+       use tcpd && LIBS+=" -lwrap"
+       use ssl && LIBS+=" -lssl -lcrypto"
+
+       CFLAGS="${CFLAGS}" \
+       CC="$(tc-getCC)" \
+       emake LIBS="${LIBS}"
+}
+
+src_install() {
+       into /usr
+       doman ${PN}.conf.5 ${PN}.8
+       dosbin ${PN} || die "disbin failed"
+
+       dodoc AUDIT BENCHMARKS BUGS Changelog FAQ \
+               README README.security REWARD SIZE \
+               SPEED TODO TUNING || die "dodoc failed"
+       newdoc ${PN}.conf ${PN}.conf.example
+
+       docinto security
+       dodoc SECURITY/* || die "dodoc failed"
+
+       insinto "/usr/share/doc/${PF}/examples"
+       doins -r EXAMPLE/* || die "doins faileD"
+
+       insinto /etc/${PN}
+       newins ${PN}.conf{,.example}
+
+       insinto /etc/logrotate.d
+       newins "${FILESDIR}/${PN}.logrotate" ${PN}
+
+       if use xinetd ; then
+               insinto /etc/xinetd.d
+               newins "${FILESDIR}/${PN}.xinetd" ${PN}
+       fi
+
+       newinitd "${FILESDIR}/${PN}.init" ${PN}
+
+       keepdir /usr/share/${PN}/empty
+
+       exeinto /usr/libexec
+       doexe "${FILESDIR}/vsftpd-checkconfig.sh"
+       systemd_dounit "${FILESDIR}/${PN}.service"
+       systemd_newunit "${FILESDIR}/${PN}_at.service" "${PN}@.service"
+       systemd_dounit "${FILESDIR}/${PN}.socket"
+}
+
+pkg_preinst() {
+       # If we use xinetd, then we set listen=NO
+       # so that our default config works under xinetd - fixes #78347
+       if use xinetd ; then
+               sed -i 's/listen=YES/listen=NO/g' 
"${D}"/etc/${PN}/${PN}.conf.example
+       fi
+}
+
+pkg_postinst() {
+       einfo "vsftpd openRC init script can now be multiplexed."
+       einfo "The default init script forces /etc/vsftpd/vsftpd.conf to exist."
+       einfo "If you symlink the init script to another one, say vsftpd.foo"
+       einfo "then that uses /etc/vsftpd/foo.conf instead."
+       einfo
+       einfo "Example:"
+       einfo "   cd /etc/init.d"
+       einfo "   ln -s vsftpd vsftpd.foo"
+       einfo "You can now treat vsftpd.foo like any other service"
+}

Reply via email to