summaryrefslogtreecommitdiff
path: root/net-misc/telnet-bsd/telnet-bsd-1.2-r1.ebuild
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2021-12-05 02:47:11 +0000
committerV3n3RiX <venerix@koprulu.sector>2021-12-05 02:47:11 +0000
commit2771f79232c273bc2a57d23bf335dd81ccf6af28 (patch)
treec8af0fd04194aed03cf067d44e53c7edd3e9ab84 /net-misc/telnet-bsd/telnet-bsd-1.2-r1.ebuild
parente9d044d4b9b71200a96adfa280848858c0f468c9 (diff)
gentoo resync : 05.12.2021
Diffstat (limited to 'net-misc/telnet-bsd/telnet-bsd-1.2-r1.ebuild')
-rw-r--r--net-misc/telnet-bsd/telnet-bsd-1.2-r1.ebuild49
1 files changed, 0 insertions, 49 deletions
diff --git a/net-misc/telnet-bsd/telnet-bsd-1.2-r1.ebuild b/net-misc/telnet-bsd/telnet-bsd-1.2-r1.ebuild
deleted file mode 100644
index d9185075752c..000000000000
--- a/net-misc/telnet-bsd/telnet-bsd-1.2-r1.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit autotools epatch 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:="
-DEPEND="${RDEPEND}
- !net-misc/netkit-telnetd
- xinetd? ( sys-apps/xinetd )
- virtual/pkgconfig"
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-fbsd.patch
- epatch "${FILESDIR}"/${PN}-1.2-format-security.patch
- eaclocal
- eautoreconf
-}
-
-src_configure() {
- # FreeBSD doesn't seem to support PIE neither does hppa
- if use kernel_FreeBSD; then
- export libc_cv_fpie="no"
- fi
-
- econf
- emake LIBS="$("$(tc-getPKG_CONFIG)" --libs ncurses)"
-}
-
-src_install() {
- emake DESTDIR="${D}" install
-
- if use xinetd ; then
- insinto /etc/xinetd.d
- newins "${FILESDIR}"/telnetd.xinetd telnetd
- fi
-
- dodoc README THANKS NEWS AUTHORS ChangeLog INSTALL
-}