summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2009-05-30 21:45:52 +0000
committerMike Frysinger <vapier@gentoo.org>2009-05-30 21:45:52 +0000
commit2477d491dc5957753a02fd87e5db1b5a0affad39 (patch)
tree9fcebc3547b926e93f725dc41139c572b76aa3bb /net-nds/rpcbind
parentAdjust ffmpeg dep to allow correct versions. (diff)
downloadgentoo-2-2477d491dc5957753a02fd87e5db1b5a0affad39.tar.gz
gentoo-2-2477d491dc5957753a02fd87e5db1b5a0affad39.tar.bz2
gentoo-2-2477d491dc5957753a02fd87e5db1b5a0affad39.zip
old
Diffstat (limited to 'net-nds/rpcbind')
-rw-r--r--net-nds/rpcbind/rpcbind-0.1.5.1.ebuild40
1 files changed, 0 insertions, 40 deletions
diff --git a/net-nds/rpcbind/rpcbind-0.1.5.1.ebuild b/net-nds/rpcbind/rpcbind-0.1.5.1.ebuild
deleted file mode 100644
index b3fcf38681d9..000000000000
--- a/net-nds/rpcbind/rpcbind-0.1.5.1.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-nds/rpcbind/rpcbind-0.1.5.1.ebuild,v 1.1 2008/12/06 11:29:10 ssuominen Exp $
-
-inherit versionator
-
-MY_P=${PN}-$(replace_version_separator 3 '-')
-
-DESCRIPTION="portmap replacement which supports RPC over various protocols"
-HOMEPAGE="http://nfsv4.bullopensource.org/doc/tirpc_rpcbind.php"
-SRC_URI="http://nfsv4.bullopensource.org/tarballs/rpcbind/${MY_P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="net-libs/libtirpc"
-
-S=${WORKDIR}/${MY_P}
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- # fix busted timestamps
- find . -type f -print0 | xargs -0 touch -r .
-}
-
-src_compile() {
- econf --bindir=/sbin || die "econf failed."
- emake || die "emake failed."
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed."
- doman man/rpc{bind,info}.8
- dodoc AUTHORS ChangeLog NEWS README
- newinitd "${FILESDIR}"/rpcbind.initd rpcbind || die "newinitd failed."
- newconfd "${FILESDIR}"/rpcbind.confd rpcbind || die "newconfd failed."
-}