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/libgssglue: ChangeLog libgssglue-0.1-r2.ebuild
Date: Tue, 27 Jul 2010 10:01:15
Message-Id: 20100727100113.1DB712CE15@corvid.gentoo.org
1 flameeyes 10/07/27 10:01:12
2
3 Modified: ChangeLog
4 Added: libgssglue-0.1-r2.ebuild
5 Log:
6 Disable building of static library and remove .la file.
7 (Portage version: 2.2_rc67/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.11 net-libs/libgssglue/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libgssglue/ChangeLog?rev=1.11&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libgssglue/ChangeLog?rev=1.11&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libgssglue/ChangeLog?r1=1.10&r2=1.11
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-libs/libgssglue/ChangeLog,v
19 retrieving revision 1.10
20 retrieving revision 1.11
21 diff -u -r1.10 -r1.11
22 --- ChangeLog 20 Apr 2008 00:14:12 -0000 1.10
23 +++ ChangeLog 27 Jul 2010 10:01:12 -0000 1.11
24 @@ -1,6 +1,12 @@
25 # ChangeLog for net-libs/libgssglue
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libgssglue/ChangeLog,v 1.10 2008/04/20 00:14:12 vapier Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libgssglue/ChangeLog,v 1.11 2010/07/27 10:01:12 flameeyes Exp $
30 +
31 +*libgssglue-0.1-r2 (27 Jul 2010)
32 +
33 + 27 Jul 2010; Diego E. Pettenò <flameeyes@g.o>
34 + +libgssglue-0.1-r2.ebuild:
35 + Disable building of static library and remove .la file.
36
37 *libgssglue-0.1-r1 (20 Apr 2008)
38
39
40
41
42 1.1 net-libs/libgssglue/libgssglue-0.1-r2.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libgssglue/libgssglue-0.1-r2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libgssglue/libgssglue-0.1-r2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libgssglue-0.1-r2.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/net-libs/libgssglue/libgssglue-0.1-r2.ebuild,v 1.1 2010/07/27 10:01:12 flameeyes Exp $
52
53 EAPI=2
54
55 DESCRIPTION="exports a gssapi interface which calls other random gssapi libraries"
56 HOMEPAGE="http://www.citi.umich.edu/projects/nfsv4/linux/"
57 SRC_URI="http://www.citi.umich.edu/projects/nfsv4/linux/${PN}/${P}.tar.gz"
58
59 LICENSE="BSD"
60 SLOT="0"
61 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
62 IUSE=""
63
64 RDEPEND="!app-crypt/libgssapi"
65
66 src_configure() {
67 # No need to install static libraries, as it uses libdl
68 econf --disable-static
69 }
70
71 src_install() {
72 emake install DESTDIR="${D}" || die
73 find "${D}" -name '*.la' -delete || die
74
75 dodoc AUTHORS ChangeLog NEWS README
76
77 insinto /etc
78 doins doc/gssapi_mech.conf || die
79 }