diff options
author | Mike Frysinger <vapier@gentoo.org> | 2009-05-30 20:53:26 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2009-05-30 20:53:26 +0000 |
commit | 8df99f37ff072a352b744eaa406a841419ca6239 (patch) | |
tree | 44fdf66b68897f43b15958f7aef87418e3c79024 /net-nds | |
parent | Add check for SUNRPC_REGISTER_V4=y in kernel config. (diff) | |
download | gentoo-2-8df99f37ff072a352b744eaa406a841419ca6239.tar.gz gentoo-2-8df99f37ff072a352b744eaa406a841419ca6239.tar.bz2 gentoo-2-8df99f37ff072a352b744eaa406a841419ca6239.zip |
Version bump.
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'net-nds')
-rw-r--r-- | net-nds/rpcbind/ChangeLog | 7 | ||||
-rw-r--r-- | net-nds/rpcbind/rpcbind-0.2.0.ebuild | 47 |
2 files changed, 53 insertions, 1 deletions
diff --git a/net-nds/rpcbind/ChangeLog b/net-nds/rpcbind/ChangeLog index 7b16d8c8fd84..dbb21526f143 100644 --- a/net-nds/rpcbind/ChangeLog +++ b/net-nds/rpcbind/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-nds/rpcbind # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-nds/rpcbind/ChangeLog,v 1.4 2009/01/17 17:37:19 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-nds/rpcbind/ChangeLog,v 1.5 2009/05/30 20:53:26 vapier Exp $ + +*rpcbind-0.2.0 (30 May 2009) + + 30 May 2009; Mike Frysinger <vapier@gentoo.org> +rpcbind-0.2.0.ebuild: + Version bump. *rpcbind-9999 (17 Jan 2009) diff --git a/net-nds/rpcbind/rpcbind-0.2.0.ebuild b/net-nds/rpcbind/rpcbind-0.2.0.ebuild new file mode 100644 index 000000000000..df6b091cbaaf --- /dev/null +++ b/net-nds/rpcbind/rpcbind-0.2.0.ebuild @@ -0,0 +1,47 @@ +# 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.2.0.ebuild,v 1.1 2009/05/30 20:53:26 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 +} |