Gentoo Archives: gentoo-commits

From: "Tobias Scherbaum (dertobi123)" <dertobi123@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/gsasl: ChangeLog gsasl-0.2.28.ebuild gsasl-0.2.10.ebuild gsasl-0.2.3.ebuild gsasl-0.2.21.ebuild gsasl-0.2.26.ebuild
Date: Sun, 07 Sep 2008 08:27:30
Message-Id: E1KcFc7-00027p-QC@stork.gentoo.org
1 dertobi123 08/09/07 08:27:19
2
3 Modified: ChangeLog
4 Added: gsasl-0.2.28.ebuild
5 Removed: gsasl-0.2.10.ebuild gsasl-0.2.3.ebuild
6 gsasl-0.2.21.ebuild gsasl-0.2.26.ebuild
7 Log:
8 Version bump, #236712 and cleanup
9 (Portage version: 2.2_rc8/cvs/Linux 2.6.25-gentoo-r7 x86_64)
10
11 Revision Changes Path
12 1.28 net-misc/gsasl/ChangeLog
13
14 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/gsasl/ChangeLog?rev=1.28&view=markup
15 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/gsasl/ChangeLog?rev=1.28&content-type=text/plain
16 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/gsasl/ChangeLog?r1=1.27&r2=1.28
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/net-misc/gsasl/ChangeLog,v
21 retrieving revision 1.27
22 retrieving revision 1.28
23 diff -u -r1.27 -r1.28
24 --- ChangeLog 15 Jun 2008 13:07:09 -0000 1.27
25 +++ ChangeLog 7 Sep 2008 08:27:19 -0000 1.28
26 @@ -1,6 +1,13 @@
27 # ChangeLog for net-misc/gsasl
28 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/net-misc/gsasl/ChangeLog,v 1.27 2008/06/15 13:07:09 dertobi123 Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/net-misc/gsasl/ChangeLog,v 1.28 2008/09/07 08:27:19 dertobi123 Exp $
31 +
32 +*gsasl-0.2.28 (07 Sep 2008)
33 +
34 + 07 Sep 2008; Tobias Scherbaum <dertobi123@g.o> -gsasl-0.2.3.ebuild,
35 + -gsasl-0.2.10.ebuild, -gsasl-0.2.21.ebuild, -gsasl-0.2.26.ebuild,
36 + +gsasl-0.2.28.ebuild:
37 + Version bump, #236712 and cleanup
38
39 *gsasl-0.2.26 (15 Jun 2008)
40
41
42
43
44 1.1 net-misc/gsasl/gsasl-0.2.28.ebuild
45
46 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/gsasl/gsasl-0.2.28.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/gsasl/gsasl-0.2.28.ebuild?rev=1.1&content-type=text/plain
48
49 Index: gsasl-0.2.28.ebuild
50 ===================================================================
51 # Copyright 1999-2008 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/net-misc/gsasl/gsasl-0.2.28.ebuild,v 1.1 2008/09/07 08:27:19 dertobi123 Exp $
54
55 DESCRIPTION="The GNU SASL client, server, and library"
56 HOMEPAGE="http://www.gnu.org/software/gsasl/"
57 SRC_URI="ftp://alpha.gnu.org/pub/gnu/${PN}/${P}.tar.gz"
58 LICENSE="GPL-3"
59 SLOT="0"
60 # TODO: check http://www.gnu.org/software/gsasl/#dependencies for more
61 # optional external libraries.
62 KEYWORDS="~amd64 ~ia64 ~ppc ~sparc ~x86"
63 IUSE="doc gnutls idn kerberos nls"
64 PROVIDE="virtual/gsasl"
65 DEPEND="nls? ( >=sys-devel/gettext-0.16.1 )
66 kerberos? ( virtual/krb5 )
67 idn? ( net-dns/libidn )
68 gnutls? ( net-libs/gnutls )"
69 RDEPEND="${DEPEND}
70 !virtual/gsasl"
71
72 src_compile() {
73 econf \
74 --enable-client \
75 --enable-server \
76 $(use_enable kerberos gssapi) \
77 $(use_enable kerberos kerberosv5) \
78 $(use_with idn stringprep) \
79 $(use_enable nls) \
80 $(use_with gnutls) \
81 || die "econf failed"
82 emake || die "emake failed"
83 }
84
85 src_install() {
86 emake DESTDIR="${D}" install || die "einstall failed"
87 dodoc AUTHORS ChangeLog NEWS README README-alpha THANKS
88 doman doc/gsasl.1
89
90 if use doc; then
91 dodoc doc/*.{eps,ps,pdf}
92 dohtml doc/*.html
93 docinto examples
94 dodoc examples/*.c
95 fi
96 }