diff options
author | obache <obache@pkgsrc.org> | 2006-12-09 14:06:13 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2006-12-09 14:06:13 +0000 |
commit | 49815f9884ac047d45b821bfa43abc5879b32779 (patch) | |
tree | 8eab5e03aef9d4267c89604b86e667e33f41ce1a /security/gsasl/Makefile | |
parent | 9c2976b66adb58533e20bb9e5fe7bdca4624e3bb (diff) | |
download | pkgsrc-49815f9884ac047d45b821bfa43abc5879b32779.tar.gz |
Update gsasl to 0.2.15, based on patch provided by PR 33638.
* Version 0.2.15 (released 2006-08-22)
** Changed libgsasl shared library version.
The shared library version was not incremented correctly in the last
release, even though new APIs were added.
* Version 0.2.14 (released 2006-08-19)
** New section "Requirements" in the manual, lists the external components.
Suggested by James Mansion.
** Update of gnulib files.
* Version 0.2.13 (released 2006-06-14)
** Update of gnulib files.
Further improves portability to MinGW.
** Various improvements in the manuals.
** The tests are run under valgrind, if it is installed.
Use --disable-valgrind-tests to unconditionally disable this. It is
disabled by default for cross compiles.
** Various minor fixes.
* Version 0.2.12 (released 2006-03-08)
** Update of gnulib files.
Improves portability to Mingw32.
* Version 0.2.11 (released 2006-02-07)
** Ported to Windows by cross-compiling using Mingw32.
Using Debian's mingw32 compiler, you can build it for Windows by invoking
`./configure --host=i586-mingw32msvc --disable-gssapi'.
** Update of gnulib files.
* Version 0.2.10 (released 2005-10-23)
** Work around bug in GnuTLS that made the command line tool exit after
** failing to write a zero length message to the peer.
** Don't use GnuTLS if gnutls_certificate_verify_peers2 isn't present.
** Update of gnulib files.
* Version 0.2.9 (released 2005-10-07)
** Update of gnulib files.
* Version 0.2.8 (released 2005-09-08)
** The gsasl tool now support STARTTLS for IMAP and SMTP using GnuTLS.
** The --client and --server parameters for the gsasl tool now work properly.
** The --client and --server stdin/stdout modes now use the readline library.
** Fixed build problems in getpass on uClibc and Mingw32 platforms.
** Kinyarwanda translation added.
* Version 0.2.7 (released 2005-08-25)
** Fix build problems when cross-compiling to uClibc and Mingw32 platforms.
** Detecting and using the readline library has been improved.
* Version 0.2.6 (released 2005-08-08)
** The gsasl tool now try to connect to all addresses for a server name.
** The help-gsasl@gnu.org mailing list is now mentioned in documentation.
** The license template in files were updated with the new FSF address.
** Update of gnulib files.
Diffstat (limited to 'security/gsasl/Makefile')
-rw-r--r-- | security/gsasl/Makefile | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/security/gsasl/Makefile b/security/gsasl/Makefile index 136b46b6219..03d2d6b886c 100644 --- a/security/gsasl/Makefile +++ b/security/gsasl/Makefile @@ -1,10 +1,9 @@ -# $NetBSD: Makefile,v 1.18 2006/04/13 18:23:37 jlam Exp $ +# $NetBSD: Makefile,v 1.19 2006/12/09 14:06:13 obache Exp $ -DISTNAME= gsasl-0.2.5 -PKGREVISION= 1 +DISTNAME= gsasl-0.2.15 CATEGORIES= security MASTER_SITES= http://josefsson.org/gsasl/releases/ \ - ${MASTER_SITE_GNU:=gsasl/} + ftp://alpha.gnu.org/pub/gnu/gsasl/ MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://www.gnu.org/software/gsasl/ @@ -18,14 +17,20 @@ TEST_TARGET= check CONFIGURE_ARGS+= --disable-gtk-doc CONFIGURE_ARGS+= --with-html-dir=${PREFIX}/share/doc/html +CONFIGURE_ARGS+= --with-libgcrypt +CONFIGURE_ARGS+= --enable-gssapi=${GSSIMPL.${KRB5_TYPE}} +GSSIMPL.heimdal= heimdal +GSSIMPL.mit-krb5= mit -PKGCONFIG_OVERRIDE+= libgsasl.pc.in -INFO_FILES= # PLIST +PKGCONFIG_OVERRIDE+= lib/libgsasl.pc.in +INFO_FILES= YES .include "../../devel/gettext-lib/buildlink3.mk" .include "../../devel/libidn/buildlink3.mk" .include "../../devel/libntlm/buildlink3.mk" -.include "../../security/gss/buildlink3.mk" +.include "../../devel/readline/buildlink3.mk" +.include "../../security/gnutls/buildlink3.mk" .include "../../security/libgcrypt/buildlink3.mk" +.include "../../mk/krb5.buildlink3.mk" .include "../../mk/bsd.pkg.mk" |