diff options
author | Sam James <sam@gentoo.org> | 2023-06-30 14:11:04 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-06-30 14:20:42 +0100 |
commit | 5d090eed5b9438945112e06854a074ef59e646b0 (patch) | |
tree | 8c5bff56cd8c6b73d4bb3858ee13cbd7e04bcd54 /net-misc/telnet-bsd | |
parent | dev-libs/rinutils: cleanup *DEPEND (diff) | |
download | gentoo-5d090eed5b9438945112e06854a074ef59e646b0.tar.gz gentoo-5d090eed5b9438945112e06854a074ef59e646b0.tar.bz2 gentoo-5d090eed5b9438945112e06854a074ef59e646b0.zip |
net-misc/telnet-bsd: drop 1.2-r2
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-misc/telnet-bsd')
-rw-r--r-- | net-misc/telnet-bsd/telnet-bsd-1.2-r2.ebuild | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/net-misc/telnet-bsd/telnet-bsd-1.2-r2.ebuild b/net-misc/telnet-bsd/telnet-bsd-1.2-r2.ebuild deleted file mode 100644 index 8104f65f02de..000000000000 --- a/net-misc/telnet-bsd/telnet-bsd-1.2-r2.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit autotools toolchain-funcs - -DESCRIPTION="Telnet and telnetd ported from OpenBSD with IPv6 support" -HOMEPAGE="ftp://ftp.suse.com/pub/people/kukuk/ipv6/" -SRC_URI="https://dev.gentoo.org/~mschiff/distfiles/${P}.tar.bz2" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos" -IUSE="nls xinetd" - -RDEPEND=" - sys-libs/ncurses:= - !net-misc/netkit-telnetd -" -RDEPEND="${DEPEND} - xinetd? ( sys-apps/xinetd ) - !net-misc/netkit-telnetd -" -BDEPEND="virtual/pkgconfig" - -PATCHES=( - "${FILESDIR}"/${P}-fbsd.patch - "${FILESDIR}"/${PN}-1.2-format-security.patch -) - -src_prepare() { - default - eautoreconf -} - -src_compile() { - emake LIBS="$("$(tc-getPKG_CONFIG)" --libs ncurses)" -} - -src_install() { - default - - if use xinetd ; then - insinto /etc/xinetd.d - newins "${FILESDIR}"/telnetd.xinetd telnetd - fi -} |