diff options
author | rillig <rillig@pkgsrc.org> | 2005-12-05 20:49:47 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2005-12-05 20:49:47 +0000 |
commit | b71a1d488b6b45e0a968a4c149990c25b6a09215 (patch) | |
tree | dac5b1dd14794d86b061d26b9503adb2552ed3f8 /ham | |
parent | 624eed58928f83676fbd7ca01a5f6974bb2cce2a (diff) | |
download | pkgsrc-b71a1d488b6b45e0a968a4c149990c25b6a09215.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 'ham')
-rw-r--r-- | ham/dpbox/Makefile | 4 | ||||
-rw-r--r-- | ham/tfkiss/Makefile | 6 | ||||
-rw-r--r-- | ham/tlf/Makefile | 4 | ||||
-rw-r--r-- | ham/xlog/Makefile | 4 |
4 files changed, 10 insertions, 8 deletions
diff --git a/ham/dpbox/Makefile b/ham/dpbox/Makefile index 5af83e35b3f..912c9a44a12 100644 --- a/ham/dpbox/Makefile +++ b/ham/dpbox/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 2005/05/22 20:08:08 jlam Exp $ +# $NetBSD: Makefile,v 1.10 2005/12/05 20:50:23 rillig Exp $ # DISTNAME= dpbox-60000 @@ -14,7 +14,7 @@ WRKSRC= ${WRKDIR}/dpbox-6.00.00/source USE_TOOLS+= gmake MAKEFILE= Makefile.netbsd -MAKE_ENV+= prefix="${PREFIX}" +MAKE_ENV+= prefix=${PREFIX:Q} .include "../../mk/bsd.prefs.mk" diff --git a/ham/tfkiss/Makefile b/ham/tfkiss/Makefile index db725a521a6..c892290ecbb 100644 --- a/ham/tfkiss/Makefile +++ b/ham/tfkiss/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 2005/05/22 20:08:08 jlam Exp $ +# $NetBSD: Makefile,v 1.10 2005/12/05 20:50:23 rillig Exp $ # DISTNAME= tfkiss-1.2.4 @@ -12,6 +12,8 @@ COMMENT= Software implementation of TheFirmware for use with TNT USE_TOOLS+= gmake GNU_CONFIGURE= yes -CONFIGURE_ARGS= --enable-xpid --enable-flexnet --enable-axip +CONFIGURE_ARGS+= --enable-xpid +CONFIGURE_ARGS+= --enable-flexnet +CONFIGURE_ARGS+= --enable-axip .include "../../mk/bsd.pkg.mk" diff --git a/ham/tlf/Makefile b/ham/tlf/Makefile index de61ccbd6dc..82783213d42 100644 --- a/ham/tlf/Makefile +++ b/ham/tlf/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2005/05/22 20:08:08 jlam Exp $ +# $NetBSD: Makefile,v 1.6 2005/12/05 20:50:23 rillig Exp $ # DISTNAME= tlf-0.9.20 @@ -16,7 +16,7 @@ GNU_CONFIGURE= yes BUILD_USES_MSGFMT=yes PTHREAD_OPTS+= require -CONFIGURE_ARGS= --enable-hamlib +CONFIGURE_ARGS+= --enable-hamlib post-patch: ${ECHO} SC_DEVICE=/dev/tty00 >> ${WRKSRC}/share/logcfg.dat diff --git a/ham/xlog/Makefile b/ham/xlog/Makefile index fbaface0de8..e5a1afdabab 100644 --- a/ham/xlog/Makefile +++ b/ham/xlog/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.17 2005/08/16 12:35:49 wulf Exp $ +# $NetBSD: Makefile,v 1.18 2005/12/05 20:50:23 rillig Exp $ # DISTNAME= xlog-1.2.2 @@ -13,7 +13,7 @@ GNU_CONFIGURE= yes USE_PKGLOCALEDIR=yes USE_TOOLS+= gmake pkg-config -CONFIGURE_ARGS= --enable-hamlib +CONFIGURE_ARGS+= --enable-hamlib .include "../../ham/hamlib/buildlink3.mk" .include "../../x11/gtk2/buildlink3.mk" |