net-misc/utelnetd: use #!/sbin/openrc-run instead of #!/sbin/runscript
authorAustin English <wizardedit@gentoo.org>
Wed, 4 May 2016 00:59:14 +0000 (19:59 -0500)
committerAustin English <wizardedit@gentoo.org>
Wed, 4 May 2016 00:59:14 +0000 (19:59 -0500)
Gentoo-Bug: https://bugs.gentoo.org/573846

Package-Manager: portage-2.2.26

net-misc/utelnetd/files/utelnetd.initd
net-misc/utelnetd/utelnetd-0.1.11-r1.ebuild [new file with mode: 0644]
net-misc/utelnetd/utelnetd-0.1.9-r2.ebuild [new file with mode: 0644]

index fe87e80f67987de89cbb6ed716d372d35d3b32b6..3e84801be844f69a7edb816a0c81fb137244377b 100644 (file)
@@ -1,5 +1,5 @@
-#!/sbin/runscript
-# Copyright 1999-2004 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/net-misc/utelnetd/utelnetd-0.1.11-r1.ebuild b/net-misc/utelnetd/utelnetd-0.1.11-r1.ebuild
new file mode 100644 (file)
index 0000000..ad00d89
--- /dev/null
@@ -0,0 +1,35 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit toolchain-funcs
+
+DESCRIPTION="A small Telnet daemon, derived from the Axis tools"
+HOMEPAGE="http://www.pengutronix.de/software/utelnetd/index_en.html"
+SRC_URI="http://www.pengutronix.de/software/utelnetd/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~s390 ~sparc ~x86"
+IUSE=""
+
+DEPEND="virtual/shadow"
+
+src_prepare() {
+       sed -i \
+               -e "/(STRIP)/d" \
+               -e "/^CC/s:=.*:= $(tc-getCC):" \
+               -e "/fomit-frame-pointer/d" \
+               Makefile || die
+
+       default
+}
+
+src_install() {
+       dosbin utelnetd
+       dodoc ChangeLog README
+
+       newinitd "${FILESDIR}"/utelnetd.initd utelnetd
+}
diff --git a/net-misc/utelnetd/utelnetd-0.1.9-r2.ebuild b/net-misc/utelnetd/utelnetd-0.1.9-r2.ebuild
new file mode 100644 (file)
index 0000000..1c55b5b
--- /dev/null
@@ -0,0 +1,33 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit toolchain-funcs
+
+DESCRIPTION="A small Telnet daemon, derived from the Axis tools"
+HOMEPAGE="http://www.pengutronix.de/software/utelnetd_en.html"
+SRC_URI="http://www.pengutronix.de/software/utelnetd/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~s390 ~sparc ~x86"
+IUSE=""
+
+DEPEND="virtual/shadow"
+
+src_prepare() {
+       sed -i \
+               -e "/(STRIP)/d" \
+               -e "/^CC/s:=.*:= $(tc-getCC):" \
+               Makefile || die
+       default
+}
+
+src_install() {
+       dosbin utelnetd
+       dodoc ChangeLog README
+
+       newinitd "${FILESDIR}"/utelnetd.initd utelnetd
+}