From e80645174260d52c03050b688f19c71cc9465b74 Mon Sep 17 00:00:00 2001 From: Austin English Date: Tue, 3 May 2016 19:37:37 -0500 Subject: net-misc/rwhoisd: use #!/sbin/openrc-run instead of #!/sbin/runscript Gentoo-Bug: https://bugs.gentoo.org/573846 Package-Manager: portage-2.2.26 --- net-misc/rwhoisd/files/rwhoisd | 2 +- net-misc/rwhoisd/rwhoisd-1.5.9.5-r3.ebuild | 47 ++++++++++++++++++++++++++++++ 2 files changed, 48 insertions(+), 1 deletion(-) create mode 100644 net-misc/rwhoisd/rwhoisd-1.5.9.5-r3.ebuild (limited to 'net-misc') diff --git a/net-misc/rwhoisd/files/rwhoisd b/net-misc/rwhoisd/files/rwhoisd index 8e02214c8d07..f6978f662e27 100644 --- a/net-misc/rwhoisd/files/rwhoisd +++ b/net-misc/rwhoisd/files/rwhoisd @@ -1,4 +1,4 @@ -#!/sbin/runscript +#!/sbin/openrc-run depend() { use logger diff --git a/net-misc/rwhoisd/rwhoisd-1.5.9.5-r3.ebuild b/net-misc/rwhoisd/rwhoisd-1.5.9.5-r3.ebuild new file mode 100644 index 000000000000..3acff499f3e7 --- /dev/null +++ b/net-misc/rwhoisd/rwhoisd-1.5.9.5-r3.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit eutils flag-o-matic user + +DESCRIPTION="ARIN rwhois daemon" +HOMEPAGE="http://projects.arin.net/rwhois/" +SRC_URI="http://projects.arin.net/rwhois/ftp/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND=" + sys-devel/flex + virtual/yacc +" + +pkg_setup() { + enewgroup rwhoisd + enewuser rwhoisd -1 -1 /var/rwhoisd rwhoisd +} + +src_prepare() { + epatch "${FILESDIR}"/${PN}-destdir-${PV}.patch + append-cflags -DNEW_STYLE_BIN_SORT +} + +src_compile() { + emake -C common + emake -C regexp + emake -C mkdb + default +} + +src_install () { + default + doinitd "${FILESDIR}"/rwhoisd + newconfd "${FILESDIR}"/rwhoisd.conf rwhoisd +} + +pkg_postinst () { + einfo "Please make sure to set the userid in rwhoisd.conf to rwhoisd." + einfo "It is highly inadvisable to run rwhoisd as root." +} -- cgit v1.2.3-65-gdbad