diff options
author | PPed72 <paolo.pedroni@iol.it> | 2020-11-23 10:17:23 +0100 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2020-11-23 22:15:00 +0100 |
commit | 7ce6df18e33e1a063ec8497e85961b21b3921af3 (patch) | |
tree | 82657bba85f9b82b47e6ba4f87527a432f12e6f7 /net-misc/netkit-telnetd | |
parent | profiles: add new prefix macOS profiles for 10.15 and 11.0 (diff) | |
download | gentoo-7ce6df18e33e1a063ec8497e85961b21b3921af3.tar.gz gentoo-7ce6df18e33e1a063ec8497e85961b21b3921af3.tar.bz2 gentoo-7ce6df18e33e1a063ec8497e85961b21b3921af3.zip |
net-misc/netkit-telnetd: remove old.
Signed-off-by: Paolo Pedroni <paolo.pedroni@iol.it>
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Closes: https://github.com/gentoo/gentoo/pull/18372
Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
Diffstat (limited to 'net-misc/netkit-telnetd')
-rw-r--r-- | net-misc/netkit-telnetd/Manifest | 1 | ||||
-rw-r--r-- | net-misc/netkit-telnetd/netkit-telnetd-0.17-r10.ebuild | 88 |
2 files changed, 0 insertions, 89 deletions
diff --git a/net-misc/netkit-telnetd/Manifest b/net-misc/netkit-telnetd/Manifest index baf55850d147..87eda0ebbdb9 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-36.diff.gz 27226 BLAKE2B c19370f6462295bb7e8d09307121ec3356e9d1751b3ce5b7985844f54506351f633de381ffb3cd3209995c1826aaaa9ce716084742d4689d626b28aee8a3eb43 SHA512 7cd1ec5f96fcacee551700d65f62b6c217e0d9b5220a218aa60fceb3883d0754831606a247355dc2bf6486a02175b8d9b27058d6bc788de8e1b80545fdedbf9a DIST netkit-telnet_0.17-41.debian.tar.xz 36592 BLAKE2B 6db35c25e14b219c15c4dd180f0dab064e5b101b42f29e7b71d99f797d22a51b376e6de148cf83fa479039f0ecbc811ecc36953dd89ae11f079b4ed42690d18f SHA512 4de0d51c6cc3c9113b38c9ab76553d22294a02a86d2e02a0481bdad77887782902d41f99eb5dd268bee175ebee5489b3e9871012234a7480a431ef47015cdf5c diff --git a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r10.ebuild b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r10.ebuild deleted file mode 100644 index 4bbca3926ced..000000000000 --- a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r10.ebuild +++ /dev/null @@ -1,88 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" - -inherit eutils toolchain-funcs - -PATCHLEVEL=36 -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}.diff.gz" - -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 lacks a maintainer for this package right now. And 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 "${WORKDIR}"/netkit-telnet_0.17-${PATCHLEVEL}.diff - - # 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?) - epatch "${FILESDIR}"/netkit-telnetd-0.17-cflags-gnu_source.patch - - # Fix portability issues. - sed -i \ - -e 's:echo -n:printf %s:' \ - configure || die -} - -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 -} |