Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/gsasl: ChangeLog gsasl-1.1.ebuild
Date: Sat, 25 Apr 2009 23:03:39
Message-Id: E1LxquH-00084n-7W@stork.gentoo.org
1 patrick 09/04/25 23:03:37
2
3 Modified: ChangeLog
4 Added: gsasl-1.1.ebuild
5 Log:
6 Bump to 1.1, fixes half of #263867
7 (Portage version: 2.2_rc31/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.30 net-misc/gsasl/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/gsasl/ChangeLog?rev=1.30&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/gsasl/ChangeLog?rev=1.30&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/gsasl/ChangeLog?r1=1.29&r2=1.30
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-misc/gsasl/ChangeLog,v
19 retrieving revision 1.29
20 retrieving revision 1.30
21 diff -u -r1.29 -r1.30
22 --- ChangeLog 29 Nov 2008 20:44:21 -0000 1.29
23 +++ ChangeLog 25 Apr 2009 23:03:37 -0000 1.30
24 @@ -1,6 +1,11 @@
25 # ChangeLog for net-misc/gsasl
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-misc/gsasl/ChangeLog,v 1.29 2008/11/29 20:44:21 dertobi123 Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/net-misc/gsasl/ChangeLog,v 1.30 2009/04/25 23:03:37 patrick Exp $
30 +
31 +*gsasl-1.1 (25 Apr 2009)
32 +
33 + 25 Apr 2009; Patrick Lauer <patrick@g.o> +gsasl-1.1.ebuild:
34 + Bump to 1.1, fixes half of #263867
35
36 *gsasl-0.2.29 (29 Nov 2008)
37
38
39
40
41 1.1 net-misc/gsasl/gsasl-1.1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/gsasl/gsasl-1.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/gsasl/gsasl-1.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: gsasl-1.1.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/net-misc/gsasl/gsasl-1.1.ebuild,v 1.1 2009/04/25 23:03:37 patrick Exp $
51
52 DESCRIPTION="The GNU SASL client, server, and library"
53 HOMEPAGE="http://www.gnu.org/software/gsasl/"
54 SRC_URI="ftp://ftp.gnu.org/pub/gnu/gsasl/${P}.tar.gz"
55 LICENSE="GPL-2"
56 SLOT="0"
57 # TODO: check http://www.gnu.org/software/gsasl/#dependencies for more
58 # optional external libraries.
59 KEYWORDS="~amd64 ~ia64 ~ppc ~sparc ~x86"
60 IUSE="kerberos nls static doc"
61 PROVIDE="virtual/gsasl"
62 DEPEND="nls? ( sys-devel/gettext )
63 kerberos? ( virtual/krb5 )"
64 RDEPEND="${DEPEND}
65 !virtual/gsasl"
66
67 src_compile() {
68 econf \
69 --enable-client \
70 --enable-server \
71 $(use_enable kerberos gssapi) \
72 $(use_enable nls) \
73 $(use_enable static) \
74 || die "econf failed"
75 emake || die "emake failed"
76 }
77
78 src_install() {
79 make DESTDIR="${D}" install || die "einstall failed"
80 dodoc AUTHORS ChangeLog NEWS README README-alpha THANKS
81 doman doc/gsasl.1
82
83 if use doc; then
84 dodoc doc/*.{eps,ps,pdf}
85 dohtml doc/*.html
86 docinto examples
87 dodoc examples/*.c
88 fi
89 }