Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libnfsidmap/
Date: Wed, 21 Mar 2018 08:16:05
Message-Id: 1521620154.6b53b8d47f8ac626278f5de39c96aa5d1d3b17bb.polynomial-c@gentoo
1 commit: 6b53b8d47f8ac626278f5de39c96aa5d1d3b17bb
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Wed Mar 21 08:15:54 2018 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Wed Mar 21 08:15:54 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b53b8d4
7
8 net-libs/libnfsidmap: Removed old.
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 net-libs/libnfsidmap/libnfsidmap-0.25.ebuild | 44 ----------------------------
13 1 file changed, 44 deletions(-)
14
15 diff --git a/net-libs/libnfsidmap/libnfsidmap-0.25.ebuild b/net-libs/libnfsidmap/libnfsidmap-0.25.ebuild
16 deleted file mode 100644
17 index bba515a1955..00000000000
18 --- a/net-libs/libnfsidmap/libnfsidmap-0.25.ebuild
19 +++ /dev/null
20 @@ -1,44 +0,0 @@
21 -# Copyright 1999-2014 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI="4"
25 -
26 -inherit autotools eutils multilib
27 -
28 -DESCRIPTION="NFSv4 ID <-> name mapping library"
29 -HOMEPAGE="http://www.citi.umich.edu/projects/nfsv4/linux/"
30 -SRC_URI="http://www.citi.umich.edu/projects/nfsv4/linux/libnfsidmap/${P}.tar.gz"
31 -
32 -LICENSE="BSD"
33 -SLOT="0"
34 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
35 -IUSE="ldap static-libs"
36 -
37 -DEPEND="ldap? ( net-nds/openldap )"
38 -RDEPEND="${DEPEND}
39 - !<net-fs/nfs-utils-1.2.2
40 - !net-fs/idmapd"
41 -
42 -src_prepare() {
43 - epatch "${FILESDIR}"/${PN}-0.19-getgrouplist.patch #169909
44 - epatch "${FILESDIR}"/${PN}-0.21-headers.patch
45 - eautoreconf
46 -}
47 -
48 -src_configure() {
49 - econf \
50 - --disable-dependency-tracking \
51 - $(use_enable static-libs static) \
52 - $(use_enable ldap)
53 -}
54 -
55 -src_install() {
56 - default
57 -
58 - insinto /etc
59 - doins idmapd.conf
60 -
61 - # remove useless files
62 - rm -f "${D}"/usr/$(get_libdir)/libnfsidmap/*.{a,la}
63 - use static-libs || find "${D}"/usr -name '*.la' -delete
64 -}