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

Package-Manager: portage-2.2.26

net-misc/rwhoisd/files/rwhoisd
net-misc/rwhoisd/rwhoisd-1.5.9.5-r3.ebuild [new file with mode: 0644]

index 8e02214c8d073326837945074bbd6a6f6f0f11b2..f6978f662e27f89f6a37234af927e8584ce08a13 100644 (file)
@@ -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 (file)
index 0000000..3acff49
--- /dev/null
@@ -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."
+}