summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2022-08-28 23:54:32 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2022-08-29 17:15:20 +0200
commit14430e3a807aa448385a693d37b3115b27593766 (patch)
tree6a306ce1cfbe9a77116c9365d74f404627da2b9d /net-misc
parentnet-libs/libmediawiki: drop 5.37.0-r1 (diff)
downloadgentoo-14430e3a807aa448385a693d37b3115b27593766.tar.gz
gentoo-14430e3a807aa448385a693d37b3115b27593766.tar.bz2
gentoo-14430e3a807aa448385a693d37b3115b27593766.zip
net-misc/netkit-telnetd: drop 0.17-r12, EAPI-6--
Closes: https://bugs.gentoo.org/857222 Closes: https://github.com/gentoo/gentoo/pull/27056 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'net-misc')
-rw-r--r--net-misc/netkit-telnetd/Manifest1
-rw-r--r--net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild89
2 files changed, 0 insertions, 90 deletions
diff --git a/net-misc/netkit-telnetd/Manifest b/net-misc/netkit-telnetd/Manifest
index 25a5c9106043..a3751905f6d4 100644
--- a/net-misc/netkit-telnetd/Manifest
+++ b/net-misc/netkit-telnetd/Manifest
@@ -1,3 +1,2 @@
DIST netkit-telnet-0.17.tar.gz 133749 BLAKE2B 0eef225adeb0dd332ffd9cce0285213e6aa89f04263fb37e3dac35462492732265b2c29bd2a86277e39e0ad55267ff1a150f1140823c91d44c29cf6a20df8e7e SHA512 e2cfabed12326af5e288def1821353eacffb4586008263dcd1bed1a9dd9d8548e51e68d7ede58ea75927783ba534ea8807ec722271843a77146f064f3d826dd3
-DIST netkit-telnet_0.17-41.debian.tar.xz 36592 BLAKE2B 6db35c25e14b219c15c4dd180f0dab064e5b101b42f29e7b71d99f797d22a51b376e6de148cf83fa479039f0ecbc811ecc36953dd89ae11f079b4ed42690d18f SHA512 4de0d51c6cc3c9113b38c9ab76553d22294a02a86d2e02a0481bdad77887782902d41f99eb5dd268bee175ebee5489b3e9871012234a7480a431ef47015cdf5c
DIST netkit-telnet_0.17-42.debian.tar.xz 36068 BLAKE2B 393460c0e7a688c2c200e039ef1f462ecef0eba842982c64563325966148ee659ad1a86a8beea16046d5c1513c426d295787dc75b67f11201cdb091ec523a62a SHA512 0fa374bb4d9feff3a4cc84f7a2a9dcdacfdd22e5da9bcf253199d2e886d01da2cf5034820915ffbf50362814c3ce65ab1b6518e35e01b07c43839810fa3f8459
diff --git a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild
deleted file mode 100644
index e88e6c213936..000000000000
--- a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild
+++ /dev/null
@@ -1,89 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit toolchain-funcs
-
-PATCHLEVEL=41
-DESCRIPTION="Standard Linux telnet client and server"
-#old HOMEPAGE="ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/"
-# This might be the best HOMEPAGE now?
-HOMEPAGE="https://launchpad.net/netkit-telnet"
-# http://packages.debian.org/stablesource/netkit-telnet
-# http://packages.debian.org/testing/source/netkit-telnet
-# No upstream mirror exists anymore?
-# old ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/netkit-telnet-${PV}.tar.gz
-SRC_URI="mirror://gentoo/netkit-telnet-${PV}.tar.gz
- mirror://debian/pool/main/n/netkit-telnet/netkit-telnet_0.17-${PATCHLEVEL}.debian.tar.xz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86"
-IUSE=""
-
-DEPEND=">=sys-libs/ncurses-5.2:=
- !net-misc/telnet-bsd"
-RDEPEND="${DEPEND}"
-
-S=${WORKDIR}/netkit-telnet-${PV}
-
-src_prepare() {
- # Patch: [0]
- # Gentoo used to lack a maintainer for this package.
- # A security problem arose. While reviewing our options for how
- # should we proceed with the security bug we decided it would be
- # better to just stay in sync with debian's own netkit-telnet
- # package. Lots of bug fixes by them over time which were not in
- # our telnetd.
- EPATCH_FORCE="yes" EPATCH_SUFFIX="diff" eapply "${WORKDIR}/debian/patches"
-
- # Patch: [1]
- # after the deb patch we need to add a small patch that defines
- # gnu source. This is needed for gcc-3.4.x (needs to be pushed
- # back to the deb folk?)
- eapply "${FILESDIR}/netkit-telnetd-0.17-cflags-gnu_source.patch"
-
- # Fix portability issues.
- sed -i \
- -e 's@echo -n@printf %s@' \
- configure || die
- default
-}
-
-src_configure() {
- tc-export CC CXX
-
- # Not a real autoconf script.
- ./configure --prefix=/usr || die
-
- sed -i \
- -e "s@-pipe -O2@${CFLAGS}@" \
- -e "s@^\(LDFLAGS=\).*@\1${LDFLAGS}@" \
- -e "s@-Wpointer-arith@@" \
- MCONFIG || die
-}
-
-src_compile() {
- emake
- emake -C telnetlogin
-}
-
-src_install() {
- dobin telnet/telnet
-
- dosbin telnetd/telnetd
- dosym telnetd /usr/sbin/in.telnetd
- dosbin telnetlogin/telnetlogin
- doman telnet/telnet.1
- doman telnetd/*.8
- doman telnetd/issue.net.5
- dosym telnetd.8 /usr/share/man/man8/in.telnetd.8
- doman telnetlogin/telnetlogin.8
- dodoc BUGS ChangeLog README
- dodoc "${FILESDIR}/net.issue.sample"
- newdoc telnet/README README.telnet
- newdoc telnet/TODO TODO.telnet
- insinto /etc/xinetd.d
- newins "${FILESDIR}/telnetd.xinetd" telnetd
-}