Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/libnfsidmap: ChangeLog libnfsidmap-0.23.ebuild libnfsidmap-0.19.ebuild
Date: Tue, 27 Jul 2010 00:18:26
Message-Id: 20100727001822.6B1192CE15@corvid.gentoo.org
1 flameeyes 10/07/27 00:18:22
2
3 Modified: ChangeLog
4 Added: libnfsidmap-0.23.ebuild
5 Removed: libnfsidmap-0.19.ebuild
6 Log:
7 Remove old version, add a new one that does not build useless static archives and does not install .la files.
8 (Portage version: 2.2_rc67/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.33 net-libs/libnfsidmap/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libnfsidmap/ChangeLog?rev=1.33&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libnfsidmap/ChangeLog?rev=1.33&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libnfsidmap/ChangeLog?r1=1.32&r2=1.33
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-libs/libnfsidmap/ChangeLog,v
20 retrieving revision 1.32
21 retrieving revision 1.33
22 diff -u -r1.32 -r1.33
23 --- ChangeLog 25 Mar 2009 18:45:38 -0000 1.32
24 +++ ChangeLog 27 Jul 2010 00:18:22 -0000 1.33
25 @@ -1,6 +1,13 @@
26 # ChangeLog for net-libs/libnfsidmap
27 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libnfsidmap/ChangeLog,v 1.32 2009/03/25 18:45:38 armin76 Exp $
29 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libnfsidmap/ChangeLog,v 1.33 2010/07/27 00:18:22 flameeyes Exp $
31 +
32 +*libnfsidmap-0.23 (27 Jul 2010)
33 +
34 + 27 Jul 2010; Diego E. Pettenò <flameeyes@g.o>
35 + -libnfsidmap-0.19.ebuild, +libnfsidmap-0.23.ebuild:
36 + Remove old version, add a new one that does not build useless static
37 + archives and does not install .la files.
38
39 25 Mar 2009; Raúl Porcel <armin76@g.o> libnfsidmap-0.21-r1.ebuild:
40 arm/ia64/s390/sh/sparc stable wrt #261334
41
42
43
44 1.1 net-libs/libnfsidmap/libnfsidmap-0.23.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libnfsidmap/libnfsidmap-0.23.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libnfsidmap/libnfsidmap-0.23.ebuild?rev=1.1&content-type=text/plain
48
49 Index: libnfsidmap-0.23.ebuild
50 ===================================================================
51 # Copyright 1999-2010 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/net-libs/libnfsidmap/libnfsidmap-0.23.ebuild,v 1.1 2010/07/27 00:18:22 flameeyes Exp $
54
55 EAPI=2
56
57 inherit autotools
58
59 DESCRIPTION="NFSv4 ID <-> name mapping library"
60 HOMEPAGE="http://www.citi.umich.edu/projects/nfsv4/linux/"
61 SRC_URI="http://www.citi.umich.edu/projects/nfsv4/linux/libnfsidmap/${P}.tar.gz"
62
63 LICENSE="BSD"
64 SLOT="0"
65 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
66 IUSE="ldap"
67
68 DEPEND="ldap? ( net-nds/openldap )"
69 RDEPEND="${DEPEND}
70 !<net-fs/nfs-utils-1.1.4
71 !net-fs/idmapd"
72
73 src_prepare() {
74 epatch "${FILESDIR}"/${PN}-0.19-getgrouplist.patch #169909
75 epatch "${FILESDIR}"/${PN}-0.21-headers.patch
76 eautoreconf
77 }
78
79 src_configure() {
80 econf --disable-static \
81 --disable-dependency-tracking \
82 $(use_enable ldap) || die
83 }
84
85 src_install() {
86 emake install DESTDIR="${D}" || die
87 find "${D}" -name '*.la' -delete || die
88
89 insinto /etc
90 doins idmapd.conf || die
91 dodoc AUTHORS ChangeLog NEWS README
92 }