[Lunar-commits] <moonbase> x3270: Some adjustments in BUILD, CONFIGURE and DEPENDS.
Dennis `stumbles` Veatch
stumbles at lunar-linux.org
Sat Apr 30 19:06:29 CEST 2011
commit 0a6f64d70843a407ba970cfe271cc8825c72a28f
Author: Dennis `stumbles` Veatch <stumbles at lunar-linux.org>
Date: Sat Apr 30 13:06:29 2011 -0400
x3270: Some adjustments in BUILD, CONFIGURE and DEPENDS.
---
terminal/x3270/BUILD | 19 ++++++++-----------
terminal/x3270/CONFIGURE | 2 ++
terminal/x3270/DEPENDS | 2 +-
3 files changed, 11 insertions(+), 12 deletions(-)
diff --git a/terminal/x3270/BUILD b/terminal/x3270/BUILD
index 3c0a060..45a6217 100644
--- a/terminal/x3270/BUILD
+++ b/terminal/x3270/BUILD
@@ -3,31 +3,28 @@
VER=`lvu version x3270|cut -c 1-3` &&
cd x3270-$VER &&
- default_build &&
+ default_build $OPTS &&
make install.man &&
# Build the TCL based terminal
if [ $BUILD_TCL3270 == "y" ]; then
cd ../tcl3270-$VER &&
- default_build &&
+ default_build $OPTS &&
make install.man
fi &&
# Build the scripting based terminal
if [ $BUILD_S3270 == "y" ]; then
cd ../s3270-$VER &&
- default_build &&
+ default_build $OPTS &&
make install.man
fi &&
-# This won't work until we do something different in the way we handle
-# nucrses wide characters. As the ncursesw module does it now; it is
-# not sufficient or um, correct.
-# if [ $BUILD_C3270 == "y" ]; then
-# cd ../c3270-$VER &&
-# default_build &&
-# make install.man
-# fi &&
+ if [ $BUILD_C3270 == "y" ]; then
+ cd ../c3270-$VER &&
+ default_build $OPTS &&
+ make install.man
+ fi &&
# Desktop icon
install -D -m644 $SOURCE_DIRECTORY/x3270-$VER/x3270-icon2.xpm /usr/share/pixmaps/x3270-icon2.xpm &&
diff --git a/terminal/x3270/CONFIGURE b/terminal/x3270/CONFIGURE
index 43c9423..db75995 100644
--- a/terminal/x3270/CONFIGURE
+++ b/terminal/x3270/CONFIGURE
@@ -1,3 +1,5 @@
mquery BUILD_TCL3270 "Build the TCL version of x3270?" y
mquery BUILD_S3270 "Build the scripted version of x3270?" y
mquery BUILD_C3270 "Build the ncursesw version of x3270?" y
+mquery ENABLE_APP_DEFS "use a separate app-defaults file?" y "--enable-app-defaults" ""
+mquery ENABLE_HIST "Enable experimental history support?" y "--enable-history" ""
diff --git a/terminal/x3270/DEPENDS b/terminal/x3270/DEPENDS
index 98ebcb1..c455fd6 100644
--- a/terminal/x3270/DEPENDS
+++ b/terminal/x3270/DEPENDS
@@ -1,3 +1,3 @@
optional_depends openssl "--with-ssl" "--without-ssl" "for ssl support"
optional_depends tcl "" "" "for tcl based 3270 terminal support"
-#optional_depends ncursesw "" "" "for ncurses wide based 3270 terminal support"
+optional_depends ncurses "" "" "for ncurses wide based 3270 terminal support"
More information about the Lunar-commits
mailing list