* Version 2.8.5 (released 2009-11-02) ** libgnutls: In server side when resuming a session do not overwrite the ** initial session data with the resumed session data. ** libgnutls: Fix PKCS#12 encoding. The error you would get was "The OID is not supported.". Problem introduced for the v2.8.x branch in 2.7.6. ** guile: Compatibility with guile 2.x. By Ludovic Courtes <ludovic.courtes@laas.fr>. ** tests: Fix expired cert in chainverify self-test. ** tests: Fix time bomb in chainverify self-test. Reported by Andreas Metzler <ametzler@downhill.at.eu.org> in <http://thread.gmane.org/gmane.comp.encryption.gpg.gnutls.devel/3925>. ** API and ABI modifications: No changes since last version.
60 lines
1.8 KiB
Makefile
60 lines
1.8 KiB
Makefile
# $NetBSD: Makefile,v 1.89 2009/11/03 00:15:41 wiz Exp $
|
|
|
|
DISTNAME= gnutls-2.8.5
|
|
CATEGORIES= security devel
|
|
MASTER_SITES= ftp://ftp.gnutls.org/pub/gnutls/ \
|
|
ftp://ftp.gnupg.org/gcrypt/gnutls/ \
|
|
${MASTER_SITE_GNU:=gnutls/}
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.gnutls.org/
|
|
COMMENT= GNU Transport Layer Security library
|
|
LICENSE= gnu-gpl-v3 AND gnu-lgpl-v2.1
|
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
USE_LANGUAGES= c c++
|
|
USE_LIBTOOL= yes
|
|
USE_PKGLOCALEDIR= yes
|
|
USE_TOOLS+= gmake
|
|
GNU_CONFIGURE= yes
|
|
TEST_TARGET= check
|
|
INFO_FILES= yes
|
|
|
|
# this library duplicates (and conflicts with) openssl
|
|
CONFIGURE_ARGS+= --disable-openssl-compatibility
|
|
|
|
PKGCONFIG_OVERRIDE= lib/gnutls.pc.in
|
|
PKGCONFIG_OVERRIDE+= libextra/gnutls-extra.pc.in
|
|
|
|
MAKE_ENV+= RM=${RM:Q}
|
|
MAKE_ENV+= TZ=UTC
|
|
|
|
DOCDIR= ${PREFIX}/share/doc/gnutls
|
|
EGDIR= ${PREFIX}/share/examples/gnutls
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
INSTALLATION_DIRS= ${DOCDIR} ${EGDIR} include/gnutls
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/doc/TODO ${DESTDIR}${DOCDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/doc/gnutls.ps ${DESTDIR}${DOCDIR}
|
|
cd ${WRKSRC}/doc/examples && ${INSTALL_DATA} *.c ${DESTDIR}${EGDIR}
|
|
|
|
.include "../../archivers/lzo/buildlink3.mk"
|
|
.include "../../converters/libiconv/buildlink3.mk"
|
|
.include "../../devel/gettext-lib/buildlink3.mk"
|
|
.include "../../devel/libcfg+/buildlink3.mk"
|
|
.include "../../devel/zlib/buildlink3.mk"
|
|
BUILDLINK_API_DEPENDS.libgcrypt+= libgcrypt>=1.4
|
|
.include "../../security/libgcrypt/buildlink3.mk"
|
|
BUILDLINK_API_DEPENDS.libtasn1+= libtasn1>=0.3.4
|
|
.include "../../security/libtasn1/buildlink3.mk"
|
|
BUILDLINK_API_DEPENDS.opencdk+= opencdk>=0.6.5
|
|
.include "../../security/opencdk/buildlink3.mk"
|
|
# guile is useful for selftests, but bindings should be separate pkgs
|
|
#.include "../../lang/guile/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|