summaryrefslogtreecommitdiff
path: root/security/gnupg
diff options
context:
space:
mode:
authorrillig <rillig>2005-12-05 20:49:47 +0000
committerrillig <rillig>2005-12-05 20:49:47 +0000
commitb4f920543059af038598712771c3211999ef42a6 (patch)
treedac5b1dd14794d86b061d26b9503adb2552ed3f8 /security/gnupg
parent5bf026ec112f405b514a2d69a72e10fa92c4c524 (diff)
downloadpkgsrc-b4f920543059af038598712771c3211999ef42a6.tar.gz
Fixed pkglint warnings. The warnings are mostly quoting issues, for
example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some other changes are outlined in http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html
Diffstat (limited to 'security/gnupg')
-rw-r--r--security/gnupg/Makefile4
-rw-r--r--security/gnupg/hacks.mk6
-rw-r--r--security/gnupg/options.mk4
3 files changed, 7 insertions, 7 deletions
diff --git a/security/gnupg/Makefile b/security/gnupg/Makefile
index e962f7de410..486f5cf4cf3 100644
--- a/security/gnupg/Makefile
+++ b/security/gnupg/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.78 2005/10/10 20:45:19 reed Exp $
+# $NetBSD: Makefile,v 1.79 2005/12/05 20:50:56 rillig Exp $
DISTNAME= gnupg-1.4.2
CATEGORIES= security
@@ -40,7 +40,7 @@ CONFIGURE_ARGS+= --disable-gnupg-iconv
# XXX: still needed?
.if ${OPSYS} == "FreeBSD"
-SUBST_CLASSES= fixme
+SUBST_CLASSES+= fixme
SUBST_STAGE.fixme= post-configure
SUBST_FILES.fixme= mpi/i386/mpih-add1.S mpi/i386/mpih-lshift.S \
mpi/i386/mpih-mul1.S mpi/i386/mpih-mul2.S \
diff --git a/security/gnupg/hacks.mk b/security/gnupg/hacks.mk
index c9e9da96975..ed619453afb 100644
--- a/security/gnupg/hacks.mk
+++ b/security/gnupg/hacks.mk
@@ -1,7 +1,7 @@
-# $NetBSD: hacks.mk,v 1.2 2005/10/04 22:50:41 wiz Exp $
+# $NetBSD: hacks.mk,v 1.3 2005/12/05 20:50:56 rillig Exp $
-.ifndef GNUPG_HACKS_MK
-GNUPG_HACKS_MK= #defined
+.if !defined(GNUPG_HACKS_MK)
+GNUPG_HACKS_MK= # defined
### workaround for a GCC optimizer bug on sparc:
### drop any -mcpu flag
diff --git a/security/gnupg/options.mk b/security/gnupg/options.mk
index 367487fc14c..320052a9948 100644
--- a/security/gnupg/options.mk
+++ b/security/gnupg/options.mk
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.4 2005/07/15 18:27:53 jlam Exp $
+# $NetBSD: options.mk,v 1.5 2005/12/05 20:50:56 rillig Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.gnupg
PKG_SUPPORTED_OPTIONS= i586-optimized curl idea ldap m68060-optimized
@@ -41,6 +41,6 @@ PLIST_SUBST+= OPENLDAP="@comment "
.if !empty(PKG_OPTIONS:Mm68060-optimized)
# be more efficient on M68060 machines
-CONFIGURE_ENV+= M68060=${M68060}
+CONFIGURE_ENV+= M68060=${M68060:Q}
CFLAGS+= -m68060
.endif