e47609ba13
Noteworthy changes in version 1.6.1 (2014-01-29) ------------------------------------------------ * Added emulation for broken Whirlpool code prior to 1.6.0. * Improved performance of KDF functions. * Improved ECDSA compliance. * Fixed locking for Windows and non-ELF Pthread systems (regression in 1.6.0) * Fixed message digest lookup by OID (regression in 1.6.0). * Fixed a build problem on NetBSD. * Fixed memory leaks in ECC code. * Fixed some asm build problems and feature detection bugs. * Interface changes relative to the 1.6.0 release: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ GCRY_MD_FLAG_BUGEMU1 NEW (minor API change).
42 lines
1 KiB
Makefile
42 lines
1 KiB
Makefile
# $NetBSD: Makefile,v 1.61 2014/02/03 16:51:35 wiz Exp $
|
|
|
|
DISTNAME= libgcrypt-1.6.1
|
|
CATEGORIES= security
|
|
MASTER_SITES= ftp://ftp.gnupg.org/gcrypt/libgcrypt/ \
|
|
http://gd.tuwien.ac.at/privacy/gnupg/libgcrypt/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://directory.fsf.org/project/libgcrypt/
|
|
COMMENT= GNU cryptographic library
|
|
LICENSE= gnu-gpl-v2 AND gnu-lgpl-v2.1
|
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
|
|
USE_LIBTOOL= yes
|
|
GNU_CONFIGURE= yes
|
|
|
|
TEST_TARGET= check
|
|
|
|
TEXINFO_REQD= 4.0
|
|
INFO_FILES= yes # PLIST
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.if empty(MACHINE_PLATFORM:MNetBSD-*-i386) && \
|
|
empty(MACHINE_PLATFORM:MNetBSD-*-alpha) && \
|
|
empty(MACHINE_PLATFORM:MNetBSD-*-sparc) && \
|
|
empty(MACHINE_PLATFORM:M*-*-hppa)
|
|
CONFIGURE_ARGS+= --disable-asm
|
|
.endif
|
|
CONFIGURE_ARGS+= --disable-aesni-support
|
|
|
|
.if !empty(PKGSRC_COMPILER:Mclang)
|
|
CFLAGS+= -fheinous-gnu-extensions
|
|
.endif
|
|
|
|
.include "options.mk"
|
|
|
|
.include "../../security/libgpg-error/buildlink3.mk"
|
|
.include "../../mk/pthread.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|