# net-misc/stone: #675612, needs new snapshot, current ver is from 2008
# net-misc/tn5250: #678684, last commits in 2012
# net-proxy/ufdbguard: #677482, needs bump, current ver is from 2016
-# sys-apps/nca: #676240, last updated upstream in 2004
#
# Removal in 30 days.
app-crypt/keynote
net-misc/stone
net-misc/tn5250
net-proxy/ufdbguard
-sys-apps/nca
# Miroslav Šulc <fordfrog@gentoo.org> (19 Mar 2019)
# Depends on >=virtual/{jdk,jre}-11 which is masked
+++ /dev/null
-DIST nca-0.9.0.tar.gz 818721 BLAKE2B 597be0bc788e750cb7552bf818a1631850e50f33bbfd051e029f3f35b55056f49cf239e03cf48e8af6a8c9d4ede6d38792e288c073f45a80f4e40b9c630f308e SHA512 375dc747414af7e8971a9112fa6a4583dd543f6f4b3a84b2c16f45ee2487363929c2eed3c1837687b802161c630443885e6da20ac738017d219e9a608b4d700c
+++ /dev/null
-#!/sbin/openrc-run
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-start() {
- ebegin "Starting ${SVCNAME}"
- start-stop-daemon --start --quiet --exec /sbin/ncad
- eend ${?}
-}
-
-stop() {
- ebegin "Stopping ${SVCNAME}"
- start-stop-daemon --stop --retry 5 --quiet --exec /sbin/ncad
- eend ${?}
-}
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <!-- maintainer-needed -->
- <longdescription lang="en">
- nca connects a pseudo terminal to the console's virtual terminals
- (/dev/tty0...n) that are normally only accessible to someone with
- local keyboard access. It is particularly useful in conjunction with
- ncad since it then provides remote console access via SSH; with some
- appropriate system start up scripts, ncad can be started immediately
- the root filesystem has been mounted read-only, providing a cheap,
- and only marginally inferior alternative to a serial console.
- </longdescription>
-</pkgmetadata>
+++ /dev/null
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit toolchain-funcs
-
-DESCRIPTION="Network Console on Acid"
-HOMEPAGE="http://www.xenoclast.org/nca/"
-SRC_URI="http://www.xenoclast.org/nca/download/${P}.tar.gz"
-
-LICENSE="BSD GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="dev-libs/openssl
- sys-libs/zlib"
-
-DEPEND="dev-lang/perl
- ${RDEPEND}"
-
-src_prepare() {
- sed -i -e "s:^\([[:space:]]\+\$(MAKE) install\):\1 DESTDIR=\$(DESTDIR):g" \
- -e "s:=\(\$(CFLAGS)\):=\"\1\":g" -e "s:=\(\$(CC)\):=\"\1\":g" Makefile
-
- sed -i -e "s:-s sshd:sshd:g" ncad.patch
-
- eapply_user
-}
-
-src_compile() {
- emake -j1 CFLAGS="${CFLAGS}" CC=$(tc-getCC)
-}
-
-src_install() {
- dodir /sbin
- emake BINDIR="${D}sbin" MANDIR="${D}usr/share/man" SYSCONF_DIR="${D}etc" \
- DESTDIR="${D}" install_nca install_ssh install_man
-
- newinitd "${FILESDIR}/ncad.initd" ncad
- dodoc ChangeLog README* rc/ncad.template
-}