[57984] trunk/dports/devel/luarocks/Portfile

and.damore at macports.org and.damore at macports.org
Sun Sep 20 01:07:22 PDT 2009


Revision: 57984
          http://trac.macports.org/changeset/57984
Author:   and.damore at macports.org
Date:     2009-09-20 01:07:18 -0700 (Sun, 20 Sep 2009)
Log Message:
-----------
updated luarocks, changed its working directory to ${prefix}/var/luarocks, detabbed

Modified Paths:
--------------
    trunk/dports/devel/luarocks/Portfile

Modified: trunk/dports/devel/luarocks/Portfile
===================================================================
--- trunk/dports/devel/luarocks/Portfile	2009-09-20 00:07:03 UTC (rev 57983)
+++ trunk/dports/devel/luarocks/Portfile	2009-09-20 08:07:18 UTC (rev 57984)
@@ -1,57 +1,52 @@
 # $Id$
+PortSystem          1.0
+name                luarocks
+version             1.0.1
+categories          devel
+platforms           darwin
+maintainers         and.damore
+description         Manager for rocks, lua extensions.
+long_description    LuaRocks is a deployment and management system for Lua modules. LuaRocks \
+                    allows you to install Lua modules as self-contained packages called \
+                    \"rocks\", which also contain version dependency information. This \
+                    information is used both at install time, so that when one rock is \
+                    requested all rocks it depends on are installed as well, and at run \
+                    time, so that when a module is required, the correct version is loaded. \
+                    LuaRocks supports both local and remote repositories, and multiple local \
+                    rocks trees.
+homepage            http://www.luarocks.org/
+master_sites        http://luaforge.net/frs/download.php/3981/
+depends_run         port:lua
+universal_variant   no
+checksums           md5     e6fad9ddecf79808fda7fd257bfbde06 \
+                    sha1    9fc47f12b85ab7a0d7cc62608186555acb4c4707 \
+                    rmd160  f192f6d8e244993c0f448eaa51258046de841132
+configure.args      --with-lua=${prefix} \
+                    --rocks-tree=${prefix}/var/luarocks
 
-PortSystem 1.0
-
-name                    luarocks
-version                 1.0
-categories              devel
-platforms               darwin
-maintainers             and.damore
-description             Manager for rocks, lua extensions.
-long_description        LuaRocks is a deployment and management system for Lua modules. \
-				LuaRocks allows you to install Lua modules as self-contained packages \
-				called \"rocks\", which also contain version dependency information. This \
-				information is used both at install time, so that when one rock is \
-				requested all rocks it depends on are installed as well, and at run \
-				time, so that when a module is required, the correct version is loaded. \
-				LuaRocks supports both local and remote repositories, and multiple local \
-				rocks trees.
-homepage                http://www.luarocks.org/
-master_sites           	http://luaforge.net/frs/download.php/3727/
-depends_run		port:lua
-universal_variant	no
-
-configure.args		--with-lua=${prefix} \
-			--scripts-dir=${prefix}/lib/luarocks/bin
-
 variant md5 conflicts openssl description { Use md5 as checker } {
-	configure.args-append	--with-md5-checker=md5sum
+    configure.args-append   --with-md5-checker=md5sum
 }
-	
+    
 variant openssl conflicts md5 description { Use openssl as checker } {
-	configure.args-append	--with-md5-checker=openssl
-	depends_run-append	port:openssl
+    configure.args-append   --with-md5-checker=openssl
+    depends_run-append  port:openssl
 }
 
 if {![variant_isset md5]} {
-	default_variants +openssl
+    default_variants +openssl
 }
 
 variant wget conflicts curl description { Use wget as downloader } {
-	configure.args-append	--with-downloader=wget
-	depends_run-append	port:wget
+    configure.args-append   --with-downloader=wget
+    depends_run-append  port:wget
 }
 
 variant curl conflicts wget description { Use curl as downloader } {
-	configure.args-append	--with-downloader=curl
-	depends_run-append	port:curl
+    configure.args-append   --with-downloader=curl
+    depends_run-append  port:curl
 }
 
 if {![variant_isset wget]} {
-	default_variants +curl
+    default_variants +curl
 }
-
-checksums           md5     c884fe3fae925bb30f770361e70e784e \
-                    sha1    96223c3da6257e5370d031221279b1c89731baef \
-                    rmd160  b387194c589a9df4c4ffa40c880f6a7272985eed
-
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/macports-changes/attachments/20090920/f9d26bec/attachment.html>


More information about the macports-changes mailing list