diff options
author | Andrej Kacian <ticho@gentoo.org> | 2007-09-30 14:16:27 +0000 |
---|---|---|
committer | Andrej Kacian <ticho@gentoo.org> | 2007-09-30 14:16:27 +0000 |
commit | d7e32d815a27119ac7ed5aeb4551109b1f27a1d8 (patch) | |
tree | 9c05db6dedb1f2a3d62d0e470a3ee3f98cb3ad16 /net-misc/gsasl | |
parent | Version bump. Reworked minimal installation to fix bug #193671, thanks to Jak... (diff) | |
download | gentoo-2-d7e32d815a27119ac7ed5aeb4551109b1f27a1d8.tar.gz gentoo-2-d7e32d815a27119ac7ed5aeb4551109b1f27a1d8.tar.bz2 gentoo-2-d7e32d815a27119ac7ed5aeb4551109b1f27a1d8.zip |
Version bump.
(Portage version: 2.1.3.7)
Diffstat (limited to 'net-misc/gsasl')
-rw-r--r-- | net-misc/gsasl/ChangeLog | 7 | ||||
-rw-r--r-- | net-misc/gsasl/files/digest-gsasl-0.2.21 | 3 | ||||
-rw-r--r-- | net-misc/gsasl/gsasl-0.2.21.ebuild | 48 |
3 files changed, 57 insertions, 1 deletions
diff --git a/net-misc/gsasl/ChangeLog b/net-misc/gsasl/ChangeLog index 6442d3b846ce..2d9d1901b2b4 100644 --- a/net-misc/gsasl/ChangeLog +++ b/net-misc/gsasl/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-misc/gsasl # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/gsasl/ChangeLog,v 1.24 2007/02/08 13:43:50 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/gsasl/ChangeLog,v 1.25 2007/09/30 14:16:26 ticho Exp $ + +*gsasl-0.2.21 (30 Sep 2007) + + 30 Sep 2007; Andrej Kacian <ticho@gentoo.org> +gsasl-0.2.21.ebuild: + Version bump. 08 Feb 2007; Diego Pettenò <flameeyes@gentoo.org> ChangeLog: Regenerate digest in Manifest2 format. diff --git a/net-misc/gsasl/files/digest-gsasl-0.2.21 b/net-misc/gsasl/files/digest-gsasl-0.2.21 new file mode 100644 index 000000000000..73a75eaec43b --- /dev/null +++ b/net-misc/gsasl/files/digest-gsasl-0.2.21 @@ -0,0 +1,3 @@ +MD5 e4e3ad374a5317d0860b08aa0b5c63b6 gsasl-0.2.21.tar.gz 3293537 +RMD160 a570098ba0e3f6d1b50b92010c6aeb687ada14ec gsasl-0.2.21.tar.gz 3293537 +SHA256 aedf0731884400e7c7c568d4b0166f1771110fa4d1722d3c3612319ff1fb694b gsasl-0.2.21.tar.gz 3293537 diff --git a/net-misc/gsasl/gsasl-0.2.21.ebuild b/net-misc/gsasl/gsasl-0.2.21.ebuild new file mode 100644 index 000000000000..a92175d84ddc --- /dev/null +++ b/net-misc/gsasl/gsasl-0.2.21.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/gsasl/gsasl-0.2.21.ebuild,v 1.1 2007/09/30 14:16:26 ticho Exp $ + +DESCRIPTION="The GNU SASL client, server, and library" +HOMEPAGE="http://www.gnu.org/software/gsasl/" +SRC_URI="http://josefsson.org/gsasl/releases/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +# TODO: check http://www.gnu.org/software/gsasl/#dependencies for more +# optional external libraries. +KEYWORDS="~amd64 ~ia64 ~ppc ~ppc-macos ~sparc ~x86" +IUSE="doc gnutls kerberos nls static" +PROVIDE="virtual/gsasl" +DEPEND="virtual/libc + nls? ( >=sys-devel/gettext-0.16.1 ) + kerberos? ( virtual/krb5 ) + idn? ( net-dns/libidn ) + gnutls? ( net-libs/gnutls )" +RDEPEND="${DEPEND} + !virtual/gsasl" + +src_compile() { + econf \ + --enable-client \ + --enable-server \ + $(use_enable kerberos gssapi) \ + $(use_enable kerberos kerberosv5) \ + $(use_with idn stringprep) \ + $(use_enable nls) \ + $(use_with gnutls) \ + $(use_enable static) \ + || die "econf failed" + emake || die "emake failed" +} + +src_install() { + make DESTDIR=${D} install || die "einstall failed" + dodoc ABOUT-NLS AUTHORS ChangeLog NEWS README README-alpha THANKS + doman doc/gsasl.1 + + if use doc; then + dodoc doc/*.{eps,ps,pdf} + dohtml doc/*.html + docinto examples + dodoc examples/*.c + fi +} |