pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/editors/xemacs Append things to CONFIGURE_ARGS instead...
details: https://anonhg.NetBSD.org/pkgsrc/rev/afe6d1d58dc5
branches: trunk
changeset: 501451:afe6d1d58dc5
user: rillig <rillig%pkgsrc.org@localhost>
date: Sun Oct 23 14:16:46 2005 +0000
description:
Append things to CONFIGURE_ARGS instead of overwriting them. Found by
pkglint.
diffstat:
editors/xemacs/options.mk | 14 +++++++-------
1 files changed, 7 insertions(+), 7 deletions(-)
diffs (40 lines):
diff -r 95d19de2cf72 -r afe6d1d58dc5 editors/xemacs/options.mk
--- a/editors/xemacs/options.mk Sun Oct 23 14:13:50 2005 +0000
+++ b/editors/xemacs/options.mk Sun Oct 23 14:16:46 2005 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.4 2005/03/03 16:16:03 uebayasi Exp $
+# $NetBSD: options.mk,v 1.5 2005/10/23 14:16:46 rillig Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.xemacs
PKG_SUPPORTED_OPTIONS= ldap xface canna
@@ -6,24 +6,24 @@
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mldap)
-CONFIGURE_ARGS= --with-ldap
+CONFIGURE_ARGS+= --with-ldap
. include "../../databases/openldap/buildlink3.mk"
.else
-CONFIGURE_ARGS= --without-ldap
+CONFIGURE_ARGS+= --without-ldap
.endif
.if !empty(PKG_OPTIONS:Mxface)
-CONFIGURE_ARGS= --with-xface
+CONFIGURE_ARGS+= --with-xface
. include "../../mail/faces/buildlink3.mk"
.else
-CONFIGURE_ARGS= --without-xface
+CONFIGURE_ARGS+= --without-xface
.endif
.if !empty(PKG_OPTIONS:Mcanna)
. include "../../inputmethod/canna-lib/buildlink3.mk"
-CONFIGURE_ARGS= --with-canna
+CONFIGURE_ARGS+= --with-canna
PLIST_SUBST+= FOR_MULE=''
.else
-CONFIGURE_ARGS= --without-canna
+CONFIGURE_ARGS+= --without-canna
PLIST_SUBST+= FOR_MULE='@comment '
.endif
Home |
Main Index |
Thread Index |
Old Index