blob: b16222d894cbef5b99f720ef1a8cad5e75635840 (
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
|
# $NetBSD: Makefile,v 1.4 2003/05/13 03:07:10 salo Exp $
#
DISTNAME= libgcrypt-1.1.12
CATEGORIES= security
MASTER_SITES= ftp://ftp.gnupg.org/gcrypt/alpha/libgcrypt/ \
http://gd.tuwien.ac.at/privacy/gnupg/alpha/libgcrypt/
MAINTAINER= tron@netbsd.org
HOMEPAGE= http://www.gnu.org/directory/security/libgcrypt.html
COMMENT= GNU cryptographic library
USE_BUILDLINK2= YES
USE_LIBTOOL= YES
GNU_CONFIGURE= YES
TEST_TARGET= check
TEXINFO_OVERRIDE= YES
TEXINFO_REQD= 4.0
.include "../../mk/bsd.prefs.mk"
# Our "libtool" doesn't like the crafted ".lo" files with the assembly
# implementations. So we use the bundled "libtool" for NetBSD-i386 ELF
# and ours otherwise.
.if ${MACHINE_GNU_PLATFORM} != i386--netbsdelf && ${MACHINE_GNU_PLATFORM} != alpha--netbsd
CONFIGURE_ARGS+= --disable-asm
LIBTOOL_OVERRIDE+= ${WRKSRC}/libtool
.endif
.include "../../mk/texinfo.mk"
.include "../../mk/bsd.pkg.mk"
|