diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2021-04-21 21:05:06 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2021-04-30 21:01:53 +0200 |
commit | bd2322d1d7187d3adfe318600e1e57ad352e87c9 (patch) | |
tree | b44143fe6a160f98b061771d8ea86d00ae34d98e /net-ftp/tftp-hpa | |
parent | net-vpn/openvpn: update live ebuild (diff) | |
download | gentoo-bd2322d1d7187d3adfe318600e1e57ad352e87c9.tar.gz gentoo-bd2322d1d7187d3adfe318600e1e57ad352e87c9.tar.bz2 gentoo-bd2322d1d7187d3adfe318600e1e57ad352e87c9.zip |
net-ftp/tftp-hpa: Drop 5.2-r1, EAPI5--
Closes: https://bugs.gentoo.org/783723
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'net-ftp/tftp-hpa')
-rw-r--r-- | net-ftp/tftp-hpa/tftp-hpa-5.2-r1.ebuild | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/net-ftp/tftp-hpa/tftp-hpa-5.2-r1.ebuild b/net-ftp/tftp-hpa/tftp-hpa-5.2-r1.ebuild deleted file mode 100644 index b9c900575cf3..000000000000 --- a/net-ftp/tftp-hpa/tftp-hpa-5.2-r1.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" - -inherit systemd epatch toolchain-funcs - -DESCRIPTION="Port of the OpenBSD TFTP server" -HOMEPAGE="https://www.kernel.org/pub/software/network/tftp/" -SRC_URI="https://www.kernel.org/pub/software/network/tftp/${PN}/${P}.tar.xz" - -LICENSE="BSD-4" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~ppc-macos" -IUSE="ipv6 readline selinux tcpd" - -CDEPEND=" - readline? ( sys-libs/readline:0= ) - tcpd? ( sys-apps/tcp-wrappers ) - !net-ftp/atftp - !net-ftp/netkit-tftp" -DEPEND="${CDEPEND} - app-arch/xz-utils" -RDEPEND="${CDEPEND} - selinux? ( sec-policy/selinux-tftp ) -" - -src_prepare() { - epatch "${FILESDIR}"/tftp-hpa-5.2-gcc-10.patch - epatch_user - - 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 - - systemd_dounit "${FILESDIR}"/tftp.service - systemd_dounit "${FILESDIR}"/tftp.socket - - insinto /etc/xinetd.d - newins "${FILESDIR}"/tftp.xinetd tftp -} |