summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2013-02-16 12:57:00 +0000
committerPacho Ramos <pacho@gentoo.org>2013-02-16 12:57:00 +0000
commitef9e5a4ad4f4dd6c878e6f168658b58972e8a5f9 (patch)
tree7fbc78efbe899831d2262776a93c47bef7bbf60c /net-misc/netkit-telnetd
parentCleanup due bug #96436 (diff)
downloadgentoo-2-ef9e5a4ad4f4dd6c878e6f168658b58972e8a5f9.tar.gz
gentoo-2-ef9e5a4ad4f4dd6c878e6f168658b58972e8a5f9.tar.bz2
gentoo-2-ef9e5a4ad4f4dd6c878e6f168658b58972e8a5f9.zip
Cleanup due bug #96436
(Portage version: 2.1.11.52/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'net-misc/netkit-telnetd')
-rw-r--r--net-misc/netkit-telnetd/ChangeLog8
-rw-r--r--net-misc/netkit-telnetd/metadata.xml3
-rw-r--r--net-misc/netkit-telnetd/netkit-telnetd-0.17-r6.ebuild72
-rw-r--r--net-misc/netkit-telnetd/netkit-telnetd-0.17-r8.ebuild76
-rw-r--r--net-misc/netkit-telnetd/netkit-telnetd-0.17-r9.ebuild76
5 files changed, 7 insertions, 228 deletions
diff --git a/net-misc/netkit-telnetd/ChangeLog b/net-misc/netkit-telnetd/ChangeLog
index 712f1a319a83..5c0168f55676 100644
--- a/net-misc/netkit-telnetd/ChangeLog
+++ b/net-misc/netkit-telnetd/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-misc/netkit-telnetd
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/netkit-telnetd/ChangeLog,v 1.56 2012/05/28 17:18:05 armin76 Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-misc/netkit-telnetd/ChangeLog,v 1.57 2013/02/16 12:57:00 pacho Exp $
+
+ 16 Feb 2013; Pacho Ramos <pacho@gentoo.org> -netkit-telnetd-0.17-r6.ebuild,
+ -netkit-telnetd-0.17-r8.ebuild, -netkit-telnetd-0.17-r9.ebuild, metadata.xml:
+ Cleanup due bug #96436
28 May 2012; Raúl Porcel <armin76@gentoo.org>
netkit-telnetd-0.17-r10.ebuild:
diff --git a/net-misc/netkit-telnetd/metadata.xml b/net-misc/netkit-telnetd/metadata.xml
index 69af36a75bd4..66218e4d92c8 100644
--- a/net-misc/netkit-telnetd/metadata.xml
+++ b/net-misc/netkit-telnetd/metadata.xml
@@ -2,8 +2,7 @@
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer>
- <email>pva@gentoo.org</email>
- <name>Peter Volkov</name>
+ <email>maintainer-needed@gentoo.org</email>
</maintainer>
<longdescription>The telnetd program is a server which supports the DARPA telnet interactive communication protocol.</longdescription>
</pkgmetadata>
diff --git a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r6.ebuild b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r6.ebuild
deleted file mode 100644
index 9d2387a978e4..000000000000
--- a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r6.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/netkit-telnetd/netkit-telnetd-0.17-r6.ebuild,v 1.18 2010/10/28 10:14:13 ssuominen Exp $
-
-inherit eutils
-
-PATCHLEVEL=28
-DESCRIPTION="Standard Linux telnet client and server"
-HOMEPAGE="ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/"
-SRC_URI="ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/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 hppa ia64 ~mips ppc ppc64 sparc x86"
-IUSE=""
-
-DEPEND=">=sys-libs/ncurses-5.2
- !net-misc/telnet-bsd"
-
-S=${WORKDIR}/netkit-telnet-${PV}
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- # 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 || die
-
- # 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 \
- || die
-}
-
-src_compile() {
- ./configure --prefix=/usr || die
-
- sed -i \
- -e "s:-pipe -O2:${CFLAGS}:" \
- -e "s:-Wpointer-arith::" \
- MCONFIG
-
- make || die
- cd telnetlogin
- make || die
-}
-
-src_install() {
- dobin telnet/telnet || die
- dosbin telnetd/telnetd || die
- dosym telnetd /usr/sbin/in.telnetd
- dosbin telnetlogin/telnetlogin || die
- 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
-}
diff --git a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r8.ebuild b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r8.ebuild
deleted file mode 100644
index 6582b7a4af9b..000000000000
--- a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r8.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/netkit-telnetd/netkit-telnetd-0.17-r8.ebuild,v 1.7 2008/11/06 02:35:03 vapier Exp $
-
-inherit eutils toolchain-funcs
-
-PATCHLEVEL=35
-DESCRIPTION="Standard Linux telnet client and server"
-HOMEPAGE="ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/"
-# http://packages.debian.org/stablesource/netkit-telnet
-# http://packages.debian.org/testing/source/netkit-telnet
-SRC_URI="ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/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 ~hppa ia64 ~mips ~ppc ppc64 s390 sh sparc x86"
-IUSE=""
-
-DEPEND=">=sys-libs/ncurses-5.2
- !net-misc/telnet-bsd"
-
-S=${WORKDIR}/netkit-telnet-${PV}
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- # 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
-}
-
-src_compile() {
- ./configure --prefix=/usr || die
-
- sed -i \
- -e "s:-pipe -O2:${CFLAGS}:" \
- -e "s:-Wpointer-arith::" \
- -e "s:^CC=.*:CC=$(tc-getCC):" \
- -e "s:^CXX=.*:CXX=$(tc-getCXX):" \
- MCONFIG
-
- make || die
- cd telnetlogin
- make || die
-}
-
-src_install() {
- dobin telnet/telnet || die
-
- dosbin telnetd/telnetd || die
- dosym telnetd /usr/sbin/in.telnetd
- dosbin telnetlogin/telnetlogin || die
- 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
-}
diff --git a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r9.ebuild b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r9.ebuild
deleted file mode 100644
index 87ee339f7ee3..000000000000
--- a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r9.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/netkit-telnetd/netkit-telnetd-0.17-r9.ebuild,v 1.1 2008/08/02 16:58:11 solar Exp $
-
-inherit eutils toolchain-funcs
-
-PATCHLEVEL=36
-DESCRIPTION="Standard Linux telnet client and server"
-HOMEPAGE="ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/"
-# http://packages.debian.org/stablesource/netkit-telnet
-# http://packages.debian.org/testing/source/netkit-telnet
-SRC_URI="ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/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 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
-IUSE=""
-
-DEPEND=">=sys-libs/ncurses-5.2
- !net-misc/telnet-bsd"
-
-S=${WORKDIR}/netkit-telnet-${PV}
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- # 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
-}
-
-src_compile() {
- ./configure --prefix=/usr || die
-
- sed -i \
- -e "s:-pipe -O2:${CFLAGS}:" \
- -e "s:-Wpointer-arith::" \
- -e "s:^CC=.*:CC=$(tc-getCC):" \
- -e "s:^CXX=.*:CXX=$(tc-getCXX):" \
- MCONFIG
-
- make || die
- cd telnetlogin
- make || die
-}
-
-src_install() {
- dobin telnet/telnet || die
-
- dosbin telnetd/telnetd || die
- dosym telnetd /usr/sbin/in.telnetd
- dosbin telnetlogin/telnetlogin || die
- 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
-}