blob: 61a0a05b4362a6adb30b1916e6cbd5d78450e489 (
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
45
46
47
48
49
50
51
52
53
54
55
|
# $NetBSD: Makefile,v 1.41 2014/10/01 11:54:52 wiz Exp $
DISTNAME= libgpg-error-1.16
CATEGORIES= security
MASTER_SITES= ftp://ftp.gnupg.org/gcrypt/libgpg-error/ \
ftp://ftp.ring.gr.jp/pub/net/gnupg/libgpg-error/ \
ftp://mirror.switch.ch/mirror/gnupg/libgpg-error/ \
ftp://ftp.freenet.de/pub/ftp.gnupg.org/gcrypt/libgpg-error/ \
ftp://ftp.gnupg.ca/libgpg-error/
EXTRACT_SUFX= .tar.bz2
MAINTAINER= minskim@NetBSD.org
HOMEPAGE= http://www.gnupg.org/
COMMENT= Definitions of common error values for all GnuPG components
LICENSE= gnu-gpl-v2 AND gnu-lgpl-v2.1
PKG_INSTALLATION_TYPES= overwrite pkgviews
USE_LIBTOOL= yes
USE_TOOLS+= gmake
USE_PKGLOCALEDIR= yes
GNU_CONFIGURE= yes
MAKE_ENV+= LC_ALL="C"
MAKE_JOBS_SAFE= no
.include "../../mk/bsd.prefs.mk"
.if !empty(USE_CROSS_COMPILE:M[yY][eE][sS])
CONFIGURE_ENV+= CC_FOR_BUILD=${NATIVE_CC:Q}
.else
CONFIGURE_ENV+= CC_FOR_BUILD=${CC:Q}\ ${CFLAGS:M*:Q}
.endif
# XXX See HACKS
.if ${OPSYS} == "IRIX" || !empty(MACHINE_PLATFORM:MNetBSD-[3-9]*)
USE_TOOLS+= nawk
.else
USE_TOOLS+= gawk
.endif
# On Dragonfly i386, Pkgsrc libintl segfaults on bindtextdomain function
# while locking a thread. Until that's resolved, stop libgpg-error from
# using NLS which invokes that function during initialization.
PLIST_VARS+= nls
.if ${OPSYS} == "DragonFly" && ${MACHINE} == "i386"
CONFIGURE_ARGS+= --disable-nls
.else
PLIST.nls= yes
.endif
TEST_TARGET= check
.include "../../converters/libiconv/buildlink3.mk"
.include "../../devel/gettext-lib/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|