Gentoo Archives: gentoo-commits

From: Tim Harder <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-ftp/tftp-hpa/
Date: Thu, 31 Aug 2017 17:38:32
Message-Id: 1504201049.a9d65c5dad33dc18990195d3f388f787c70ab24b.radhermit@gentoo
1 commit: a9d65c5dad33dc18990195d3f388f787c70ab24b
2 Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 31 16:48:45 2017 +0000
4 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 31 17:37:29 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9d65c5d
7
8 net-ftp/tftp-hpa: remove old
9
10 net-ftp/tftp-hpa/tftp-hpa-5.2.ebuild | 47 ------------------------------------
11 1 file changed, 47 deletions(-)
12
13 diff --git a/net-ftp/tftp-hpa/tftp-hpa-5.2.ebuild b/net-ftp/tftp-hpa/tftp-hpa-5.2.ebuild
14 deleted file mode 100644
15 index 9ce0f1d2230..00000000000
16 --- a/net-ftp/tftp-hpa/tftp-hpa-5.2.ebuild
17 +++ /dev/null
18 @@ -1,47 +0,0 @@
19 -# Copyright 1999-2014 Gentoo Foundation
20 -# Distributed under the terms of the GNU General Public License v2
21 -
22 -EAPI="4"
23 -
24 -inherit toolchain-funcs
25 -
26 -DESCRIPTION="port of the OpenBSD TFTP server"
27 -HOMEPAGE="https://www.kernel.org/pub/software/network/tftp/"
28 -SRC_URI="mirror://kernel/software/network/tftp/${PN}/${P}.tar.xz"
29 -
30 -LICENSE="BSD-4"
31 -SLOT="0"
32 -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd ~ppc-macos"
33 -IUSE="ipv6 readline selinux tcpd"
34 -
35 -RDEPEND="selinux? ( sec-policy/selinux-tftp )
36 - readline? ( sys-libs/readline )
37 - tcpd? ( sys-apps/tcp-wrappers )
38 - !net-ftp/atftp
39 - !net-ftp/netkit-tftp"
40 -DEPEND="${RDEPEND}
41 - app-arch/xz-utils"
42 -
43 -src_prepare() {
44 - sed -i "/^AR/s:ar:$(tc-getAR):" MCONFIG.in || die
45 -}
46 -
47 -src_configure() {
48 - econf \
49 - $(use_with ipv6) \
50 - $(use_with tcpd tcpwrappers) \
51 - $(use_with readline)
52 -}
53 -
54 -src_install() {
55 - emake INSTALLROOT="${D}" install
56 - dodoc README* CHANGES tftpd/sample.rules
57 -
58 - # iputils installs this
59 - rm "${ED}"/usr/share/man/man8/tftpd.8 || die
60 -
61 - newconfd "${FILESDIR}"/in.tftpd.confd-0.44 in.tftpd
62 - newinitd "${FILESDIR}"/in.tftpd.rc6 in.tftpd
63 - insinto /etc/xinetd.d
64 - newins "${FILESDIR}"/tftp.xinetd tftp
65 -}