summaryrefslogtreecommitdiff
path: root/inputmethod/uim
diff options
context:
space:
mode:
authordillo <dillo@pkgsrc.org>2005-06-01 14:00:55 +0000
committerdillo <dillo@pkgsrc.org>2005-06-01 14:00:55 +0000
commit00f7a6753d65f840b718af4d20a984a72af10f77 (patch)
tree34db1158d5d4b673b34ec87bdb600a34cb99f858 /inputmethod/uim
parent69fea00b5b9c4e2a5202723ef4ff05d25370d1c4 (diff)
downloadpkgsrc-00f7a6753d65f840b718af4d20a984a72af10f77.tar.gz
use PKG_OPTIONS_LEGACY_VARS to handle legacy variables
set PKG_SUGGESTED_OPTIONS instead of PKG_DEFAULT_OPTIONS (which should be set by the user only)
Diffstat (limited to 'inputmethod/uim')
-rw-r--r--inputmethod/uim/options.mk26
1 files changed, 6 insertions, 20 deletions
diff --git a/inputmethod/uim/options.mk b/inputmethod/uim/options.mk
index 57893ecb2b2..e203fe7d163 100644
--- a/inputmethod/uim/options.mk
+++ b/inputmethod/uim/options.mk
@@ -1,25 +1,11 @@
-# $NetBSD: options.mk,v 1.1 2005/03/29 18:47:52 wiz Exp $
+# $NetBSD: options.mk,v 1.2 2005/06/01 14:00:55 dillo Exp $
-# Global and legacy options
-.if defined(UIM_USE_ANTHY) && !empty(UIM_USE_ANTHY:M[Yy][Ee][Ss])
-PKG_DEFAULT_OPTIONS+= anthy
-.endif
-
-.if defined(UIM_USE_CANNA) && !empty(UIM_USE_CANNA:M[Yy][Ee][Ss])
-PKG_DEFAULT_OPTIONS+= canna
-.endif
-
-.if defined(UIM_USE_EB) && !empty(UIM_USE_EB:M[Yy][Ee][Ss])
-PKG_DEFAULT_OPTIONS+= eb
-.endif
-
-.if defined(UIM_USE_QT) && !empty(UIM_USE_QT:M[Yy][Ee][Ss])
-PKG_DEFAULT_OPTIONS+= qt
-.endif
-
-PKG_OPTIONS_VAR= PKG_OPTIONS.uim
PKG_SUPPORTED_OPTIONS= anthy canna eb qt
-PKG_DEFAULT_OPTIONS+= anthy canna
+PKG_SUPPORTED_OPTIONS= anthy canna
+PKG_OPTIONS_LEGACY_VARS+= UIM_USE_ANTHY:anthy
+PKG_OPTIONS_LEGACY_VARS+= UIM_USE_CANNA:canna
+PKG_OPTIONS_LEGACY_VARS+= UIM_USE_EB:eb
+PKG_OPTIONS_LEGACY_VARS+= UIM_USE_qt:qt
.include "../../mk/bsd.options.mk"