sys-apps/nca: Remove last-rited pkg
authorMichał Górny <mgorny@gentoo.org>
Sat, 20 Apr 2019 07:49:07 +0000 (09:49 +0200)
committerMichał Górny <mgorny@gentoo.org>
Sat, 20 Apr 2019 07:50:00 +0000 (09:50 +0200)
Closes: https://bugs.gentoo.org/676240
Signed-off-by: Michał Górny <mgorny@gentoo.org>
profiles/package.mask
sys-apps/nca/Manifest [deleted file]
sys-apps/nca/files/ncad.initd [deleted file]
sys-apps/nca/metadata.xml [deleted file]
sys-apps/nca/nca-0.9.0-r1.ebuild [deleted file]

index 282607062082248283dc11b5f61ee65071289dfa..4f2f5f3c2fb4eca3ed578e00fab4d0a686f587f2 100644 (file)
@@ -630,7 +630,6 @@ x11-libs/hippo-canvas
 # 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
@@ -658,7 +657,6 @@ net-misc/sslwrap
 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
diff --git a/sys-apps/nca/Manifest b/sys-apps/nca/Manifest
deleted file mode 100644 (file)
index 4ed1cfe..0000000
+++ /dev/null
@@ -1 +0,0 @@
-DIST nca-0.9.0.tar.gz 818721 BLAKE2B 597be0bc788e750cb7552bf818a1631850e50f33bbfd051e029f3f35b55056f49cf239e03cf48e8af6a8c9d4ede6d38792e288c073f45a80f4e40b9c630f308e SHA512 375dc747414af7e8971a9112fa6a4583dd543f6f4b3a84b2c16f45ee2487363929c2eed3c1837687b802161c630443885e6da20ac738017d219e9a608b4d700c
diff --git a/sys-apps/nca/files/ncad.initd b/sys-apps/nca/files/ncad.initd
deleted file mode 100644 (file)
index fa2adcd..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/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 ${?}
-}
diff --git a/sys-apps/nca/metadata.xml b/sys-apps/nca/metadata.xml
deleted file mode 100644 (file)
index f60fb57..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-<?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>
diff --git a/sys-apps/nca/nca-0.9.0-r1.ebuild b/sys-apps/nca/nca-0.9.0-r1.ebuild
deleted file mode 100644 (file)
index 1207d40..0000000
+++ /dev/null
@@ -1,43 +0,0 @@
-# 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
-}