diff options
Diffstat (limited to 'net-nds/portmap/portmap-9999.ebuild')
-rw-r--r-- | net-nds/portmap/portmap-9999.ebuild | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/net-nds/portmap/portmap-9999.ebuild b/net-nds/portmap/portmap-9999.ebuild new file mode 100644 index 000000000000..35a4ff588e79 --- /dev/null +++ b/net-nds/portmap/portmap-9999.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EGIT_REPO_URI="git://neil.brown.name/portmap" +inherit toolchain-funcs user git-2 + +DESCRIPTION="Netkit - portmapper" +HOMEPAGE="ftp://ftp.porcupine.org/pub/security/index.html" +SRC_URI="" + +LICENSE="BSD GPL-2" # GPL-2 only for init script +SLOT="0" +KEYWORDS="" +IUSE="selinux tcpd" + +DEPEND=" + tcpd? ( >=sys-apps/tcp-wrappers-7.6-r7 ) +" + +RDEPEND=" + selinux? ( sec-policy/selinux-portmap ) +" + +pkg_setup() { + enewgroup rpc 111 + enewuser rpc 111 -1 /dev/null rpc +} + +src_compile() { + tc-export CC + emake NO_TCP_WRAPPER="$(use tcpd || echo NO)" || die +} + +src_install() { + into / + dosbin portmap || die "portmap" + into /usr + dosbin pmap_dump pmap_set || die "pmap" + + doman *.8 + dodoc BLURBv5 CHANGES README* + + newinitd "${FILESDIR}"/portmap.rc6 portmap + newconfd "${FILESDIR}"/portmap.confd portmap +} |