Requires Lua 5.1.

-p.

Index: Makefile
===================================================================
RCS file: /cvs/ports/x11/ion/Makefile,v
retrieving revision 1.36
diff -u -r1.36 Makefile
--- Makefile    9 Apr 2006 20:12:55 -0000       1.36
+++ Makefile    21 May 2006 19:26:07 -0000
@@ -2,9 +2,9 @@
 
 COMMENT=       "light, keyboard friendly window manager"
 
-V=             20060326
+V=             20060519
 DISTNAME=      ion-3ds-${V}
-PKGNAME=       ion-${V}p0
+PKGNAME=       ion-${V}
 CATEGORIES=    x11
 
 HOMEPAGE=      http://modeemi.cs.tut.fi/~tuomov/ion/
@@ -20,7 +20,7 @@
 
 WANTLIB=       ICE X11 m c Xinerama SM Xext
 MODULES=       devel/gettext
-LIB_DEPENDS=   lua.5,lualib.5::lang/lua
+BUILD_DEPENDS= :lua->=5.1:lang/lua
 
 USE_GMAKE=     Yes
 USE_X11=       Yes
Index: distinfo
===================================================================
RCS file: /cvs/ports/x11/ion/distinfo,v
retrieving revision 1.18
diff -u -r1.18 distinfo
--- distinfo    26 Mar 2006 13:21:04 -0000      1.18
+++ distinfo    21 May 2006 19:26:07 -0000
@@ -1,4 +1,4 @@
-MD5 (ion-3ds-20060326.tar.gz) = 3d5628d4efe93f2de804cf5b01abc743
-RMD160 (ion-3ds-20060326.tar.gz) = 147e6ad20c69ca8fe5a80dcd57ce6002a2b3cde1
-SHA1 (ion-3ds-20060326.tar.gz) = 5202322198071f7cee2aefc2bcc8bd0b3a08a490
-SIZE (ion-3ds-20060326.tar.gz) = 617533
+MD5 (ion-3ds-20060519.tar.gz) = 2ed3ad0f1b7ef469fe14b398e2bd0233
+RMD160 (ion-3ds-20060519.tar.gz) = 11c66eabfd763c81ec5f6d23d5504a6b0f698b2a
+SHA1 (ion-3ds-20060519.tar.gz) = 6186d71bfdc60b6583349e15ddcfcbb417e5a360
+SIZE (ion-3ds-20060519.tar.gz) = 620841
Index: files/detach.lua
===================================================================
RCS file: /cvs/ports/x11/ion/files/detach.lua,v
retrieving revision 1.1
diff -u -r1.1 detach.lua
--- files/detach.lua    29 Sep 2005 22:19:39 -0000      1.1
+++ files/detach.lua    21 May 2006 19:26:07 -0000
@@ -159,7 +159,7 @@
    end
    -- search for the scratchpad
    local sp = nil
-   for _,r in cwin:screen_of():llist(2) do
+   for _,r in pairs(cwin:screen_of():llist(2)) do
       if (r:name() == "WScratchpad") then
          sp = r
       end
@@ -185,7 +185,7 @@
 function detach.find_ws(screen, passive)
    local name = detach.ws_name(passive)
    local ws
-   for _,r in screen:llist(2) do
+   for _,r in pairs(screen:llist(2)) do
       if r:name() == name then
          ws = r
       end
@@ -295,13 +295,13 @@
    if (screen == nil) then
       screen = ioncore.find_screen_id(0)
    end
-   for _,r in screen:llist(2) do
+   for _,r in pairs(screen:llist(2)) do
       if obj_is(r, "WFloatWS") then
          local fws = r
          -- relocate windows to layer 1
          local dest = screen:lcurrent(1):current()
-         for _,fframe in r:managed_list() do
-            for _,cwin in fframe:llist(1) do
+         for _,fframe in pairs(r:managed_list()) do
+            for _,cwin in pairs(fframe:llist(1)) do
                dest:attach(cwin)
                cwin:goto()
             end
Index: pkg/PLIST
===================================================================
RCS file: /cvs/ports/x11/ion/pkg/PLIST,v
retrieving revision 1.16
diff -u -r1.16 PLIST
--- pkg/PLIST   19 Mar 2006 17:36:41 -0000      1.16
+++ pkg/PLIST   21 May 2006 19:26:07 -0000
@@ -85,16 +85,7 @@
 share/ion3/welcome.de.txt
 share/ion3/welcome.fi.txt
 share/ion3/welcome.txt
-share/locale/
-share/locale/cs/
-share/locale/cs/LC_MESSAGES/
 share/locale/cs/LC_MESSAGES/ion3.mo
-share/locale/de/
-share/locale/de/LC_MESSAGES/
 share/locale/de/LC_MESSAGES/ion3.mo
-share/locale/fi/
-share/locale/fi/LC_MESSAGES/
 share/locale/fi/LC_MESSAGES/ion3.mo
-share/locale/ru/
-share/locale/ru/LC_MESSAGES/
 share/locale/ru/LC_MESSAGES/ion3.mo

Reply via email to