diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2009-01-08 15:56:50 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2009-01-08 15:56:50 +0000 |
commit | 2bf5e49775e568df183b0971a1ee1c9c7d1d8872 (patch) | |
tree | 0c5d1c478b048ebf11d90c2e7d28183f288cb5c2 /x11-wm | |
parent | - Remove HAVE_ESOUND/USE_ESOUND block, this is long time abandoned (diff) |
- Update to 0.1.9a
PR: 129823
Submitted by: "Henrik Friedrichsen" <hrkfdn@gmail.com>
Approved by: maintainer timeout
Notes
Notes:
svn path=/head/; revision=225464
Diffstat (limited to 'x11-wm')
-rw-r--r-- | x11-wm/pekwm/Makefile | 2 | ||||
-rw-r--r-- | x11-wm/pekwm/distinfo | 6 | ||||
-rw-r--r-- | x11-wm/pekwm/files/patch-Frame.cc | 46 |
3 files changed, 4 insertions, 50 deletions
diff --git a/x11-wm/pekwm/Makefile b/x11-wm/pekwm/Makefile index bcf0f3788ad2..82760ae3afba 100644 --- a/x11-wm/pekwm/Makefile +++ b/x11-wm/pekwm/Makefile @@ -6,7 +6,7 @@ # PORTNAME= pekwm -PORTVERSION= 0.1.8 +PORTVERSION= 0.1.9a PORTEPOCH= 1 CATEGORIES= x11-wm MASTER_SITES= http://pekwm.org/projects/3/files/ \ diff --git a/x11-wm/pekwm/distinfo b/x11-wm/pekwm/distinfo index f2b9280add26..8366a5a7a5a7 100644 --- a/x11-wm/pekwm/distinfo +++ b/x11-wm/pekwm/distinfo @@ -1,3 +1,3 @@ -MD5 (pekwm-0.1.8.tar.bz2) = 01be60875094f57bd4009f7ed5f038fe -SHA256 (pekwm-0.1.8.tar.bz2) = 1604d8864c7e4907150b545d302350a35c89b8578b6438661309cb4bb0362e1a -SIZE (pekwm-0.1.8.tar.bz2) = 336414 +MD5 (pekwm-0.1.9a.tar.bz2) = 78a63a3630ef5ef9f191b888086a79af +SHA256 (pekwm-0.1.9a.tar.bz2) = e25d50646f2571b525da1f3833e3be8d427bb14c0204df4c80a21a3e90eebe7c +SIZE (pekwm-0.1.9a.tar.bz2) = 354338 diff --git a/x11-wm/pekwm/files/patch-Frame.cc b/x11-wm/pekwm/files/patch-Frame.cc deleted file mode 100644 index 3d52080bd864..000000000000 --- a/x11-wm/pekwm/files/patch-Frame.cc +++ /dev/null @@ -1,46 +0,0 @@ -diff -Naur ./src/Frame.cc ../pekwm-0.1.8/src/Frame.cc ---- ./src/Frame.cc 2008-11-20 20:20:55.000000000 +0100 -+++ ../pekwm-0.1.8/src/Frame.cc 2008-11-20 20:21:20.000000000 +0100 -@@ -1990,7 +1990,7 @@ - Frame::handleConfigureRequestGeometry(XConfigureRequestEvent *ev, Client *client) - { - // Look for fullscreen requests -- long all_geometry = CWX|CWY|CWWidth|CWHeight; -+ const long all_geometry = CWX|CWY|CWWidth|CWHeight; - bool is_fullscreen = false; - if (Config::instance()->isFullscreenDetect() - && ! client->isCfgDeny(CFG_DENY_SIZE) -@@ -2007,16 +2007,15 @@ - } - - if (! is_fullscreen) { -- // Remove fullscreen state if client changes it size -- if (Config::instance()->isFullscreenDetect()) { -- setStateFullscreen(STATE_UNSET); -- } -+ bool change_geometry = false; - - if (! client->isCfgDeny(CFG_DENY_SIZE) - && (ev->value_mask & (CWWidth|CWHeight)) ) { - - resizeChild(ev->width, ev->height); - _client->setShaped(setShape()); -+ -+ change_geometry = true; - } - - if (! client->isCfgDeny(CFG_DENY_POSITION) -@@ -2025,6 +2024,13 @@ - calcGravityPosition(_client->getXSizeHints()->win_gravity, - ev->x, ev->y, _gm.x, _gm.y); - move(_gm.x, _gm.y); -+ -+ change_geometry = true; -+ } -+ -+ // Remove fullscreen state if client changes it size -+ if (change_geometry && Config::instance()->isFullscreenDetect()) { -+ setStateFullscreen(STATE_UNSET); - } - } - } |