Gentoo Archives: gentoo-commits

From: Austin English <wizardedit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/utelnetd/, net-misc/utelnetd/files/
Date: Wed, 04 May 2016 01:02:58
Message-Id: 1462323554.998cc7ffa86d8db40abcbbbdb7e62863c306a300.wizardedit@gentoo
1 commit: 998cc7ffa86d8db40abcbbbdb7e62863c306a300
2 Author: Austin English <wizardedit <AT> gentoo <DOT> org>
3 AuthorDate: Wed May 4 00:59:14 2016 +0000
4 Commit: Austin English <wizardedit <AT> gentoo <DOT> org>
5 CommitDate: Wed May 4 00:59:14 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=998cc7ff
7
8 net-misc/utelnetd: use #!/sbin/openrc-run instead of #!/sbin/runscript
9
10 Gentoo-Bug: https://bugs.gentoo.org/573846
11
12 Package-Manager: portage-2.2.26
13
14 net-misc/utelnetd/files/utelnetd.initd | 4 ++--
15 net-misc/utelnetd/utelnetd-0.1.11-r1.ebuild | 35 +++++++++++++++++++++++++++++
16 net-misc/utelnetd/utelnetd-0.1.9-r2.ebuild | 33 +++++++++++++++++++++++++++
17 3 files changed, 70 insertions(+), 2 deletions(-)
18
19 diff --git a/net-misc/utelnetd/files/utelnetd.initd b/net-misc/utelnetd/files/utelnetd.initd
20 index fe87e80..3e84801 100644
21 --- a/net-misc/utelnetd/files/utelnetd.initd
22 +++ b/net-misc/utelnetd/files/utelnetd.initd
23 @@ -1,5 +1,5 @@
24 -#!/sbin/runscript
25 -# Copyright 1999-2004 Gentoo Foundation
26 +#!/sbin/openrc-run
27 +# Copyright 1999-2016 Gentoo Foundation
28 # Distributed under the terms of the GNU General Public License v2
29 # $Id$
30
31
32 diff --git a/net-misc/utelnetd/utelnetd-0.1.11-r1.ebuild b/net-misc/utelnetd/utelnetd-0.1.11-r1.ebuild
33 new file mode 100644
34 index 0000000..ad00d89
35 --- /dev/null
36 +++ b/net-misc/utelnetd/utelnetd-0.1.11-r1.ebuild
37 @@ -0,0 +1,35 @@
38 +# Copyright 1999-2016 Gentoo Foundation
39 +# Distributed under the terms of the GNU General Public License v2
40 +# $Id$
41 +
42 +EAPI=6
43 +
44 +inherit toolchain-funcs
45 +
46 +DESCRIPTION="A small Telnet daemon, derived from the Axis tools"
47 +HOMEPAGE="http://www.pengutronix.de/software/utelnetd/index_en.html"
48 +SRC_URI="http://www.pengutronix.de/software/utelnetd/${P}.tar.gz"
49 +
50 +LICENSE="GPL-2"
51 +SLOT="0"
52 +KEYWORDS="~amd64 ~ppc ~s390 ~sparc ~x86"
53 +IUSE=""
54 +
55 +DEPEND="virtual/shadow"
56 +
57 +src_prepare() {
58 + sed -i \
59 + -e "/(STRIP)/d" \
60 + -e "/^CC/s:=.*:= $(tc-getCC):" \
61 + -e "/fomit-frame-pointer/d" \
62 + Makefile || die
63 +
64 + default
65 +}
66 +
67 +src_install() {
68 + dosbin utelnetd
69 + dodoc ChangeLog README
70 +
71 + newinitd "${FILESDIR}"/utelnetd.initd utelnetd
72 +}
73
74 diff --git a/net-misc/utelnetd/utelnetd-0.1.9-r2.ebuild b/net-misc/utelnetd/utelnetd-0.1.9-r2.ebuild
75 new file mode 100644
76 index 0000000..1c55b5b
77 --- /dev/null
78 +++ b/net-misc/utelnetd/utelnetd-0.1.9-r2.ebuild
79 @@ -0,0 +1,33 @@
80 +# Copyright 1999-2016 Gentoo Foundation
81 +# Distributed under the terms of the GNU General Public License v2
82 +# $Id$
83 +
84 +EAPI=6
85 +
86 +inherit toolchain-funcs
87 +
88 +DESCRIPTION="A small Telnet daemon, derived from the Axis tools"
89 +HOMEPAGE="http://www.pengutronix.de/software/utelnetd_en.html"
90 +SRC_URI="http://www.pengutronix.de/software/utelnetd/${P}.tar.gz"
91 +
92 +LICENSE="GPL-2"
93 +SLOT="0"
94 +KEYWORDS="~amd64 ~ppc ~s390 ~sparc ~x86"
95 +IUSE=""
96 +
97 +DEPEND="virtual/shadow"
98 +
99 +src_prepare() {
100 + sed -i \
101 + -e "/(STRIP)/d" \
102 + -e "/^CC/s:=.*:= $(tc-getCC):" \
103 + Makefile || die
104 + default
105 +}
106 +
107 +src_install() {
108 + dosbin utelnetd
109 + dodoc ChangeLog README
110 +
111 + newinitd "${FILESDIR}"/utelnetd.initd utelnetd
112 +}