summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2015-04-29 20:27:15 +0000
committerManuel Rüger <mrueg@gentoo.org>2015-04-29 20:27:15 +0000
commite50e67a59b60835dd6a1134cea311e5baa74859e (patch)
tree3136247ae55bbefe4a51f3a9774331467bc94465 /net-ftp/netkit-ftpd
parentRemove old. (diff)
downloadgentoo-2-e50e67a59b60835dd6a1134cea311e5baa74859e.tar.gz
gentoo-2-e50e67a59b60835dd6a1134cea311e5baa74859e.tar.bz2
gentoo-2-e50e67a59b60835dd6a1134cea311e5baa74859e.zip
Remove old.
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'net-ftp/netkit-ftpd')
-rw-r--r--net-ftp/netkit-ftpd/ChangeLog7
-rw-r--r--net-ftp/netkit-ftpd/netkit-ftpd-0.17-r7.ebuild59
2 files changed, 5 insertions, 61 deletions
diff --git a/net-ftp/netkit-ftpd/ChangeLog b/net-ftp/netkit-ftpd/ChangeLog
index 71566a301d20..dbe4f59c3bca 100644
--- a/net-ftp/netkit-ftpd/ChangeLog
+++ b/net-ftp/netkit-ftpd/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-ftp/netkit-ftpd
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-ftp/netkit-ftpd/ChangeLog,v 1.24 2012/12/06 20:20:23 ulm Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-ftp/netkit-ftpd/ChangeLog,v 1.25 2015/04/29 20:27:15 mrueg Exp $
+
+ 29 Apr 2015; Manuel Rüger <mrueg@gentoo.org> -netkit-ftpd-0.17-r7.ebuild:
+ Remove old.
06 Dec 2012; Ulrich Müller <ulm@gentoo.org> netkit-ftpd-0.17-r7.ebuild,
netkit-ftpd-0.17-r8.ebuild:
diff --git a/net-ftp/netkit-ftpd/netkit-ftpd-0.17-r7.ebuild b/net-ftp/netkit-ftpd/netkit-ftpd-0.17-r7.ebuild
deleted file mode 100644
index c5162a260cc0..000000000000
--- a/net-ftp/netkit-ftpd/netkit-ftpd-0.17-r7.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-ftp/netkit-ftpd/netkit-ftpd-0.17-r7.ebuild,v 1.12 2012/12/06 20:20:23 ulm Exp $
-
-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 )"
-RDEPEND="${DEPEND}
- virtual/inetd
- !www-servers/publicfile"
-
-S=${WORKDIR}/${MY_P}
-
-src_unpack() {
- unpack ${MY_P}.tar.gz
- cd "${S}"
- use ssl && epatch "${DISTDIR}"/${MY_P}-ssl.patch "${FILESDIR}"/${P}-cleanup-ssl.patch
- 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
- use ssl && epatch "${FILESDIR}"/${P}-fclose-CVE-2007-6263.patch #199206
-}
-
-src_compile() {
- tc-export CC
- ./configure --prefix=/usr || die "configure failed"
- emake || die "parallel make failed"
-}
-
-src_install() {
- dobin ftpd/ftpd || die
- 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
-}