diff options
author | rillig <rillig@pkgsrc.org> | 2005-12-05 23:55:01 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2005-12-05 23:55:01 +0000 |
commit | 579e97796954edc2469fac176e855589e1dc2997 (patch) | |
tree | 1390f4897127f87b9dc78eb04234494436dbf1a4 /comms | |
parent | a86447cb0763e94327a0380243bb3a2cc0ecbb68 (diff) | |
download | pkgsrc-579e97796954edc2469fac176e855589e1dc2997.tar.gz |
Ran "pkglint --autofix", which corrected some of the quoting issues in
CONFIGURE_ARGS.
Diffstat (limited to 'comms')
-rw-r--r-- | comms/binkd/Makefile | 4 | ||||
-rw-r--r-- | comms/conserver/Makefile | 8 | ||||
-rw-r--r-- | comms/conserver8/Makefile | 10 | ||||
-rw-r--r-- | comms/efax-gtk/Makefile | 4 | ||||
-rw-r--r-- | comms/hylafax/Makefile | 4 | ||||
-rw-r--r-- | comms/minicom/Makefile | 4 | ||||
-rw-r--r-- | comms/p5-pilot-link/Makefile | 4 | ||||
-rw-r--r-- | comms/pilot-link/Makefile | 4 | ||||
-rw-r--r-- | comms/plptools/Makefile | 4 |
9 files changed, 23 insertions, 23 deletions
diff --git a/comms/binkd/Makefile b/comms/binkd/Makefile index 234f43fa682..762dd0362eb 100644 --- a/comms/binkd/Makefile +++ b/comms/binkd/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.21 2005/09/28 20:52:18 rillig Exp $ +# $NetBSD: Makefile,v 1.22 2005/12/05 23:55:03 rillig Exp $ # DISTNAME= binkd098 @@ -16,7 +16,7 @@ COMMENT= FidoNet-over-IP transport program utilizing BINKP protocol WRKSRC= ${WRKDIR}/${PKGNAME_NOREV} GNU_CONFIGURE= yes -CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR} +CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR:Q} NOT_FOR_PLATFORM= *-*-alpha *-*-sparc64 diff --git a/comms/conserver/Makefile b/comms/conserver/Makefile index 6d4007198fb..f49c824e1de 100644 --- a/comms/conserver/Makefile +++ b/comms/conserver/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.17 2005/06/03 20:07:23 wiz Exp $ +# $NetBSD: Makefile,v 1.18 2005/12/05 23:55:03 rillig Exp $ # DISTNAME= conserver-7.2.7 @@ -16,9 +16,9 @@ GNU_CONFIGURE= YES USE_PKGINSTALL= YES CONFLICTS+= conserver8-[0-9]* -CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR} -CONFIGURE_ARGS+= --with-master=${CONSERVER_DEFAULTHOST} -CONFIGURE_ARGS+= --with-port=${CONSERVER_DEFAULTPORT} +CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR:Q} +CONFIGURE_ARGS+= --with-master=${CONSERVER_DEFAULTHOST:Q} +CONFIGURE_ARGS+= --with-port=${CONSERVER_DEFAULTPORT:Q} CONFIGURE_ARGS+= --with-regex CONFIGURE_ARGS+= --with-libwrap CONFIGURE_ARGS+= --with-logfile=${VARBASE}/log/conserver diff --git a/comms/conserver8/Makefile b/comms/conserver8/Makefile index 1567a8594d5..effc56ad4ec 100644 --- a/comms/conserver8/Makefile +++ b/comms/conserver8/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2005/08/12 14:39:06 he Exp $ +# $NetBSD: Makefile,v 1.3 2005/12/05 23:55:03 rillig Exp $ # DISTNAME= conserver-8.1.11 @@ -18,9 +18,9 @@ PKG_INSTALLATION_TYPES= overwrite pkgviews GNU_CONFIGURE= YES USE_PKGINSTALL= YES -CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR} -CONFIGURE_ARGS+= --with-master=${CONSERVER_DEFAULTHOST} -CONFIGURE_ARGS+= --with-port=${CONSERVER_DEFAULTPORT} +CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR:Q} +CONFIGURE_ARGS+= --with-master=${CONSERVER_DEFAULTHOST:Q} +CONFIGURE_ARGS+= --with-port=${CONSERVER_DEFAULTPORT:Q} CONFIGURE_ARGS+= --with-regex CONFIGURE_ARGS+= --with-libwrap=${BUILDLINK_PREFIX.tcp_wrappers} CONFIGURE_ARGS+= --with-logfile=${VARBASE}/log/conserver @@ -40,7 +40,7 @@ CONFIGURE_ARGS+= --with-uds .endif .if !empty(PKG_OPTIONS:Mssl) -CONFIGURE_ARGS+= --with-openssl=${SSLBASE} +CONFIGURE_ARGS+= --with-openssl=${SSLBASE:Q} . include "../../security/openssl/buildlink3.mk" .else CONFIGURE_ARGS+= --without-openssl diff --git a/comms/efax-gtk/Makefile b/comms/efax-gtk/Makefile index f9e3e68bc75..e49ab897aaa 100644 --- a/comms/efax-gtk/Makefile +++ b/comms/efax-gtk/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.22 2005/10/17 09:25:42 adam Exp $ +# $NetBSD: Makefile,v 1.23 2005/12/05 23:55:03 rillig Exp $ DISTNAME= efax-gtk-3.0.6.src PKGNAME= efax-gtk-3.0.6 @@ -16,7 +16,7 @@ WRKSRC= ${WRKDIR}/${PKGNAME_NOREV} USE_PKGINSTALL= yes USE_PKGLOCALEDIR= yes GNU_CONFIGURE= yes -CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR} +CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR:Q} CONFIGURE_ARGS+= --with-spooldir=${VARBASE}/spool/efax EGDIR= ${PREFIX}/share/examples diff --git a/comms/hylafax/Makefile b/comms/hylafax/Makefile index a9140fee262..d008f786ae3 100644 --- a/comms/hylafax/Makefile +++ b/comms/hylafax/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.47 2005/12/05 20:49:54 rillig Exp $ +# $NetBSD: Makefile,v 1.48 2005/12/05 23:55:03 rillig Exp $ VERS= 4.2.2 DISTNAME= hylafax-${VERS} @@ -20,7 +20,7 @@ USE_PKGINSTALL= yes USE_LANGUAGES= c c++ USE_TOOLS+= gs:run HAS_CONFIGURE= yes -CONFIGURE_ARGS+= --with-MAKE=${MAKE_PROGRAM} +CONFIGURE_ARGS+= --with-MAKE=${MAKE_PROGRAM:Q} CONFIGURE_ARGS+= --with-INSTALL="" --nointeractive CONFIGURE_ARGS+= --with-ZLIBINC=-I${BUILDLINK_PREFIX.zlib}/include CONFIGURE_ARGS+= --with-LIBZ="-L${BUILDLINK_PREFIX.zlib}/lib -lz" diff --git a/comms/minicom/Makefile b/comms/minicom/Makefile index 58dff079e9a..5ce065dc65d 100644 --- a/comms/minicom/Makefile +++ b/comms/minicom/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.44 2005/09/26 14:07:25 wiz Exp $ +# $NetBSD: Makefile,v 1.45 2005/12/05 23:55:03 rillig Exp $ DISTNAME= minicom-2.1 PKGREVISION= 1 @@ -20,7 +20,7 @@ USE_PKGLOCALEDIR= yes USE_TOOLS+= gmake GNU_CONFIGURE= yes -CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR} +CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR:Q} PKG_SYSCONFSUBDIR= minicom EGDIR= ${PREFIX}/share/examples/minicom diff --git a/comms/p5-pilot-link/Makefile b/comms/p5-pilot-link/Makefile index 1842687caf1..ca33be8e804 100644 --- a/comms/p5-pilot-link/Makefile +++ b/comms/p5-pilot-link/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.28 2005/08/08 21:25:20 jlam Exp $ +# $NetBSD: Makefile,v 1.29 2005/12/05 23:55:03 rillig Exp $ # .include "../../comms/pilot-link/Makefile.common" @@ -12,7 +12,7 @@ BUILDLINK_DEPENDS.pilot-link-libs= pilot-link-libs>=${PILOT_LINK_VERS} USE_TOOLS+= gmake -CONFIGURE_ARGS+= --with-perl=${PERL5} +CONFIGURE_ARGS+= --with-perl=${PERL5:Q} PERL5_CONFIGURE= NO PERL5_PACKLIST= auto/PDA/Pilot/.packlist diff --git a/comms/pilot-link/Makefile b/comms/pilot-link/Makefile index 428fc70d542..cc5f398b972 100644 --- a/comms/pilot-link/Makefile +++ b/comms/pilot-link/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.41 2005/07/16 19:10:38 jlam Exp $ +# $NetBSD: Makefile,v 1.42 2005/12/05 23:55:03 rillig Exp $ .include "../../comms/pilot-link/Makefile.common" @@ -11,7 +11,7 @@ BUILDLINK_DEPENDS.pilot-link-libs= pilot-link-libs>=${PILOT_LINK_VERS} USE_TOOLS+= gmake perl:run USE_GNU_READLINE= YES -CONFIGURE_ARGS+= --with-perl5=${PERL5} +CONFIGURE_ARGS+= --with-perl5=${PERL5:Q} CONFIGURE_ARGS+= --with-readline21 CONFIGURE_ARGS+= --with-tcl=${BUILDLINK_PREFIX.tcl} CONFIGURE_ARGS+= --with-tk=${BUILDLINK_PREFIX.tk} diff --git a/comms/plptools/Makefile b/comms/plptools/Makefile index cb8fb6f5d07..1fd12b70f9b 100644 --- a/comms/plptools/Makefile +++ b/comms/plptools/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.29 2005/05/22 20:07:44 jlam Exp $ +# $NetBSD: Makefile,v 1.30 2005/12/05 23:55:03 rillig Exp $ # DISTNAME= plptools-0.12 @@ -18,7 +18,7 @@ USE_PKGLOCALEDIR= YES PTHREAD_OPTS+= require GNU_CONFIGURE= YES -CONFIGURE_ARGS+= --with-serial=${DEFAULT_SERIAL_DEVICE} +CONFIGURE_ARGS+= --with-serial=${DEFAULT_SERIAL_DEVICE:Q} LIBS+= -ltermcap .include "../../devel/gettext-lib/buildlink3.mk" |