summaryrefslogtreecommitdiff
path: root/security/libgcrypt/options.mk
blob: 1d5de51c94f662c346e9c31ae6826d7546fc3f0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# $NetBSD: options.mk,v 1.6 2011/02/19 00:55:31 jmcneill Exp $

PKG_OPTIONS_VAR=	PKG_OPTIONS.libgcrypt
PKG_SUPPORTED_OPTIONS=	idea

.include "../../mk/bsd.prefs.mk"

.if ${MACHINE_ARCH} == "i386" && ${OPSYS} != "Darwin"
.  include "../../mk/compiler.mk"
# GCC 3.x (at least 3.3.3 on NetBSD) fails to compile asm() call in
# cipher/rijndael.c:do_padlock()
.  if empty(CC_VERSION:Mgcc-3.*)
PKG_SUPPORTED_OPTIONS+=	via-padlock
# With GCC 4.1.3 on NetBSD, do_padlock() crashes with signal 11
.    if ${OPSYS} != "NetBSD"
PKG_SUGGESTED_OPTIONS+=	via-padlock
.    endif
.  endif
.endif

.include "../../mk/bsd.options.mk"

.if empty(PKG_OPTIONS:Mvia-padlock)
# Disable VIA Padlock support.
CONFIGURE_ARGS+=	--disable-padlock-support
.endif

.if !empty(PKG_OPTIONS:Midea)
# use of IDEA as crypto function
LICENSE=	idea-license
RESTRICTED=	Commercial distribution is claimed to require a license.
NO_SRC_ON_CDROM=	${RESTRICTED}
NO_BIN_ON_CDROM=	${RESTRICTED}

DISTFILES+=	gcrypt.tar.bz2
SITES.gcrypt.tar.bz2=	http://www.kfwebs.com/
CFLAGS+=	-DUSE_IDEA
MAKE_ENV+=	IDEAOBJECT=idea.lo
USE_TOOLS+=	patch
post-patch:	ideapatch
ideapatch:
	cd ${WRKDIR} && ${PATCH} <${FILESDIR}/idea-patch && \
	${CP} idea.c ${WRKSRC}/cipher
.endif