[Lunar-commits] r15969 - moonbase/trunk/editors/vile

Terry Chan tchan at lunar-linux.org
Mon Aug 1 15:40:59 UTC 2005


Author: tchan
Date: 2005-08-01 15:40:58 +0000 (Mon, 01 Aug 2005)
New Revision: 15969

Added:
   moonbase/trunk/editors/vile/CONFIGURE
   moonbase/trunk/editors/vile/DEPENDS
Modified:
   moonbase/trunk/editors/vile/BUILD
   moonbase/trunk/editors/vile/DETAILS
Log:
Version bump to vile-9.5. Added code to allow for optional perl, openMotif or
X11 compile features.  Removed the xserver code.


Modified: moonbase/trunk/editors/vile/BUILD
===================================================================
--- moonbase/trunk/editors/vile/BUILD	2005-08-01 12:55:23 UTC (rev 15968)
+++ moonbase/trunk/editors/vile/BUILD	2005-08-01 15:40:58 UTC (rev 15969)
@@ -1,11 +1,16 @@
 (
 
     default_build                           &&
-    if    module_installed xserver
-    then  OPTS="$OPTS --with-screen=x11"    &&
-          default_config                    &&
-          make                              &&
-          make install
+    if [ "$USE_MOTIF" == "y" ]; then
+      OPTS="$OPTS --with-screen=motif"  &&
+      default_config                    &&
+      make                              &&
+      make install
+    elif [ "$USE_X11" == "y" ]; then
+      OPTS="$OPTS --with-screen=x11"    &&
+      default_config                    &&
+      make                              &&
+      make install
     fi
 
 ) > $C_FIFO 2>&1

Added: moonbase/trunk/editors/vile/CONFIGURE
===================================================================
--- moonbase/trunk/editors/vile/CONFIGURE	2005-08-01 12:55:23 UTC (rev 15968)
+++ moonbase/trunk/editors/vile/CONFIGURE	2005-08-01 15:40:58 UTC (rev 15969)
@@ -0,0 +1,2 @@
+mquery USE_MOTIF "Build xvile with motif ?" y
+mquery USE_X11   "Build xvile with x11, no toolkits ?" n

Added: moonbase/trunk/editors/vile/DEPENDS
===================================================================
--- moonbase/trunk/editors/vile/DEPENDS	2005-08-01 12:55:23 UTC (rev 15968)
+++ moonbase/trunk/editors/vile/DEPENDS	2005-08-01 15:40:58 UTC (rev 15969)
@@ -0,0 +1,3 @@
+optional_depends perl "--with-perl" "" "Use Perl as an extension language" &&
+optional_depends openMotif "" "" "Build xvile with motif" &&
+optional_depends "%X" "" "" "Build xvile with x11 support, no toolkits"

Modified: moonbase/trunk/editors/vile/DETAILS
===================================================================
--- moonbase/trunk/editors/vile/DETAILS	2005-08-01 12:55:23 UTC (rev 15968)
+++ moonbase/trunk/editors/vile/DETAILS	2005-08-01 15:40:58 UTC (rev 15969)
@@ -1,12 +1,12 @@
           MODULE=vile
-         VERSION=9.4
+         VERSION=9.5
           SOURCE=$MODULE-$VERSION.tgz
    SOURCE_URL[0]=ftp://invisible-island.net/$MODULE/
    SOURCE_URL[1]=ftp://ftp.phred.org/pub/$MODULE/
-       SOURCE_VFY=md5:1c69045467b7c48be99fa7ac2052a95f
+      SOURCE_VFY=sha1:3862bf082ccb4afca4d08bc6a26448556200b483
         WEB_SITE=http://dickey.his.com/vile/vile.html
          ENTERED=20020716
-         UPDATED=20031223
+         UPDATED=20050731
            SHORT="vile is a vi-finger-compatable editor."
 cat << EOF
 Vile retains the "finger-feel", if you will, of vi, while adding the



More information about the Lunar-commits mailing list