sys-apps/nca: use #!/sbin/openrc-run instead of #!/sbin/runscript
authorAustin English <wizardedit@gentoo.org>
Fri, 29 Apr 2016 17:50:58 +0000 (12:50 -0500)
committerAustin English <wizardedit@gentoo.org>
Fri, 29 Apr 2016 19:32:13 +0000 (14:32 -0500)
Gentoo-Bug: https://bugs.gentoo.org/573846

Package-Manager: portage-2.2.26

sys-apps/nca/files/ncad.initd
sys-apps/nca/nca-0.9.0-r1.ebuild [new file with mode: 0644]

index 5e7fff2fed87b32d638cbc160bc3fe1ef0b09651..f87ec3260785cfeafc50b028c1fb1be7d8f42fd1 100644 (file)
@@ -1,5 +1,5 @@
-#!/sbin/runscript
-# Copyright 1999-2007 Gentoo Foundation
+#!/sbin/openrc-run
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
diff --git a/sys-apps/nca/nca-0.9.0-r1.ebuild b/sys-apps/nca/nca-0.9.0-r1.ebuild
new file mode 100644 (file)
index 0000000..d4abf43
--- /dev/null
@@ -0,0 +1,44 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+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
+}