1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00

Update to 3.4.4

Feature safe:	yes
This commit is contained in:
Renato Botelho 2010-03-02 19:26:08 +00:00
parent de008000a2
commit 52d18838f5
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=250509
4 changed files with 4 additions and 53 deletions

View File

@ -6,8 +6,7 @@
#
PORTNAME= awesome
PORTVERSION= 3.4.3
PORTREVISION= 2
PORTVERSION= 3.4.4
CATEGORIES= x11-wm
MASTER_SITES= http://awesome.naquadah.org/download/ \
http://redundancy.redundancy.org/mirror/
@ -64,9 +63,6 @@ CMAKE_ARGS += -DWITH_DBUS=YES
CMAKE_ARGS += -DWITH_DBUS=NO
.endif
post-patch:
@${RM} ${WRKSRC}/lib/awful/*.orig
pre-configure:
@${REINPLACE_CMD} \
-e 's/"generate luadoc" ON/\"generate luadoc" OFF/g' \

View File

@ -1,3 +1,3 @@
MD5 (awesome-3.4.3.tar.bz2) = bd6c56a0b0e1cc4ce53b0c53d8b0c7c2
SHA256 (awesome-3.4.3.tar.bz2) = 7d760b8a75f69e385ac7a54bcc72b19225a7095a99609f0e22755724bdf0bb96
SIZE (awesome-3.4.3.tar.bz2) = 271355
MD5 (awesome-3.4.4.tar.bz2) = 8c2537ad898d7f58a0f3ba92e6a561a1
SHA256 (awesome-3.4.4.tar.bz2) = 1fe4346d91eb606456293f5bd7239ce66b8c5c2232848600fffaf264f3b699f3
SIZE (awesome-3.4.4.tar.bz2) = 271404

View File

@ -1,30 +0,0 @@
--- lib/awful/rules.lua.in
+++ lib/awful/rules.lua.in
@@ -112,7 +112,7 @@ function apply(c)
if property == "floating" then
aclient.floating.set(c, value)
elseif property == "tag" then
- aclient.movetotag(value, c)
+ c:tags({ value })
elseif property == "switchtotag" and value and props.tag then
atag.viewonly(props.tag)
elseif property == "height" or property == "width" or
@@ -127,6 +127,11 @@ function apply(c)
end
end
+ -- If untagged, stick the client on the current one.
+ if #c:tags() == 0 then
+ atag.withcurrent(c, startup)
+ end
+
-- Apply all callbacks from matched rules.
for i, callback in pairs(callbacks) do
callback(c)
@@ -140,5 +145,6 @@ function apply(c)
end
client.add_signal("manage", apply)
+client.remove_signal("manage", atag.withcurrent)
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80

View File

@ -1,15 +0,0 @@
--- lib/awful/tag.lua.in
+++ lib/awful/tag.lua.in
@@ -374,10 +374,11 @@ capi.client.add_signal("manage", function(c, startup)
c.screen = capi.mouse.screen
end
end
- withcurrent(c, startup)
c:add_signal("property::screen", withcurrent)
end)
+capi.client.add_signal("manage", withcurrent)
+
for s = 1, capi.screen.count() do
capi.screen[s]:add_signal("tag::history::update", history.update)
end