diff options
author | Mike Frysinger <vapier@gentoo.org> | 2007-03-25 07:25:44 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2007-03-25 07:25:44 +0000 |
commit | 6c81a593597a3d1a47f95540309b10f95899639c (patch) | |
tree | 500a0432a92c2ed6c492c34e19c4885b4a559bf9 /net-libs/libnfsidmap/libnfsidmap-0.19.ebuild | |
parent | add patch from Paul Bredbury to add language support (bug #171336) (diff) | |
download | gentoo-2-6c81a593597a3d1a47f95540309b10f95899639c.tar.gz gentoo-2-6c81a593597a3d1a47f95540309b10f95899639c.tar.bz2 gentoo-2-6c81a593597a3d1a47f95540309b10f95899639c.zip |
Provide getgrouplist() when need be #169909 by Natanael Copa.
(Portage version: 2.1.2.2)
Diffstat (limited to 'net-libs/libnfsidmap/libnfsidmap-0.19.ebuild')
-rw-r--r-- | net-libs/libnfsidmap/libnfsidmap-0.19.ebuild | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/net-libs/libnfsidmap/libnfsidmap-0.19.ebuild b/net-libs/libnfsidmap/libnfsidmap-0.19.ebuild index 9b405e26b542..7933890eaceb 100644 --- a/net-libs/libnfsidmap/libnfsidmap-0.19.ebuild +++ b/net-libs/libnfsidmap/libnfsidmap-0.19.ebuild @@ -1,6 +1,8 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libnfsidmap/libnfsidmap-0.19.ebuild,v 1.1 2007/01/21 00:13:40 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/libnfsidmap/libnfsidmap-0.19.ebuild,v 1.2 2007/03/25 07:25:44 vapier Exp $ + +inherit autotools DESCRIPTION="NFSv4 ID <-> name mapping library" HOMEPAGE="http://www.citi.umich.edu/projects/nfsv4/linux/" @@ -15,6 +17,13 @@ DEPEND="ldap? ( net-nds/openldap )" RDEPEND="${DEPEND} !net-fs/idmapd" +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}"/${P}-getgrouplist.patch #169909 + eautoreconf +} + src_compile() { econf $(use_enable ldap) || die emake || die |