summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2009-11-22 17:49:48 +0000
committerMike Frysinger <vapier@gentoo.org>2009-11-22 17:49:48 +0000
commit5d12acc31ed36ae008dd6994919a017429a3b16e (patch)
tree9a679386a22958844ba0346b662b1c089c705b58 /net-nds/rpcbind
parentMark ia64 stable #291833. (diff)
downloadgentoo-2-5d12acc31ed36ae008dd6994919a017429a3b16e.tar.gz
gentoo-2-5d12acc31ed36ae008dd6994919a017429a3b16e.tar.bz2
gentoo-2-5d12acc31ed36ae008dd6994919a017429a3b16e.zip
old
Diffstat (limited to 'net-nds/rpcbind')
-rw-r--r--net-nds/rpcbind/rpcbind-0.1.7.ebuild47
1 files changed, 0 insertions, 47 deletions
diff --git a/net-nds/rpcbind/rpcbind-0.1.7.ebuild b/net-nds/rpcbind/rpcbind-0.1.7.ebuild
deleted file mode 100644
index abdc54b7bf4b..000000000000
--- a/net-nds/rpcbind/rpcbind-0.1.7.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-nds/rpcbind/rpcbind-0.1.7.ebuild,v 1.1 2009/01/17 17:36:55 vapier Exp $
-
-if [[ ${PV} == "9999" ]] ; then
- EGIT_REPO_URI="git://git.infradead.org/~steved/rpcbind.git"
- inherit autotools git
- SRC_URI=""
- KEYWORDS=""
-else
- SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
- KEYWORDS="~amd64 ~x86"
-fi
-
-DESCRIPTION="portmap replacement which supports RPC over various protocols"
-HOMEPAGE="http://sourceforge.net/projects/rpcbind/"
-
-LICENSE="BSD sun-rpc"
-SLOT="0"
-IUSE=""
-
-DEPEND="net-libs/libtirpc"
-
-src_unpack() {
- if [[ ${PV} == "9999" ]] ; then
- git_src_unpack
- eautoreconf
- else
- unpack ${A}
- cd "${S}"
- # fix busted timestamps
- find . -type f -print0 | xargs -0 touch -r .
- fi
-}
-
-src_compile() {
- econf --bindir=/sbin || die
- emake || die
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die
- doman man/rpc{bind,info}.8
- dodoc AUTHORS ChangeLog NEWS README
- newinitd "${FILESDIR}"/rpcbind.initd rpcbind || die
- newconfd "${FILESDIR}"/rpcbind.confd rpcbind || die
-}