diff options
author | Patrice Clement <monsieurp@gentoo.org> | 2016-04-18 07:57:36 +0000 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2016-04-18 07:59:16 +0000 |
commit | ccfce9c458f9759f3c75ce10fbde2027d8112968 (patch) | |
tree | 76517f7f6dcbd1545fdee5d4fbb474f0bc9d4616 /net-ftp/netkit-ftpd/netkit-ftpd-0.17-r9.ebuild | |
parent | net-ftp/netkit-ftpd: Clean up old. (diff) | |
download | gentoo-ccfce9c458f9759f3c75ce10fbde2027d8112968.tar.gz gentoo-ccfce9c458f9759f3c75ce10fbde2027d8112968.tar.bz2 gentoo-ccfce9c458f9759f3c75ce10fbde2027d8112968.zip |
net-ftp/netkit-ftpd: EAPI 6 bump.
--straight-to-stable because r8 is way too old
and was removed (EAPI 0).
Package-Manager: portage-2.2.26
Diffstat (limited to 'net-ftp/netkit-ftpd/netkit-ftpd-0.17-r9.ebuild')
-rw-r--r-- | net-ftp/netkit-ftpd/netkit-ftpd-0.17-r9.ebuild | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/net-ftp/netkit-ftpd/netkit-ftpd-0.17-r9.ebuild b/net-ftp/netkit-ftpd/netkit-ftpd-0.17-r9.ebuild new file mode 100644 index 000000000000..7fb0443e6639 --- /dev/null +++ b/net-ftp/netkit-ftpd/netkit-ftpd-0.17-r9.ebuild @@ -0,0 +1,70 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit eutils ssl-cert toolchain-funcs + +MY_P="linux-ftpd-${PV}" +DESCRIPTION="The netkit FTP server with optional SSL support" +HOMEPAGE="http://www.hcs.harvard.edu/~dholland/computers/netkit.html" +SRC_URI="ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/${MY_P}.tar.gz + mirror://gentoo/${MY_P}-ssl.patch" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="alpha amd64 arm ia64 ppc ~ppc64 s390 sh sparc x86" +IUSE="ssl" + +DEPEND="ssl? ( dev-libs/openssl:0= )" +RDEPEND="${DEPEND} + virtual/inetd + !www-servers/publicfile" + +S=${WORKDIR}/${MY_P} + +src_prepare() { + default + + cd "${S}" || die + if use ssl; then + epatch "${DISTDIR}"/${MY_P}-ssl.patch + epatch "${FILESDIR}"/${P}-cleanup-ssl.patch + epatch "${FILESDIR}"/${P}-fclose-CVE-2007-6263.patch #199206 + fi + + epatch "${FILESDIR}"/${P}-cleanup.patch + epatch "${FILESDIR}"/${P}-build.patch + epatch "${FILESDIR}"/${P}-shadowfix.patch + epatch "${FILESDIR}"/${P}-gcc41.patch + epatch "${FILESDIR}"/${P}-setguid.patch + epatch "${FILESDIR}"/${P}-cross.patch + epatch "${FILESDIR}"/${P}-CVE-2008-4247.patch #239047 +} + +src_configure() { + tc-export CC + ./configure --prefix=/usr || die +} + +src_compile() { + emake +} + +src_install() { + dobin ftpd/ftpd + doman ftpd/ftpd.8 + dodoc README ChangeLog + insinto /etc/xinetd.d + newins "${FILESDIR}"/ftp.xinetd ftp +} + +pkg_postinst() { + if use ssl; then + install_cert /etc/ssl/certs/ftpd + elog "In order to start the server with SSL support" + elog "You need a certificate /etc/ssl/certs/ftpd.pem." + elog "A temporary certificiate has been created." + fi +} |