diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2018-03-21 09:15:54 +0100 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2018-03-21 09:15:54 +0100 |
commit | 6b53b8d47f8ac626278f5de39c96aa5d1d3b17bb (patch) | |
tree | e920ac5c8e7a85e72470df03b78561ac340deb7e /net-libs | |
parent | net-libs/libnfsidmap: Bump to version 0.27 (diff) | |
download | gentoo-6b53b8d47f8ac626278f5de39c96aa5d1d3b17bb.tar.gz gentoo-6b53b8d47f8ac626278f5de39c96aa5d1d3b17bb.tar.bz2 gentoo-6b53b8d47f8ac626278f5de39c96aa5d1d3b17bb.zip |
net-libs/libnfsidmap: Removed old.
Package-Manager: Portage-2.3.24, Repoman-2.3.6
Diffstat (limited to 'net-libs')
-rw-r--r-- | net-libs/libnfsidmap/libnfsidmap-0.25.ebuild | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/net-libs/libnfsidmap/libnfsidmap-0.25.ebuild b/net-libs/libnfsidmap/libnfsidmap-0.25.ebuild deleted file mode 100644 index bba515a1955d..000000000000 --- a/net-libs/libnfsidmap/libnfsidmap-0.25.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="4" - -inherit autotools eutils multilib - -DESCRIPTION="NFSv4 ID <-> name mapping library" -HOMEPAGE="http://www.citi.umich.edu/projects/nfsv4/linux/" -SRC_URI="http://www.citi.umich.edu/projects/nfsv4/linux/libnfsidmap/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" -IUSE="ldap static-libs" - -DEPEND="ldap? ( net-nds/openldap )" -RDEPEND="${DEPEND} - !<net-fs/nfs-utils-1.2.2 - !net-fs/idmapd" - -src_prepare() { - epatch "${FILESDIR}"/${PN}-0.19-getgrouplist.patch #169909 - epatch "${FILESDIR}"/${PN}-0.21-headers.patch - eautoreconf -} - -src_configure() { - econf \ - --disable-dependency-tracking \ - $(use_enable static-libs static) \ - $(use_enable ldap) -} - -src_install() { - default - - insinto /etc - doins idmapd.conf - - # remove useless files - rm -f "${D}"/usr/$(get_libdir)/libnfsidmap/*.{a,la} - use static-libs || find "${D}"/usr -name '*.la' -delete -} |