diff options
author | Tim Harder <radhermit@gentoo.org> | 2017-08-31 12:48:45 -0400 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2017-08-31 13:37:29 -0400 |
commit | a9d65c5dad33dc18990195d3f388f787c70ab24b (patch) | |
tree | 95277ff3a1f9d1494a813379283c35ad636d9bf7 /net-ftp | |
parent | app-text/restview: remove old (diff) | |
download | gentoo-a9d65c5dad33dc18990195d3f388f787c70ab24b.tar.gz gentoo-a9d65c5dad33dc18990195d3f388f787c70ab24b.tar.bz2 gentoo-a9d65c5dad33dc18990195d3f388f787c70ab24b.zip |
net-ftp/tftp-hpa: remove old
Diffstat (limited to 'net-ftp')
-rw-r--r-- | net-ftp/tftp-hpa/tftp-hpa-5.2.ebuild | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/net-ftp/tftp-hpa/tftp-hpa-5.2.ebuild b/net-ftp/tftp-hpa/tftp-hpa-5.2.ebuild deleted file mode 100644 index 9ce0f1d2230a..000000000000 --- a/net-ftp/tftp-hpa/tftp-hpa-5.2.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="4" - -inherit toolchain-funcs - -DESCRIPTION="port of the OpenBSD TFTP server" -HOMEPAGE="https://www.kernel.org/pub/software/network/tftp/" -SRC_URI="mirror://kernel/software/network/tftp/${PN}/${P}.tar.xz" - -LICENSE="BSD-4" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd ~ppc-macos" -IUSE="ipv6 readline selinux tcpd" - -RDEPEND="selinux? ( sec-policy/selinux-tftp ) - readline? ( sys-libs/readline ) - tcpd? ( sys-apps/tcp-wrappers ) - !net-ftp/atftp - !net-ftp/netkit-tftp" -DEPEND="${RDEPEND} - app-arch/xz-utils" - -src_prepare() { - sed -i "/^AR/s:ar:$(tc-getAR):" MCONFIG.in || die -} - -src_configure() { - econf \ - $(use_with ipv6) \ - $(use_with tcpd tcpwrappers) \ - $(use_with readline) -} - -src_install() { - emake INSTALLROOT="${D}" install - dodoc README* CHANGES tftpd/sample.rules - - # iputils installs this - rm "${ED}"/usr/share/man/man8/tftpd.8 || die - - newconfd "${FILESDIR}"/in.tftpd.confd-0.44 in.tftpd - newinitd "${FILESDIR}"/in.tftpd.rc6 in.tftpd - insinto /etc/xinetd.d - newins "${FILESDIR}"/tftp.xinetd tftp -} |