ports/security/libgcrypt/Makefile

38 lines
780 B
Makefile
Raw Normal View History

2023-08-16 22:26:55 +00:00
# Assembly implementations of crypto primitives.
.if ${MACHINE_ARCH} != aarch64 && ${MACHINE_ARCH} != amd64
USE_NOEXECONLY= Yes
.endif
COMMENT= crypto library based on code used in GnuPG
DISTNAME= libgcrypt-1.10.2
REVISION= 0
CATEGORIES= security
SHARED_LIBS += gcrypt 21.1 # 24.2
HOMEPAGE= https://www.gnupg.org/software/libgcrypt/index.html
MAINTAINER= Antoine Jacoutot <ajacoutot@openbsd.org>
# GPLv2/LGPLv2.1
PERMIT_PACKAGE= Yes
WANTLIB += c gpg-error iconv intl
2023-09-28 02:05:49 +00:00
SITES= ${SITE_GNUPG:=libgcrypt/}
2023-08-16 22:26:55 +00:00
LIB_DEPENDS= security/libgpg-error
CONFIGURE_STYLE= gnu
CONFIGURE_ARGS= --enable-static \
--disable-drng-support
MODGNU_CONFIG_GUESS_DIRS= ${WRKSRC} \
${WRKSRC}/build-aux
2023-08-16 22:26:55 +00:00
DEBUG_PACKAGES= ${BUILD_PACKAGES}
.include <bsd.port.mk>