diff options
author | Mike Doty <kingtaco@gentoo.org> | 2009-10-16 20:16:37 +0000 |
---|---|---|
committer | Mike Doty <kingtaco@gentoo.org> | 2009-10-16 20:16:37 +0000 |
commit | c82d79070828c8562b08a9ad41a4e990d01c8393 (patch) | |
tree | 1451f3fd4f8d1bd0220a8f44c0a71d69f5b39ea6 /net-misc/rwhoisd/rwhoisd-1.5.9.5.ebuild | |
parent | fix bashism in init script (bug #195939) (diff) | |
download | gentoo-2-c82d79070828c8562b08a9ad41a4e990d01c8393.tar.gz gentoo-2-c82d79070828c8562b08a9ad41a4e990d01c8393.tar.bz2 gentoo-2-c82d79070828c8562b08a9ad41a4e990d01c8393.zip |
initial import
(Portage version: 2.1.7.1/cvs/Linux x86_64)
Diffstat (limited to 'net-misc/rwhoisd/rwhoisd-1.5.9.5.ebuild')
-rw-r--r-- | net-misc/rwhoisd/rwhoisd-1.5.9.5.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/net-misc/rwhoisd/rwhoisd-1.5.9.5.ebuild b/net-misc/rwhoisd/rwhoisd-1.5.9.5.ebuild new file mode 100644 index 000000000000..9d2e0cc740f5 --- /dev/null +++ b/net-misc/rwhoisd/rwhoisd-1.5.9.5.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/rwhoisd/rwhoisd-1.5.9.5.ebuild,v 1.1 2009/10/16 20:16:36 kingtaco Exp $ + +EAPI=0 +inherit eutils + +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" +IUSE="" +DEPEND="" +RDEPEND="${DEPEND}" + +src_compile() { + epatch "${FILESDIR}"/rwhoisd-destdir.patch || die "epatch failed" + econf + emake -j1 +} + +src_install () { + emake -j1 install DESTDIR="${D}" + doinitd "${FILESDIR}"/rwhoisd || die "doinitd failed" + newconfd "${FILESDIR}"/rwhoisd.conf rwhoisd || die "newconfd failed" +} + +pkg_setup() { + enewgroup rwhoisd + enewuser rwhoisd -1 -1 /var/empty 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." +} |