minor cosmetic fixes in Config.in
[openwrt/svn-archive/archive.git] / openwrt / package / lua / Config.in
index 573f2135a4c908e77041a3dfcb9b7953dc510f95..fc258264be2abc60f50a3da1d7882a047906902f 100644 (file)
@@ -1,16 +1,14 @@
-menu "lua - LUA programming language"
+menu "lua............................... LUA programming language"
 
-config BR2_PACKAGE_LUA
-       bool
+config BR2_COMPILE_LUA
+       tristate
        default n
-       depends BR2_PACKAGE_LUA_INTERPRETER || BR2_PACKAGE_LUA_COMPILER || BR2_PACKAGE_LIBLUA
+       depends BR2_PACKAGE_LIBLUA
 
-config BR2_PACKAGE_LUA_INTERPRETER
-       tristate "lua - LUA programming language interpreter"
-#      default m if CONFIG_DEVEL
-       default n
-       select BR2_PACKAGE_LUA
-       select BR2_PACKAGE_LIBLUA
+config BR2_PACKAGE_LIBLUA
+       prompt "liblua............................ LUA programming language shared libraries"
+       tristate
+       select BR2_COMPILE_LUA
        help
          Lua is a powerful light-weight programming language designed for extending 
          applications. Lua is also frequently used as a general-purpose, stand-alone 
@@ -30,14 +28,12 @@ config BR2_PACKAGE_LUA_INTERPRETER
          
          http://www.lua.org/
          
-         This package contains the LUA language interpreter.
-         
+         This package contains the LUA shared libraries, needed by other programs.
 
-config BR2_PACKAGE_LUA_COMPILER
-       tristate "luac - LUA programming language compiler"
-#      default m if CONFIG_DEVEL
-       default n
-       select BR2_PACKAGE_LUA
+config BR2_PACKAGE_LUA
+       prompt "lua............................... LUA programming language interpreter"
+       tristate
+       default m if CONFIG_DEVEL
        select BR2_PACKAGE_LIBLUA
        help
          Lua is a powerful light-weight programming language designed for extending 
@@ -58,15 +54,13 @@ config BR2_PACKAGE_LUA_COMPILER
          
          http://www.lua.org/
          
-         This package contains the LUA language compiler.
-         
+         This package contains the LUA language interpreter.
 
-config BR2_PACKAGE_LUA_EXAMPLES
-       tristate "lua-examples - LUA programming language examples"
-#      default m if CONFIG_DEVEL
-       default n
-       select BR2_PACKAGE_LUA
-       select BR2_PACKAGE_LUA_INTERPRETER
+config BR2_PACKAGE_LUAC
+       prompt "luac.............................. LUA programming language compiler"
+       tristate
+       default m if CONFIG_DEVEL
+       select BR2_PACKAGE_LIBLUA
        help
          Lua is a powerful light-weight programming language designed for extending 
          applications. Lua is also frequently used as a general-purpose, stand-alone 
@@ -86,13 +80,12 @@ config BR2_PACKAGE_LUA_EXAMPLES
          
          http://www.lua.org/
          
-         This package contains LUA language examples.
-         
+         This package contains the LUA language compiler.
 
-config BR2_PACKAGE_LIBLUA
-       tristate "liblua - LUA programming language shared libraries"
-#      default m if CONFIG_DEVEL
-       default n
+config BR2_PACKAGE_LUA_EXAMPLES
+       prompt "lua-examples...................... LUA programming language examples"
+       tristate
+       default m if CONFIG_DEVEL
        select BR2_PACKAGE_LUA
        help
          Lua is a powerful light-weight programming language designed for extending 
@@ -113,7 +106,6 @@ config BR2_PACKAGE_LIBLUA
          
          http://www.lua.org/
          
-         This package contains the LUA shared libraries, needed by other programs.
-         
+         This package contains LUA language examples.
 
 endmenu