summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrillig <rillig@pkgsrc.org>2018-01-01 18:16:35 +0000
committerrillig <rillig@pkgsrc.org>2018-01-01 18:16:35 +0000
commitb18c532e6ecd247c16c309db2b6ebfb2d9d9b929 (patch)
tree7a8380c1b05f2a6cfadde7f15fc8cafd97355633
parent102f0b322dc649972205d0be0d0fc29afdf59f22 (diff)
downloadpkgsrc-b18c532e6ecd247c16c309db2b6ebfb2d9d9b929.tar.gz
Replaced $(ROUND) with ${CURLY} variable references.
This has been a pkglint warning for several years now, and pkglint can even fix it automatically. And it did for this commit. Only in lang/mercury, two passes of autofixing were necessary because there were nested variables.
-rw-r--r--audio/rio/Makefile4
-rw-r--r--benchmarks/skampi/Makefile4
-rw-r--r--biology/gabedit/DESCR2
-rw-r--r--databases/clisp-bdb/Makefile4
-rw-r--r--databases/clisp-gdbm/Makefile4
-rw-r--r--databases/clisp-pgsql/Makefile4
-rw-r--r--devel/clisp-pcre/Makefile4
-rw-r--r--devel/clisp-syscalls/Makefile4
-rw-r--r--devel/clisp-wildcard/Makefile4
-rw-r--r--devel/libftdi1/Makefile4
-rw-r--r--devel/tcl-tclcl/Makefile6
-rw-r--r--graphics/gif2png/Makefile4
-rw-r--r--graphics/tuxpaint/Makefile6
-rw-r--r--lang/algol68g/Makefile4
-rw-r--r--lang/chicken/Makefile8
-rw-r--r--lang/clojure/Makefile4
-rw-r--r--lang/ecl/Makefile4
-rw-r--r--lang/gcc48-libs/buildlink3.mk4
-rw-r--r--lang/gcc49-libs/buildlink3.mk4
-rw-r--r--lang/gcc5-libs/buildlink3.mk4
-rw-r--r--lang/gcc6-libs/buildlink3.mk4
-rw-r--r--lang/kali/Makefile6
-rw-r--r--lang/mercury/Makefile4
-rw-r--r--lang/openjdk7/builtin.mk4
-rw-r--r--lang/pforth/Makefile6
-rw-r--r--lang/polyml/Makefile4
-rw-r--r--lang/sbcl/Makefile8
-rw-r--r--mail/deliver/Makefile6
-rw-r--r--math/mathomatic/Makefile4
-rw-r--r--math/minisat/Makefile10
-rw-r--r--math/mtl/Makefile4
-rw-r--r--math/xfractint/Makefile4
-rw-r--r--net/clisp-rawsock/Makefile4
-rw-r--r--net/nicotine/Makefile4
-rw-r--r--parallel/gridscheduler/Makefile4
-rw-r--r--parallel/openmpi/Makefile6
-rw-r--r--parallel/slurm/Makefile12
-rw-r--r--parallel/threadingbuildingblocks/Makefile18
-rw-r--r--print/poppler-includes/Makefile8
-rw-r--r--print/tex-blindtext/options.mk6
-rw-r--r--security/munge/Makefile6
-rw-r--r--security/openpam/Makefile4
-rw-r--r--security/p5-Dancer-Plugin-Auth-RBAC/Makefile4
-rw-r--r--security/tacshell/Makefile4
-rw-r--r--time/projectlibre/Makefile14
-rw-r--r--www/clisp-fastcgi/Makefile4
-rw-r--r--www/thttpd/Makefile4
47 files changed, 127 insertions, 125 deletions
diff --git a/audio/rio/Makefile b/audio/rio/Makefile
index ab9b90bef84..aa10992f7dd 100644
--- a/audio/rio/Makefile
+++ b/audio/rio/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.26 2017/09/04 18:00:49 wiz Exp $
+# $NetBSD: Makefile,v 1.27 2018/01/01 18:16:35 rillig Exp $
#
DISTNAME= rio007
@@ -17,7 +17,7 @@ ONLY_FOR_PLATFORM= NetBSD-*-i386 NetBSD-*-x86_64
WRKSRC= ${WRKDIR}/rio107
MAKE_FILE= makefile
USE_LANGUAGES= c++
-LIBS.NetBSD= -l$(MACHINE_ARCH)
+LIBS.NetBSD= -l${MACHINE_ARCH}
INSTALLATION_DIRS= bin
SPECIAL_PERMS= bin/rio ${SETUID_ROOT_PERMS}
diff --git a/benchmarks/skampi/Makefile b/benchmarks/skampi/Makefile
index 692b19ae8ad..f54cdb042cc 100644
--- a/benchmarks/skampi/Makefile
+++ b/benchmarks/skampi/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.27 2017/09/04 18:00:50 wiz Exp $
+# $NetBSD: Makefile,v 1.28 2018/01/01 18:16:35 rillig Exp $
#
DISTNAME= skampi
@@ -20,7 +20,7 @@ INSTALLATION_DIRS= bin
# Force file regeneration:
post-extract:
- rm $(WRKSRC)/Makefile.dep
+ rm ${WRKSRC}/Makefile.dep
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/skampi ${DESTDIR}${PREFIX}/bin/skampi
diff --git a/biology/gabedit/DESCR b/biology/gabedit/DESCR
index d2d29f51602..cbc9c19facc 100644
--- a/biology/gabedit/DESCR
+++ b/biology/gabedit/DESCR
@@ -24,7 +24,7 @@ Major features
+ Contours (colorcoded), Planes colorcoded, Dipole. XYZ axes
and the principal axes of the molecule.
+ Animation of the normal modes corresponding to vibrational
- frequencies.
+ frequencies.
+ Animation of the rotation of geometry, surfaces, contours,
planes colorcoded, xyz and the principal axes of the molecule.
+ Animation of contours, Animation of planes colorcoded.
diff --git a/databases/clisp-bdb/Makefile b/databases/clisp-bdb/Makefile
index 1c4883fbdee..58de4148c8c 100644
--- a/databases/clisp-bdb/Makefile
+++ b/databases/clisp-bdb/Makefile
@@ -1,9 +1,9 @@
-# $NetBSD: Makefile,v 1.4 2013/04/06 13:09:24 rodent Exp $
+# $NetBSD: Makefile,v 1.5 2018/01/01 18:16:35 rillig Exp $
#
CLISP_MODULE= berkeley-db
-PKGNAME= clisp-bdb-$(CLISP_VERSION)
+PKGNAME= clisp-bdb-${CLISP_VERSION}
CATEGORIES= databases
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=clisp/}
diff --git a/databases/clisp-gdbm/Makefile b/databases/clisp-gdbm/Makefile
index 19190515916..1929f5229c1 100644
--- a/databases/clisp-gdbm/Makefile
+++ b/databases/clisp-gdbm/Makefile
@@ -1,9 +1,9 @@
-# $NetBSD: Makefile,v 1.4 2012/01/24 09:10:58 sbd Exp $
+# $NetBSD: Makefile,v 1.5 2018/01/01 18:16:35 rillig Exp $
#
CLISP_MODULE= gdbm
-PKGNAME= clisp-$(CLISP_MODULE)-$(CLISP_VERSION)
+PKGNAME= clisp-${CLISP_MODULE}-${CLISP_VERSION}
PKGREVISION= 2
CATEGORIES= databases
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=clisp/}
diff --git a/databases/clisp-pgsql/Makefile b/databases/clisp-pgsql/Makefile
index f694aeb8fc8..1eb1c3418b4 100644
--- a/databases/clisp-pgsql/Makefile
+++ b/databases/clisp-pgsql/Makefile
@@ -1,9 +1,9 @@
-# $NetBSD: Makefile,v 1.3 2016/10/09 21:41:55 wiz Exp $
+# $NetBSD: Makefile,v 1.4 2018/01/01 18:16:35 rillig Exp $
#
CLISP_MODULE= postgresql
-PKGNAME= clisp-pgsql-$(CLISP_VERSION)
+PKGNAME= clisp-pgsql-${CLISP_VERSION}
PKGREVISION= 2
CATEGORIES= databases
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=clisp/}
diff --git a/devel/clisp-pcre/Makefile b/devel/clisp-pcre/Makefile
index f64e45f0c99..9e7d10a4cb2 100644
--- a/devel/clisp-pcre/Makefile
+++ b/devel/clisp-pcre/Makefile
@@ -1,9 +1,9 @@
-# $NetBSD: Makefile,v 1.4 2012/10/31 11:16:46 asau Exp $
+# $NetBSD: Makefile,v 1.5 2018/01/01 18:16:35 rillig Exp $
#
CLISP_MODULE= pcre
-PKGNAME= clisp-$(CLISP_MODULE)-$(CLISP_VERSION)
+PKGNAME= clisp-${CLISP_MODULE}-${CLISP_VERSION}
PKGREVISION= 1
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=clisp/}
diff --git a/devel/clisp-syscalls/Makefile b/devel/clisp-syscalls/Makefile
index dc5b0a3398c..d7f3932ccd8 100644
--- a/devel/clisp-syscalls/Makefile
+++ b/devel/clisp-syscalls/Makefile
@@ -1,9 +1,9 @@
-# $NetBSD: Makefile,v 1.4 2011/12/02 20:47:04 marino Exp $
+# $NetBSD: Makefile,v 1.5 2018/01/01 18:16:35 rillig Exp $
#
CLISP_MODULE= syscalls
-PKGNAME= clisp-$(CLISP_MODULE)-$(CLISP_VERSION)
+PKGNAME= clisp-${CLISP_MODULE}-${CLISP_VERSION}
PKGREVISION= 1
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=clisp/}
diff --git a/devel/clisp-wildcard/Makefile b/devel/clisp-wildcard/Makefile
index 96f8baf1b69..4e07d8246e8 100644
--- a/devel/clisp-wildcard/Makefile
+++ b/devel/clisp-wildcard/Makefile
@@ -1,9 +1,9 @@
-# $NetBSD: Makefile,v 1.3 2013/04/06 13:09:24 rodent Exp $
+# $NetBSD: Makefile,v 1.4 2018/01/01 18:16:36 rillig Exp $
#
CLISP_MODULE= wildcard
-PKGNAME= clisp-$(CLISP_MODULE)-$(CLISP_VERSION)
+PKGNAME= clisp-${CLISP_MODULE}-${CLISP_VERSION}
PKGREVISION= 1
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=clisp/}
diff --git a/devel/libftdi1/Makefile b/devel/libftdi1/Makefile
index 229caf56d7b..3a18ff24b30 100644
--- a/devel/libftdi1/Makefile
+++ b/devel/libftdi1/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.19 2017/08/24 20:03:11 adam Exp $
+# $NetBSD: Makefile,v 1.20 2018/01/01 18:16:36 rillig Exp $
DISTNAME= libftdi1-1.1
PKGREVISION= 7
@@ -30,7 +30,7 @@ PKGCONFIG_OVERRIDE+= libftdipp1.pc.in
PLIST_SUBST+= PYSITELIB=${PYSITELIB}
do-configure:
- (cd $(WRKSRC) ; \
+ (cd ${WRKSRC} ; \
cmake \
-DEXAMPLES:BOOL=off \
-DDOCUMENTATION:BOOL=off \
diff --git a/devel/tcl-tclcl/Makefile b/devel/tcl-tclcl/Makefile
index 55229c74ff6..2e78a99f92f 100644
--- a/devel/tcl-tclcl/Makefile
+++ b/devel/tcl-tclcl/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.28 2014/10/09 14:06:31 wiz Exp $
+# $NetBSD: Makefile,v 1.29 2018/01/01 18:16:36 rillig Exp $
DISTNAME= tclcl-src-1.20
PKGNAME= tcl-${DISTNAME:S/-src//}
@@ -27,8 +27,8 @@ BUILDLINK_DEPMETHOD.libXt?= build
.include "../../lang/tcl/Makefile.version"
.include "../../x11/tk/Makefile.version"
-CONFIGURE_ARGS+=--with-tcl-ver=$(TCL_VERSION)
-CONFIGURE_ARGS+=--with-tk-ver=$(TK_VERSION)
+CONFIGURE_ARGS+=--with-tcl-ver=${TCL_VERSION}
+CONFIGURE_ARGS+=--with-tk-ver=${TK_VERSION}
.include "../../lang/tcl/buildlink3.mk"
.include "../../lang/tcl-otcl/buildlink3.mk"
diff --git a/graphics/gif2png/Makefile b/graphics/gif2png/Makefile
index e9253932116..673eedb1d9c 100644
--- a/graphics/gif2png/Makefile
+++ b/graphics/gif2png/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.52 2015/09/08 18:52:56 joerg Exp $
+# $NetBSD: Makefile,v 1.53 2018/01/01 18:16:36 rillig Exp $
DISTNAME= gif2png-2.5.11
PKGREVISION= 1
@@ -18,7 +18,7 @@ INSTALL_MAKE_FLAGS+= prefix=${DESTDIR}${PREFIX}
INSTALLATION_DIRS+= ${PKGMANDIR}/man1
post-install:
- ${MV} ${DESTDIR}$(PREFIX)/share/man/man1/*.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1
+ ${MV} ${DESTDIR}${PREFIX}/share/man/man1/*.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1
.include "../../graphics/png/buildlink3.mk"
.include "../../lang/python/application.mk"
diff --git a/graphics/tuxpaint/Makefile b/graphics/tuxpaint/Makefile
index b07d56780a2..609d5a7cc17 100644
--- a/graphics/tuxpaint/Makefile
+++ b/graphics/tuxpaint/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.88 2017/02/12 06:25:31 ryoon Exp $
+# $NetBSD: Makefile,v 1.89 2018/01/01 18:16:36 rillig Exp $
DISTNAME= tuxpaint-0.9.22
PKGREVISION= 4
@@ -30,8 +30,8 @@ MAKE_FLAGS+= CPPFLAGS=${CPPFLAGS:Q}
MAKE_FLAGS+= LDFLAGS=${LDFLAGS:Q}
MAKE_FLAGS+= CHMOD=${CHMOD:Q}
MAKE_FLAGS+= PREFIX=${PREFIX}
-MAKE_FLAGS+= LOCALE_PREFIX=$(DESTDIR)$(PREFIX)/$(PKGLOCALEDIR)/locale
-MAKE_FLAGS+= MAN_PREFIX=$(DESTDIR)$(PREFIX)/${PKGMANDIR}/
+MAKE_FLAGS+= LOCALE_PREFIX=${DESTDIR}${PREFIX}/${PKGLOCALEDIR}/locale
+MAKE_FLAGS+= MAN_PREFIX=${DESTDIR}${PREFIX}/${PKGMANDIR}/
MAKE_FLAGS+= GPERF=${PREFIX}/bin/gperf
EGDIR= ${PREFIX}/share/examples/tuxpaint
CONF_FILES= ${EGDIR}/tuxpaint.conf ${PKG_SYSCONFDIR}/tuxpaint.conf
diff --git a/lang/algol68g/Makefile b/lang/algol68g/Makefile
index a56531e4381..6e7ab7e4864 100644
--- a/lang/algol68g/Makefile
+++ b/lang/algol68g/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.13 2016/10/09 21:41:59 wiz Exp $
+# $NetBSD: Makefile,v 1.14 2018/01/01 18:16:36 rillig Exp $
DISTNAME= algol68g-2.8.3
PKGREVISION= 1
@@ -12,7 +12,7 @@ LICENSE= gnu-gpl-v3
USE_LANGUAGES= c
GNU_CONFIGURE= yes
-CONFIGURE_ARGS= --docdir=$(PREFIX)/share/doc/$(PKGBASE)
+CONFIGURE_ARGS= --docdir=${PREFIX}/share/doc/${PKGBASE}
TEST_TARGET= check
diff --git a/lang/chicken/Makefile b/lang/chicken/Makefile
index 5c9b25897d0..03917227fc9 100644
--- a/lang/chicken/Makefile
+++ b/lang/chicken/Makefile
@@ -1,9 +1,9 @@
-# $NetBSD: Makefile,v 1.57 2017/01/19 18:52:13 agc Exp $
+# $NetBSD: Makefile,v 1.58 2018/01/01 18:16:36 rillig Exp $
DISTNAME= chicken-4.11.0
CATEGORIES= lang
-MASTER_SITES= http://code.call-cc.org/releases/$(PKGVERSION_NOREV)/
-MASTER_SITES+= http://code.call-cc.org/releases/$(PKGVERSION_NOREV:R)/
+MASTER_SITES= http://code.call-cc.org/releases/${PKGVERSION_NOREV}/
+MASTER_SITES+= http://code.call-cc.org/releases/${PKGVERSION_NOREV:R}/
MAINTAINER= asau@inbox.ru #, airhead@users.sourceforge.net
HOMEPAGE= http://www.call-cc.org/
@@ -41,7 +41,7 @@ PKG_SKIP_REASON+= "${OPSYS} is not supported"
.endif
MAKE_FILE= GNUmakefile
-MAKE_ENV+= C_COMPILER=$(CC:Q)
+MAKE_ENV+= C_COMPILER=${CC:Q}
MAKE_ENV+= HOST= # fix ${HOST} prepending ${CC}
# Need to have these in MAKE_FLAGS, MAKE_ENV is not enough due to the
# way the build system overrides them.
diff --git a/lang/clojure/Makefile b/lang/clojure/Makefile
index 33775c49036..d02f60291d0 100644
--- a/lang/clojure/Makefile
+++ b/lang/clojure/Makefile
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.4 2017/08/01 14:59:01 wiz Exp $
+# $NetBSD: Makefile,v 1.5 2018/01/01 18:16:36 rillig Exp $
DISTNAME= clojure-1.5.1
CATEGORIES= lang
-MASTER_SITES= http://repo1.maven.org/maven2/org/clojure/clojure/$(PKGVERSION_NOREV)/
+MASTER_SITES= http://repo1.maven.org/maven2/org/clojure/clojure/${PKGVERSION_NOREV}/
EXTRACT_SUFX= .zip
MAINTAINER= ryoon@NetBSD.org
diff --git a/lang/ecl/Makefile b/lang/ecl/Makefile
index 748d6b94252..d9ece773832 100644
--- a/lang/ecl/Makefile
+++ b/lang/ecl/Makefile
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.22 2016/03/11 20:32:30 asau Exp $
+# $NetBSD: Makefile,v 1.23 2018/01/01 18:16:36 rillig Exp $
DISTNAME= ecl-16.1.2
CATEGORIES= lang
-MASTER_SITES= https://common-lisp.net/project/ecl/files/release/$(PKGVERSION_NOREV)/
+MASTER_SITES= https://common-lisp.net/project/ecl/files/release/${PKGVERSION_NOREV}/
EXTRACT_SUFX= .tgz
MAINTAINER= asau@inbox.ru
diff --git a/lang/gcc48-libs/buildlink3.mk b/lang/gcc48-libs/buildlink3.mk
index bee4b2c12b8..2294a8a53fd 100644
--- a/lang/gcc48-libs/buildlink3.mk
+++ b/lang/gcc48-libs/buildlink3.mk
@@ -1,4 +1,4 @@
-# $NetBSD: buildlink3.mk,v 1.10 2015/02/04 14:16:24 jperkin Exp $
+# $NetBSD: buildlink3.mk,v 1.11 2018/01/01 18:16:37 rillig Exp $
BUILDLINK_TREE+= gcc48-libs
@@ -30,7 +30,7 @@ GCC_TARGET_MACHINE?= ${MACHINE_GNU_PLATFORM}
# XXX: Using %M requires patched version of gcc (e.g. lang/gcc48)
${SPECS_LIBGCC}:
@${ECHO} "*link_libgcc:" >${SPECS_LIBGCC}
- @${ECHO} "%D $(LINKER_RPATH_FLAG)${LIBGCC_PREFIX}/${GCC_TARGET_MACHINE}/lib/%M" >>${SPECS_LIBGCC}
+ @${ECHO} "%D ${LINKER_RPATH_FLAG}${LIBGCC_PREFIX}/${GCC_TARGET_MACHINE}/lib/%M" >>${SPECS_LIBGCC}
_WRAP_EXTRA_ARGS.CC+= -specs=${SPECS_LIBGCC}
_WRAP_EXTRA_ARGS.CXX+= -specs=${SPECS_LIBGCC}
diff --git a/lang/gcc49-libs/buildlink3.mk b/lang/gcc49-libs/buildlink3.mk
index c7a7c7199c4..a8ea452b36c 100644
--- a/lang/gcc49-libs/buildlink3.mk
+++ b/lang/gcc49-libs/buildlink3.mk
@@ -1,4 +1,4 @@
-# $NetBSD: buildlink3.mk,v 1.2 2015/02/04 14:16:24 jperkin Exp $
+# $NetBSD: buildlink3.mk,v 1.3 2018/01/01 18:16:37 rillig Exp $
BUILDLINK_TREE+= gcc49-libs
@@ -29,7 +29,7 @@ GCC_TARGET_MACHINE?= ${MACHINE_GNU_PLATFORM}
${SPECS_LIBGCC}:
@${ECHO} "*link_libgcc:" >${SPECS_LIBGCC}
- @${ECHO} "%D $(LINKER_RPATH_FLAG)${LIBGCC_PREFIX}/${GCC_TARGET_MACHINE}/lib/%M" >>${SPECS_LIBGCC}
+ @${ECHO} "%D ${LINKER_RPATH_FLAG}${LIBGCC_PREFIX}/${GCC_TARGET_MACHINE}/lib/%M" >>${SPECS_LIBGCC}
_WRAP_EXTRA_ARGS.CC+= -specs=${SPECS_LIBGCC}
_WRAP_EXTRA_ARGS.CXX+= -specs=${SPECS_LIBGCC}
diff --git a/lang/gcc5-libs/buildlink3.mk b/lang/gcc5-libs/buildlink3.mk
index 369626ac469..7efa8209053 100644
--- a/lang/gcc5-libs/buildlink3.mk
+++ b/lang/gcc5-libs/buildlink3.mk
@@ -1,4 +1,4 @@
-# $NetBSD: buildlink3.mk,v 1.1 2015/07/16 12:07:07 ryoon Exp $
+# $NetBSD: buildlink3.mk,v 1.2 2018/01/01 18:16:37 rillig Exp $
BUILDLINK_TREE+= gcc5-libs
@@ -29,7 +29,7 @@ GCC_TARGET_MACHINE?= ${MACHINE_GNU_PLATFORM}
${SPECS_LIBGCC}:
@${ECHO} "*link_libgcc:" >${SPECS_LIBGCC}
- @${ECHO} "%D $(LINKER_RPATH_FLAG)${LIBGCC_PREFIX}/${GCC_TARGET_MACHINE}/lib/%M" >>${SPECS_LIBGCC}
+ @${ECHO} "%D ${LINKER_RPATH_FLAG}${LIBGCC_PREFIX}/${GCC_TARGET_MACHINE}/lib/%M" >>${SPECS_LIBGCC}
_WRAP_EXTRA_ARGS.CC+= -specs=${SPECS_LIBGCC}
_WRAP_EXTRA_ARGS.CXX+= -specs=${SPECS_LIBGCC}
diff --git a/lang/gcc6-libs/buildlink3.mk b/lang/gcc6-libs/buildlink3.mk
index b314145c9f0..f7808b8b772 100644
--- a/lang/gcc6-libs/buildlink3.mk
+++ b/lang/gcc6-libs/buildlink3.mk
@@ -1,4 +1,4 @@
-# $NetBSD: buildlink3.mk,v 1.1 2016/09/12 22:13:54 maya Exp $
+# $NetBSD: buildlink3.mk,v 1.2 2018/01/01 18:16:37 rillig Exp $
BUILDLINK_TREE+= gcc6-libs
@@ -29,7 +29,7 @@ GCC_TARGET_MACHINE?= ${MACHINE_GNU_PLATFORM}
${SPECS_LIBGCC}:
@${ECHO} "*link_libgcc:" >${SPECS_LIBGCC}
- @${ECHO} "%D $(LINKER_RPATH_FLAG)${LIBGCC_PREFIX}/${GCC_TARGET_MACHINE}/lib/%M" >>${SPECS_LIBGCC}
+ @${ECHO} "%D ${LINKER_RPATH_FLAG}${LIBGCC_PREFIX}/${GCC_TARGET_MACHINE}/lib/%M" >>${SPECS_LIBGCC}
_WRAP_EXTRA_ARGS.CC+= -specs=${SPECS_LIBGCC}
_WRAP_EXTRA_ARGS.CXX+= -specs=${SPECS_LIBGCC}
diff --git a/lang/kali/Makefile b/lang/kali/Makefile
index c89bb6cd0ff..70f7d1a7de2 100644
--- a/lang/kali/Makefile
+++ b/lang/kali/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.16 2016/09/19 05:52:45 dholland Exp $
+# $NetBSD: Makefile,v 1.17 2018/01/01 18:16:37 rillig Exp $
DISTNAME= kali-0.52.2
CATEGORIES= lang
@@ -10,8 +10,8 @@ COMMENT= Distributed implementation of Scheme
GNU_CONFIGURE= yes
BUILD_TARGET= # empty
-MAKE_ENV= mandir=$(PREFIX)/$(PKGMANDIR)/man1
-INSTALLATION_DIRS= bin include lib $(PKGMANDIR)/man1
+MAKE_ENV= mandir=${PREFIX}/${PKGMANDIR}/man1
+INSTALLATION_DIRS= bin include lib ${PKGMANDIR}/man1
# Thoroughly broken on 64-bit architectures.
BROKEN_ON_PLATFORM= ${LP64PLATFORMS}
diff --git a/lang/mercury/Makefile b/lang/mercury/Makefile
index 44d8f096c71..20b69636615 100644
--- a/lang/mercury/Makefile
+++ b/lang/mercury/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.60 2017/01/19 18:52:14 agc Exp $
+# $NetBSD: Makefile,v 1.61 2018/01/01 18:16:37 rillig Exp $
DISTNAME= mercury-srcdist-14.01.1
PKGNAME= mercury-14.01.1
@@ -39,7 +39,7 @@ BUILD_MAKE_FLAGS+= INSTALL_PREFIX=${INSTALL_PREFIX:Q}
BUILD_MAKE_FLAGS+= INSTALL_INFO_DIR=${INSTALL_PREFIX:Q}/${PKGINFODIR:Q}
BUILD_MAKE_FLAGS+= INSTALL_MAN_DIR=${INSTALL_PREFIX:Q}/${PKGMANDIR:Q}
BUILD_MAKE_FLAGS+= MERCURY_COMPILER=${INSTALL_PREFIX:Q}/bin/mercury_compile
-BUILD_MAKE_FLAGS+= PARALLEL=$(MAKE_JOBS:D-j$(MAKE_JOBS))
+BUILD_MAKE_FLAGS+= PARALLEL=${MAKE_JOBS:D-j${MAKE_JOBS}}
CHECK_PORTABILITY_SKIP+= boehm_gc/configure
CHECK_INTERPRETER_SKIP+= lib/mercury/reconf/scripts/mtags.in
diff --git a/lang/openjdk7/builtin.mk b/lang/openjdk7/builtin.mk
index e65f39b4097..9dfa641e569 100644
--- a/lang/openjdk7/builtin.mk
+++ b/lang/openjdk7/builtin.mk
@@ -1,3 +1,5 @@
+# $NetBSD: builtin.mk,v 1.2 2018/01/01 18:16:37 rillig Exp $
+
BUILTIN_PKG:= openjdk7
BUILTIN_FIND_FILES_VAR:= OJDK7
@@ -26,7 +28,7 @@ MAKEVARS+= IS_BUILTIN.openjdk7
.if !defined(BUILTIN_PKG.openjdk7) && \
!empty(IS_BUILTIN.openjdk7:M[yY][eE][sS])
BUILTIN_VERSION.openjdk7!= ${OJDK7} -version 2>&1 | ${SED} -Ee 's:^[^0-9]*([0-9._]+)$:\1:' -e 's/_/./g' -e 's/([0-9]+)\.([0-9]+)\.([0-9]+)\.([0-9]+)/\1.\2.\4/'
-BUILTIN_PKG.openjdk7= openjdk7-$(BUILTIN_VERSION.openjdk7)
+BUILTIN_PKG.openjdk7= openjdk7-${BUILTIN_VERSION.openjdk7}
.endif
MAKEVARS+= BUILTIN_PKG.openjdk7
diff --git a/lang/pforth/Makefile b/lang/pforth/Makefile
index 76593e41c03..056f374c096 100644
--- a/lang/pforth/Makefile
+++ b/lang/pforth/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.26 2017/09/17 15:04:23 asau Exp $
+# $NetBSD: Makefile,v 1.27 2018/01/01 18:16:37 rillig Exp $
DISTNAME= pforth_v27_20101121
PKGNAME= pforth-27
@@ -11,10 +11,10 @@ HOMEPAGE= http://www.softsynth.com/pforth/
COMMENT= Portable ANS-like Forth
LICENSE= mit
-WRKSRC= $(WRKDIR)/pforth_v27
+WRKSRC= ${WRKDIR}/pforth_v27
MAKE_FILE= build/unix/Makefile
MAKE_FLAGS= SRCDIR=.
-CPPFLAGS= -DPF_DEFAULT_DICTIONARY='"$(PREFIX)/lib/pforth/pforth.dic"'
+CPPFLAGS= -DPF_DEFAULT_DICTIONARY='"${PREFIX}/lib/pforth/pforth.dic"'
INSTALLATION_DIRS= bin lib/pforth share/doc/pforth share/pforth share/pforth/utils
diff --git a/lang/polyml/Makefile b/lang/polyml/Makefile
index 97a472ef975..39a98ac6e03 100644
--- a/lang/polyml/Makefile
+++ b/lang/polyml/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.17 2017/09/17 15:04:23 asau Exp $
+# $NetBSD: Makefile,v 1.18 2018/01/01 18:16:37 rillig Exp $
DISTNAME= polyml-5.7
CATEGORIES= lang
@@ -10,7 +10,7 @@ COMMENT= Poly/ML is an implementation of Standard ML
# ONLY_FOR_PLATFORM= *-*-i386 *-*-x86_64 *-*-sparc *-*-powerpc
-WRKSRC= $(WRKDIR)/$(PKGNAME_NOREV)
+WRKSRC= ${WRKDIR}/${PKGNAME_NOREV}
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --with-system-libffi
diff --git a/lang/sbcl/Makefile b/lang/sbcl/Makefile
index f1054632548..70635ff05b9 100644
--- a/lang/sbcl/Makefile
+++ b/lang/sbcl/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.75 2017/09/17 15:04:23 asau Exp $
+# $NetBSD: Makefile,v 1.76 2018/01/01 18:16:37 rillig Exp $
DISTNAME= ${PKGNAME_NOREV}-source
PKGNAME= sbcl-1.3.21
@@ -86,9 +86,9 @@ post-build:
do-install:
cd ${WRKSRC} && BUILD_ROOT=${DESTDIR:Q} INSTALL_ROOT=${PREFIX:Q} MAN_DIR=${PREFIX:Q}/${PKGMANDIR} ${SH} install.sh
- rm -f $(DESTDIR)$(PREFIX)/lib/sbcl/sb-posix/test-output/write-test.txt
- rm -f $(DESTDIR)$(PREFIX)/lib/sbcl/sb-posix/test-output/read-test.txt
- rm -f $(DESTDIR)$(PREFIX)/lib/sbcl/asdf-install/installer.lisp.orig
+ rm -f ${DESTDIR}${PREFIX}/lib/sbcl/sb-posix/test-output/write-test.txt
+ rm -f ${DESTDIR}${PREFIX}/lib/sbcl/sb-posix/test-output/read-test.txt
+ rm -f ${DESTDIR}${PREFIX}/lib/sbcl/asdf-install/installer.lisp.orig
do-test:
# for f in compiler.pure.lisp interface.pure.lisp compiler.impure.lisp debug.impure.lisp interface.impure.lisp; do mv ${WRKSRC}/tests/$$f ${WRKSRC}/tests/$$f.off || :; done
diff --git a/mail/deliver/Makefile b/mail/deliver/Makefile
index 84a278ea1ec..2905bb1fa6f 100644
--- a/mail/deliver/Makefile
+++ b/mail/deliver/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.16 2012/10/08 12:19:08 asau Exp $
+# $NetBSD: Makefile,v 1.17 2018/01/01 18:16:37 rillig Exp $
DISTNAME= deliver-2.1.14
PKGREVISION= 3
@@ -37,8 +37,8 @@ SUBST_CLASSES+= sources
SUBST_STAGE.sources= post-patch
SUBST_MESSAGE.sources= Fixing source code.
SUBST_FILES.sources= config.h deliver.8 conf/os-netbsd.h
-SUBST_SED.sources= -e 's,@DELIVER_CONF_PREFIX@,$(PKG_SYSCONFDIR),g'
-SUBST_SED.sources+= -e 's,@PREFIX@,$(PREFIX),g'
+SUBST_SED.sources= -e 's,@DELIVER_CONF_PREFIX@,${PKG_SYSCONFDIR},g'
+SUBST_SED.sources+= -e 's,@PREFIX@,${PREFIX},g'
pre-configure:
set -e; cd ${WRKSRC}; \
diff --git a/math/mathomatic/Makefile b/math/mathomatic/Makefile
index cc6bf9b87af..823632b0c18 100644
--- a/math/mathomatic/Makefile
+++ b/math/mathomatic/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.103 2015/08/18 07:31:12 wiz Exp $
+# $NetBSD: Makefile,v 1.104 2018/01/01 18:16:37 rillig Exp $
#
DISTNAME= mathomatic-16.0.4
@@ -15,7 +15,7 @@ LICENSE= gnu-lgpl-v2.1
NO_CONFIGURE= yes
MAKE_FILE= makefile
USE_TOOLS+= gmake
-INSTALL_ENV+= prefix=$(PREFIX) mandir=$(DESTDIR)$(PREFIX)/$(PKGMANDIR)
+INSTALL_ENV+= prefix=${PREFIX} mandir=${DESTDIR}${PREFIX}/${PKGMANDIR}
CFLAGS.SunOS+= -DSOLARIS
diff --git a/math/minisat/Makefile b/math/minisat/Makefile
index ba4f26dd247..21ffffd3cbf 100644
--- a/math/minisat/Makefile
+++ b/math/minisat/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.3 2014/12/15 12:31:09 jperkin Exp $
+# $NetBSD: Makefile,v 1.4 2018/01/01 18:16:38 rillig Exp $
DISTNAME= minisat-2.2.0
CATEGORIES= math
@@ -9,20 +9,20 @@ HOMEPAGE= http://minisat.se/
COMMENT= Minimalistic yet highly efficient SAT solver
LICENSE= mit
-WRKSRC= $(WRKDIR)/minisat
+WRKSRC= ${WRKDIR}/minisat
USE_LANGUAGES= c++
USE_TOOLS+= gmake
#BUILD_DIRS= core simp
BUILD_DIRS= simp
-MAKE_ENV= MROOT=$(WRKSRC)
+MAKE_ENV= MROOT=${WRKSRC}
MAKE_ENV+= LFLAGS="-L${BUILDLINK_PREFIX.zlib}/lib ${COMPILER_RPATH_FLAG}${BUILDLINK_PREFIX.zlib}/lib"
BUILD_TARGET= # empty
INSTALLATION_DIRS+= bin
do-install:
- $(INSTALL_PROGRAM) $(WRKSRC)/simp/minisat \
- $(DESTDIR)$(PREFIX)/bin/minisat
+ ${INSTALL_PROGRAM} ${WRKSRC}/simp/minisat \
+ ${DESTDIR}${PREFIX}/bin/minisat
.include "../../devel/zlib/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
diff --git a/math/mtl/Makefile b/math/mtl/Makefile
index bc11bfc5e78..de4e5c84af7 100644
--- a/math/mtl/Makefile
+++ b/math/mtl/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.13 2013/04/08 11:17:16 rodent Exp $
+# $NetBSD: Makefile,v 1.14 2018/01/01 18:16:38 rillig Exp $
DISTNAME= mtl-2.1.2-22
PKGNAME= mtl-2.1.2.22
@@ -26,6 +26,6 @@ post-install:
${DESTDIR}${PREFIX}/share/doc/mtl
do-test:
- cd $(WRKSRC)/test && $(PERL5) ./bin/make_and_test.pl $(QUICK) -d ./src
+ cd ${WRKSRC}/test && ${PERL5} ./bin/make_and_test.pl ${QUICK} -d ./src
.include "../../mk/bsd.pkg.mk"
diff --git a/math/xfractint/Makefile b/math/xfractint/Makefile
index f6cc67c459c..eb33dd91513 100644
--- a/math/xfractint/Makefile
+++ b/math/xfractint/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.13 2017/11/06 13:40:29 wiz Exp $
+# $NetBSD: Makefile,v 1.14 2018/01/01 18:16:38 rillig Exp $
DISTNAME= xfrac310
PKGNAME= xfractint-3.10
@@ -19,7 +19,7 @@ MAKE_FLAGS+= MANDIR=${PREFIX}/${PKGMANDIR}/man1
MAKE_FLAGS+= SRCDIR=${PREFIX}/share/xfractint
BUILD_TARGET= xfractint
-INSTALLATION_DIRS= bin $(PKGMANDIR)/man1 share/xfractint
+INSTALLATION_DIRS= bin ${PKGMANDIR}/man1 share/xfractint
MAKE_ENV+= X11_LDFLAGS=${X11_LDFLAGS:Q}
diff --git a/net/clisp-rawsock/Makefile b/net/clisp-rawsock/Makefile
index d7b56f34c3b..64ee8fe4156 100644
--- a/net/clisp-rawsock/Makefile
+++ b/net/clisp-rawsock/Makefile
@@ -1,9 +1,9 @@
-# $NetBSD: Makefile,v 1.2 2011/12/22 22:09:35 marino Exp $
+# $NetBSD: Makefile,v 1.3 2018/01/01 18:16:38 rillig Exp $
#
CLISP_MODULE= rawsock
-PKGNAME= clisp-$(CLISP_MODULE)-$(CLISP_VERSION)
+PKGNAME= clisp-${CLISP_MODULE}-${CLISP_VERSION}
CATEGORIES= net
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=clisp/}
diff --git a/net/nicotine/Makefile b/net/nicotine/Makefile
index 9cfbf510886..ba86c345fa6 100644
--- a/net/nicotine/Makefile
+++ b/net/nicotine/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.48 2017/09/03 08:36:57 wiz Exp $
+# $NetBSD: Makefile,v 1.49 2018/01/01 18:16:38 rillig Exp $
DISTNAME= nicotine-1.0.8
PKGREVISION= 16
@@ -17,7 +17,7 @@ USE_PKGLOCALEDIR= yes
USE_LANGUAGES= # empty
PYTHON_VERSIONS_INCOMPATIBLE= 34 35 36 # py-gtk2
-MAKE_ENV+= PKGLOCALEDIR=$(PKGLOCALEDIR:Q)
+MAKE_ENV+= PKGLOCALEDIR=${PKGLOCALEDIR:Q}
.include "../../lang/python/distutils.mk"
.include "../../mk/bsd.pkg.mk"
diff --git a/parallel/gridscheduler/Makefile b/parallel/gridscheduler/Makefile
index 63996520451..763d8a6c9c5 100644
--- a/parallel/gridscheduler/Makefile
+++ b/parallel/gridscheduler/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.21 2016/07/09 06:38:47 wiz Exp $
+# $NetBSD: Makefile,v 1.22 2018/01/01 18:16:38 rillig Exp $
PKGNAME= gridscheduler-2011.11.1
PKGREVISION= 2
@@ -87,7 +87,7 @@ PKG_FAIL_REASON+= "SGE_ARCH and SGE_BUILDARCH need to be configured for your OS"
SGE_BUILDARCH?= ${SGE_BUILDARCH_cmd:sh}
# Some hacks to get it properly linked:
-MAKE_ENV+= SGE_ARCH=$(SGE_ARCH) SGE_ROOT=$(SGE_ROOT)
+MAKE_ENV+= SGE_ARCH=${SGE_ARCH} SGE_ROOT=${SGE_ROOT}
LDFLAGS+= -R${SGE_ROOT}/lib/${SGE_ARCH}
BUILDLINK_PASSTHRU_RPATHDIRS+= ${SGE_ROOT}/lib/${SGE_ARCH}
diff --git a/parallel/openmpi/Makefile b/parallel/openmpi/Makefile
index e0f6c3dfc4d..7b34d015844 100644
--- a/parallel/openmpi/Makefile
+++ b/parallel/openmpi/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.36 2016/10/23 14:02:28 asau Exp $
+# $NetBSD: Makefile,v 1.37 2018/01/01 18:16:38 rillig Exp $
DISTNAME= openmpi-1.10.4
CATEGORIES= parallel
@@ -20,8 +20,8 @@ SHLIBTOOL_OVERRIDE= ${WRKSRC}/config/libtool.m4
CONFIGURE_ARGS+= --without-slurm
CONFIGURE_ARGS+= --enable-contrib-no-build=vt # in separate package
-CONFIGURE_ARGS+= --with-libltdl=$(BUILDLINK_PREFIX.libltdl:Q) # use our libltdl
-CONFIGURE_ARGS+= --with-hwloc=$(BUILDLINK_PREFIX.hwloc:Q) #external
+CONFIGURE_ARGS+= --with-libltdl=${BUILDLINK_PREFIX.libltdl:Q} # use our libltdl
+CONFIGURE_ARGS+= --with-hwloc=${BUILDLINK_PREFIX.hwloc:Q} #external
CONFIGURE_ARGS+= --with-wrapper-ldflags="-L${PREFIX}/lib ${LINKER_RPATH_FLAG}${PREFIX}/lib"
CONFIGURE_ENV+= ompi_cv_f77_have_INTEGERp8=no # no "INTEGER*8"??
CONFIGURE_ARGS+= OPAL_HAVE_LTDL_ADVISE=0
diff --git a/parallel/slurm/Makefile b/parallel/slurm/Makefile
index 0fa1116e3ae..fdddbae689f 100644
--- a/parallel/slurm/Makefile
+++ b/parallel/slurm/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.22 2017/01/19 18:52:21 agc Exp $
+# $NetBSD: Makefile,v 1.23 2018/01/01 18:16:38 rillig Exp $
DISTNAME= slurm-2.6.4
PKGREVISION= 9
@@ -20,7 +20,7 @@ USE_LIBTOOL= yes
CONFIGURE_ARGS+= --with-hdf5=no
# Fix installation:
-CONFIGURE_ARGS+= --htmldir=$(PREFIX)/share/doc/$(PKGNAME_NOREV)/html
+CONFIGURE_ARGS+= --htmldir=${PREFIX}/share/doc/${PKGNAME_NOREV}/html
REPLACE_PYTHON= doc/html/shtml2html.py
@@ -28,18 +28,18 @@ PKG_GROUPS= slurm
PKG_USERS= slurm:slurm
PKG_GECOS.slurm= SLURM user
-PKG_SHELL.slurm= $(NOLOGIN)
+PKG_SHELL.slurm= ${NOLOGIN}
RCD_SCRIPTS+= slurmd slurmctld
post-install:
- $(INSTALL_DATA_DIR) $(DESTDIR)$(PREFIX)/share/examples/$(PKGBASE)
- $(INSTALL_DATA) $(WRKSRC)/etc/* $(DESTDIR)$(PREFIX)/share/examples/$(PKGBASE)/
+ ${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX}/share/examples/${PKGBASE}
+ ${INSTALL_DATA} ${WRKSRC}/etc/* ${DESTDIR}${PREFIX}/share/examples/${PKGBASE}/
PYTHON_FOR_BUILD_ONLY= yes
.include "../../lang/python/tool.mk"
-CONFIGURE_ARGS+= --with-munge=$(BUILDLINK_PREFIX.munge:Q)
+CONFIGURE_ARGS+= --with-munge=${BUILDLINK_PREFIX.munge:Q}
.include "../../security/munge/buildlink3.mk" # optional
.include "../../security/openssl/buildlink3.mk"
.include "../../mk/dlopen.buildlink3.mk"
diff --git a/parallel/threadingbuildingblocks/Makefile b/parallel/threadingbuildingblocks/Makefile
index 6555bcb4aef..ee12eb68f42 100644
--- a/parallel/threadingbuildingblocks/Makefile
+++ b/parallel/threadingbuildingblocks/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.7 2017/09/06 09:03:04 wiz Exp $
+# $NetBSD: Makefile,v 1.8 2018/01/01 18:16:38 rillig Exp $
DISTNAME= tbb30_20110325oss_src
PKGNAME= threadingbuildingblocks-3.0.6 # for "3.0 update 6"
@@ -10,7 +10,7 @@ MAINTAINER= asau@inbox.ru
HOMEPAGE= https://www.threadingbuildingblocks.org/
COMMENT= Threading Buildling Blocks
-WRKSRC= $(WRKDIR)/$(DISTNAME:_src=) #tbb30_20101215oss
+WRKSRC= ${WRKDIR}/${DISTNAME:_src=} #tbb30_20101215oss
USE_LANGUAGES= c c++
USE_TOOLS= gmake pax
@@ -19,16 +19,16 @@ BUILD_TARGET= default
TEST_TARGET= test
pre-configure:
- cd $(WRKSRC)/build/ && cp FreeBSD.gcc.inc NetBSD.gcc.inc && cp FreeBSD.inc NetBSD.inc
+ cd ${WRKSRC}/build/ && cp FreeBSD.gcc.inc NetBSD.gcc.inc && cp FreeBSD.inc NetBSD.inc
-INSTALLATION_DIRS= include lib share/doc/$(PKGBASE)
+INSTALLATION_DIRS= include lib share/doc/${PKGBASE}
do-install:
- $(INSTALL_LIB) $(WRKSRC)/build/build_release/libtbb.so $(DESTDIR)$(PREFIX)/lib/
- $(INSTALL_LIB) $(WRKSRC)/build/build_release/libtbbmalloc.so $(DESTDIR)$(PREFIX)/lib/
- $(INSTALL_LIB) $(WRKSRC)/build/build_debug/libtbb_debug.so $(DESTDIR)$(PREFIX)/lib/
- $(INSTALL_LIB) $(WRKSRC)/build/build_debug/libtbbmalloc_debug.so $(DESTDIR)$(PREFIX)/lib/
- (cd $(WRKSRC)/include && pax -rw tbb $(DESTDIR)$(PREFIX)/include/)
+ ${INSTALL_LIB} ${WRKSRC}/build/build_release/libtbb.so ${DESTDIR}${PREFIX}/lib/
+ ${INSTALL_LIB} ${WRKSRC}/build/build_release/libtbbmalloc.so ${DESTDIR}${PREFIX}/lib/
+ ${INSTALL_LIB} ${WRKSRC}/build/build_debug/libtbb_debug.so ${DESTDIR}${PREFIX}/lib/
+ ${INSTALL_LIB} ${WRKSRC}/build/build_debug/libtbbmalloc_debug.so ${DESTDIR}${PREFIX}/lib/
+ (cd ${WRKSRC}/include && pax -rw tbb ${DESTDIR}${PREFIX}/include/)
# documentation:
# (cd $(WRKSRC)/doc/html && pax -rw . $(DESTDIR)$(PREFIX)/share/doc/html/$(PKGBASE)/)
# $(INSTALL_DATA) $(WRKSRC)/doc/Release_Notes.txt $(DESTDIR)$(PREFIX)/share/doc/$(PKGBASE)/
diff --git a/print/poppler-includes/Makefile b/print/poppler-includes/Makefile
index 390c8bf2379..c347e2acbd3 100644
--- a/print/poppler-includes/Makefile
+++ b/print/poppler-includes/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.20 2017/12/08 08:52:56 maya Exp $
+# $NetBSD: Makefile,v 1.21 2018/01/01 18:16:38 rillig Exp $
PKGREVISION= 1
.include "../../print/poppler/Makefile.common"
@@ -21,7 +21,7 @@ INCDIR=${DESTDIR}${PREFIX}/include
do-install:
${INSTALL_DATA_DIR} ${INCDIR}
${INSTALL_DATA_DIR} ${INCDIR}/poppler
- sed -n -f $(FILESDIR)/extract.sed ${WRKSRC}/CMakeLists.txt \
+ sed -n -f ${FILESDIR}/extract.sed ${WRKSRC}/CMakeLists.txt \
| grep ^poppler/ | { while read f; \
do \
${INSTALL_DATA} ${WRKSRC}/"$$f" ${INCDIR}/poppler; \
@@ -29,12 +29,12 @@ do-install:
${INSTALL_DATA} ${WRKSRC}/poppler/poppler-config.h ${INCDIR}/poppler
for d in goo fofi splash; do \
${INSTALL_DATA_DIR} ${INCDIR}/poppler/"$$d"; \
- sed -n -f $(FILESDIR)/extract.sed ${WRKSRC}/CMakeLists.txt \
+ sed -n -f ${FILESDIR}/extract.sed ${WRKSRC}/CMakeLists.txt \
| grep "^$$d/" | { while read f; \
do \
${INSTALL_DATA} ${WRKSRC}/"$$f" ${INCDIR}/poppler/"$$d"; \
done }; \
- done
+ done
# do these actually belong here?
${INSTALL_DATA} ${WRKSRC}/poppler/SignatureInfo.h ${INCDIR}/poppler
${INSTALL_DATA} ${WRKSRC}/goo/NetPBMWriter.h ${INCDIR}/poppler/goo
diff --git a/print/tex-blindtext/options.mk b/print/tex-blindtext/options.mk
index 76f1e7e10eb..1d7854dcb39 100644
--- a/print/tex-blindtext/options.mk
+++ b/print/tex-blindtext/options.mk
@@ -1,15 +1,15 @@
-# $NetBSD: options.mk,v 1.1 2017/01/20 21:43:58 markd Exp $
+# $NetBSD: options.mk,v 1.2 2018/01/01 18:16:38 rillig Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.tex-blindtext
BLINDTEXT_LANGUAGES= catalan english french german latin
-PKG_SUPPORTED_OPTIONS+= $(BLINDTEXT_LANGUAGES) polyglossia
+PKG_SUPPORTED_OPTIONS+= ${BLINDTEXT_LANGUAGES} polyglossia
PKG_SUGGESTED_OPTIONS+= english
.include "../../mk/bsd.options.mk"
.for l in $(BLINDTEXT_LANGUAGES)
.if !empty(PKG_OPTIONS:M$(l))
-DEPENDS+= tex-babel-$(l)-[0-9]*:../../print/tex-babel-$(l)
+DEPENDS+= tex-babel-${l}-[0-9]*:../../print/tex-babel-${l}
.endif
.endfor
diff --git a/security/munge/Makefile b/security/munge/Makefile
index b6d0c7de624..47339bbfe26 100644
--- a/security/munge/Makefile
+++ b/security/munge/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.16 2017/09/03 09:22:58 wiz Exp $
+# $NetBSD: Makefile,v 1.17 2018/01/01 18:16:39 rillig Exp $
DISTNAME= munge-0.5.11
PKGREVISION= 7
@@ -13,10 +13,10 @@ COMMENT= Authentication service for creating and validating credentials
USE_TOOLS= perl pkg-config
GNU_CONFIGURE= yes
USE_LIBTOOL= yes
-CONFIGURE_ARGS+= --localstatedir=$(VARBASE)
+CONFIGURE_ARGS+= --localstatedir=${VARBASE}
INSTALLATION_DIRS+= lib/pkgconfig
-OWN_DIRS= $(VARBASE)/lib/munge $(VARBASE)/log/munge $(VARBASE)/run/munge
+OWN_DIRS= ${VARBASE}/lib/munge ${VARBASE}/log/munge ${VARBASE}/run/munge
RCD_SCRIPTS+= munge
diff --git a/security/openpam/Makefile b/security/openpam/Makefile
index d3766f83213..5864da37b2d 100644
--- a/security/openpam/Makefile
+++ b/security/openpam/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.25 2017/09/03 08:53:14 wiz Exp $
+# $NetBSD: Makefile,v 1.26 2018/01/01 18:16:39 rillig Exp $
DISTNAME= openpam-20140912
PKGREVISION= 2
@@ -19,7 +19,7 @@ CONFIGURE_ARGS+= --without-pam-su
CONFIGURE_ARGS+= --with-pam-unix
CONFIGURE_ARGS+= --with-modules-dir=${PREFIX}/lib/security
-CPPFLAGS+= -DSYSCONFDIR=\"$(PKG_SYSCONFDIR)\"
+CPPFLAGS+= -DSYSCONFDIR=\"${PKG_SYSCONFDIR}\"
OWN_DIRS= ${PKG_SYSCONFDIR}/pam.d
diff --git a/security/p5-Dancer-Plugin-Auth-RBAC/Makefile b/security/p5-Dancer-Plugin-Auth-RBAC/Makefile
index 1eb496d91b1..57dfd1fb8a2 100644
--- a/security/p5-Dancer-Plugin-Auth-RBAC/Makefile
+++ b/security/p5-Dancer-Plugin-Auth-RBAC/Makefile
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.7 2017/06/05 14:24:31 ryoon Exp $
+# $NetBSD: Makefile,v 1.8 2018/01/01 18:16:39 rillig Exp $
#
DISTNAME= Dancer-Plugin-Auth-RBAC-1.110720
-PKGNAME= p5-$(DISTNAME:S/110720/110.720/)
+PKGNAME= p5-${DISTNAME:S/110720/110.720/}
PKGREVISION= 4
CATEGORIES= security www perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Dancer/}
diff --git a/security/tacshell/Makefile b/security/tacshell/Makefile
index 1eed1d70b56..a31ea48b737 100644
--- a/security/tacshell/Makefile
+++ b/security/tacshell/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.6 2017/09/04 18:01:01 wiz Exp $
+# $NetBSD: Makefile,v 1.7 2018/01/01 18:16:39 rillig Exp $
DISTNAME= tacshell-0.91
PKGREVISION= 1
@@ -10,7 +10,7 @@ MAINTAINER= sekiya@NetBSD.org
COMMENT= RSA ACE/Server sdshell workalike, using TACACS+
GNU_CONFIGURE= YES
-CONF_FILES+= $(PREFIX)/share/examples/tacshell/tacshell.conf \
+CONF_FILES+= ${PREFIX}/share/examples/tacshell/tacshell.conf \
${PKG_SYSCONFDIR}/tacshell.conf
INSTALLATION_DIRS+= bin share/examples/tacshell
diff --git a/time/projectlibre/Makefile b/time/projectlibre/Makefile
index 303c5b7a19e..b55b2774e48 100644
--- a/time/projectlibre/Makefile
+++ b/time/projectlibre/Makefile
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.3 2016/12/19 16:01:19 asau Exp $
+# $NetBSD: Makefile,v 1.4 2018/01/01 18:16:39 rillig Exp $
DISTNAME= projectlibre-1.6.1
CATEGORIES= time
-MASTER_SITES= $(MASTER_SITE_SOURCEFORGE:=projectlibre/)
+MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=projectlibre/}
MAINTAINER= asau@inbox.ru
HOMEPAGE= http://www.projectlibre.org/
@@ -18,20 +18,20 @@ SUBST_CLASSES+= set-java set-base
SUBST_STAGE.set-java= post-configure
SUBST_MESSAGE.set-java= Setting Java path.
SUBST_FILES.set-java= projectlibre.sh
-SUBST_SED.set-java= -e '/^JAVA_EXE=/s,java,$(PKG_JAVA_HOME)/bin/java,'
+SUBST_SED.set-java= -e '/^JAVA_EXE=/s,java,${PKG_JAVA_HOME}/bin/java,'
SUBST_STAGE.set-base= post-configure
SUBST_MESSAGE.set-base= Setting package base path.
SUBST_FILES.set-base= projectlibre.sh
-SUBST_SED.set-base= -e '/^OPENPROJ_HOME0=/s,^.*$$,OPENPROJ_HOME0=$(PREFIX)/share/$(PKGBASE),'
+SUBST_SED.set-base= -e '/^OPENPROJ_HOME0=/s,^.*$$,OPENPROJ_HOME0=${PREFIX}/share/${PKGBASE},'
NO_BUILD= yes
-INSTALLATION_DIRS= bin share/$(PKGBASE)
+INSTALLATION_DIRS= bin share/${PKGBASE}
do-install:
- cd $(WRKSRC) && pax -rwpm . $(DESTDIR)$(PREFIX)/share/$(PKGBASE)
- $(LN) -sf $(PREFIX)/share/$(PKGBASE)/projectlibre.sh $(DESTDIR)$(PREFIX)/bin/projectlibre
+ cd ${WRKSRC} && pax -rwpm . ${DESTDIR}${PREFIX}/share/${PKGBASE}
+ ${LN} -sf ${PREFIX}/share/${PKGBASE}/projectlibre.sh ${DESTDIR}${PREFIX}/bin/projectlibre
.include "../../mk/java-vm.mk"
.include "../../mk/bsd.pkg.mk"
diff --git a/www/clisp-fastcgi/Makefile b/www/clisp-fastcgi/Makefile
index acfebd93e64..f2e4d4d2711 100644
--- a/www/clisp-fastcgi/Makefile
+++ b/www/clisp-fastcgi/Makefile
@@ -1,9 +1,9 @@
-# $NetBSD: Makefile,v 1.2 2012/01/28 11:32:09 marino Exp $
+# $NetBSD: Makefile,v 1.3 2018/01/01 18:16:39 rillig Exp $
#
CLISP_MODULE= fastcgi
-PKGNAME= clisp-$(CLISP_MODULE)-$(CLISP_VERSION)
+PKGNAME= clisp-${CLISP_MODULE}-${CLISP_VERSION}
CATEGORIES= www
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=clisp/}
diff --git a/www/thttpd/Makefile b/www/thttpd/Makefile
index c4c97b0ba29..28b174839d9 100644
--- a/www/thttpd/Makefile
+++ b/www/thttpd/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.46 2015/03/12 01:00:26 hiramatsu Exp $
+# $NetBSD: Makefile,v 1.47 2018/01/01 18:16:39 rillig Exp $
DISTNAME= thttpd-2.26
CATEGORIES= www
@@ -29,7 +29,7 @@ EGDIR= ${PREFIX}/share/examples
CONF_FILES= ${EGDIR}/thttpd.conf ${PKG_SYSCONFDIR}/thttpd.conf
RCD_SCRIPTS= thttpd
-INSTALLATION_DIRS= $(PKGMANDIR)/man1 share/thttpd ${EGDIR}
+INSTALLATION_DIRS= ${PKGMANDIR}/man1 share/thttpd ${EGDIR}
SUBST_CLASSES+= paths
SUBST_FILES.paths= thttpd.conf