diff options
author | Jeroen Roovers <jer@gentoo.org> | 2017-08-15 11:33:33 +0200 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2017-08-15 11:33:33 +0200 |
commit | 4c8b8e4cd9324e5d9fce1d258b28886bb599356d (patch) | |
tree | d5c9c8e800a1c7c2c7df3e07757e5b9f4ff23931 /net-misc/rwhoisd/rwhoisd-1.5.9.6.ebuild | |
parent | x11-misc/sddm: Added KDE project (diff) | |
download | gentoo-4c8b8e4cd9324e5d9fce1d258b28886bb599356d.tar.gz gentoo-4c8b8e4cd9324e5d9fce1d258b28886bb599356d.tar.bz2 gentoo-4c8b8e4cd9324e5d9fce1d258b28886bb599356d.zip |
net-misc/rwhoisd: Version bump.
Package-Manager: Portage-2.3.7, Repoman-2.3.3
Diffstat (limited to 'net-misc/rwhoisd/rwhoisd-1.5.9.6.ebuild')
-rw-r--r-- | net-misc/rwhoisd/rwhoisd-1.5.9.6.ebuild | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/net-misc/rwhoisd/rwhoisd-1.5.9.6.ebuild b/net-misc/rwhoisd/rwhoisd-1.5.9.6.ebuild new file mode 100644 index 000000000000..e08fd625c8a6 --- /dev/null +++ b/net-misc/rwhoisd/rwhoisd-1.5.9.6.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit eutils flag-o-matic user + +DESCRIPTION="ARIN rwhois daemon" +HOMEPAGE="http://projects.arin.net/rwhois/" +SRC_URI="https://github.com/arineng/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND=" + sys-devel/flex + virtual/yacc +" +S=${WORKDIR}/${P}/${PN} + +pkg_setup() { + enewgroup rwhoisd + enewuser rwhoisd -1 -1 /var/rwhoisd rwhoisd +} + +src_compile() { + append-cflags -DNEW_STYLE_BIN_SORT + + 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." +} |