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 | 51cc30a69f6ed85b6e1c747e7d0e7c630f9cc50a (patch) | |
tree | 1390f4897127f87b9dc78eb04234494436dbf1a4 /mail/sqwebmail | |
parent | f3129e07256e493f4c4fbcb6d3b8a8b56805108b (diff) | |
download | pkgsrc-51cc30a69f6ed85b6e1c747e7d0e7c630f9cc50a.tar.gz |
Ran "pkglint --autofix", which corrected some of the quoting issues in
CONFIGURE_ARGS.
Diffstat (limited to 'mail/sqwebmail')
-rw-r--r-- | mail/sqwebmail/Makefile | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/mail/sqwebmail/Makefile b/mail/sqwebmail/Makefile index 8066541a16a..59063e380ec 100644 --- a/mail/sqwebmail/Makefile +++ b/mail/sqwebmail/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.41 2005/12/05 20:50:35 rillig Exp $ +# $NetBSD: Makefile,v 1.42 2005/12/05 23:55:11 rillig Exp $ DISTNAME= sqwebmail-5.0.6 CATEGORIES= mail www @@ -41,22 +41,22 @@ MIME_TYPES= ${PKG_SYSCONFDIR}/mime.types:${PKG_SYSCONFBASEDIR}/httpd/mime.types # This is used by the sqwebmail configure script to set the location of # the sqwebmaild socket file and lockfile. # -CONFIGURE_ARGS+= --localstatedir=${SQWEBMAIL_STATEDIR} +CONFIGURE_ARGS+= --localstatedir=${SQWEBMAIL_STATEDIR:Q} CONFIGURE_ARGS+= --datadir=${PREFIX}/share/courier CONFIGURE_ARGS+= --program-transform-name='s/\.rc$$//' CONFIGURE_ARGS+= --enable-cgibindir=${PREFIX}/libexec/cgi-bin CONFIGURE_ARGS+= --enable-https=auto -CONFIGURE_ARGS+= --enable-imagedir=${SQWEBMAIL_IMAGEDIR} -CONFIGURE_ARGS+= --enable-imageurl=${SQWEBMAIL_IMAGEURL} -CONFIGURE_ARGS+= --enable-mimetypes="${MIME_TYPES}" -CONFIGURE_ARGS+= --with-cachedir=${SQWEBMAIL_CACHEDIR} -CONFIGURE_ARGS+= --with-cacheowner=${ROOT_USER} -CONFIGURE_ARGS+= --with-calendardir=${SQWEBMAIL_CALENDARDIR} +CONFIGURE_ARGS+= --enable-imagedir=${SQWEBMAIL_IMAGEDIR:Q} +CONFIGURE_ARGS+= --enable-imageurl=${SQWEBMAIL_IMAGEURL:Q} +CONFIGURE_ARGS+= --enable-mimetypes=${MIME_TYPES:Q} +CONFIGURE_ARGS+= --with-cachedir=${SQWEBMAIL_CACHEDIR:Q} +CONFIGURE_ARGS+= --with-cacheowner=${ROOT_USER:Q} +CONFIGURE_ARGS+= --with-calendardir=${SQWEBMAIL_CALENDARDIR:Q} CONFIGURE_ARGS+= --with-ispell="${LOCALBASE}/bin/ispell" CONFIGURE_ARGS+= --with-mailer="${SENDMAIL} -oi -t" -CONFIGURE_ARGS+= --with-mailgroup=${COURIER_GROUP} +CONFIGURE_ARGS+= --with-mailgroup=${COURIER_GROUP:Q} CONFIGURE_ARGS+= --with-piddir=${VARBASE}/run CONFIGURE_ENV+= GPG="${LOCALBASE}/bin/gpg" |