summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Shakaryan <omp@gentoo.org>2009-07-11 11:39:44 +0000
committerDavid Shakaryan <omp@gentoo.org>2009-07-11 11:39:44 +0000
commit9f27834074141e0af204664abaca0da378768d56 (patch)
treec0cd60e2763fd7fc5cefdb48341c2f42ef2b689c /x11-wm/pekwm/files
parentRestrict testsuite; the lynx test is interactive. (diff)
downloadgentoo-2-9f27834074141e0af204664abaca0da378768d56.tar.gz
gentoo-2-9f27834074141e0af204664abaca0da378768d56.tar.bz2
gentoo-2-9f27834074141e0af204664abaca0da378768d56.zip
Remove older versions.
(Portage version: 2.1.6.13/cvs/Linux x86_64)
Diffstat (limited to 'x11-wm/pekwm/files')
-rw-r--r--x11-wm/pekwm/files/pekwm-0.1.6-gcc-4.3.patch127
-rw-r--r--x11-wm/pekwm/files/pekwm-0.1.8-mplayer.patch45
2 files changed, 0 insertions, 172 deletions
diff --git a/x11-wm/pekwm/files/pekwm-0.1.6-gcc-4.3.patch b/x11-wm/pekwm/files/pekwm-0.1.6-gcc-4.3.patch
deleted file mode 100644
index 3d1e30aa7b7f..000000000000
--- a/x11-wm/pekwm/files/pekwm-0.1.6-gcc-4.3.patch
+++ /dev/null
@@ -1,127 +0,0 @@
---- pekwm-0.1.6.orig/src/CfgParser.cc 2007-05-08 10:10:13.000000000 +0200
-+++ pekwm-0.1.6/src/CfgParser.cc 2008-04-22 22:41:21.000000000 +0200
-@@ -11,10 +11,11 @@
- #include "Util.hh"
-
- #include <iostream>
- #include <memory>
- #include <cassert>
-+#include <cstring>
-
- #ifdef HAVE_GETTEXT
- #include <libintl.h>
- #define _(S) gettext(S)
- #else // !HAVE_GETTEXT
---- pekwm-0.1.6.orig/src/CfgParser.hh 2007-05-08 10:10:13.000000000 +0200
-+++ pekwm-0.1.6/src/CfgParser.hh 2008-04-22 22:41:21.000000000 +0200
-@@ -30,10 +30,11 @@
-
- #include <list>
- #include <map>
- #include <set>
- #include <string>
-+#include <cstring>
- #include <iostream>
- #include <cstdlib>
-
- //! @brief Configuration file parser.
- class CfgParser {
---- pekwm-0.1.6.orig/src/CfgParserSource.cc 2007-05-08 10:10:13.000000000 +0200
-+++ pekwm-0.1.6/src/CfgParserSource.cc 2008-04-22 22:41:21.000000000 +0200
-@@ -11,10 +11,11 @@
- //
-
- #include "CfgParserSource.hh"
- #include "Util.hh"
-
-+#include <cstdlib>
- #include <iostream>
-
- extern "C" {
- #include <unistd.h>
- }
---- pekwm-0.1.6.orig/src/ColorHandler.cc 2007-05-08 10:10:13.000000000 +0200
-+++ pekwm-0.1.6/src/ColorHandler.cc 2008-04-22 22:41:21.000000000 +0200
-@@ -5,10 +5,11 @@
- // See the LICENSE file for more information.
- //
-
- #include "ColorHandler.hh"
- #include "PScreen.hh"
-+#include <cstring>
-
- #ifdef DEBUG
- #include <iostream>
- using std::cerr;
- using std::endl;
---- pekwm-0.1.6.orig/src/ColorHandler.hh 2007-05-08 10:10:13.000000000 +0200
-+++ pekwm-0.1.6/src/ColorHandler.hh 2008-04-22 22:41:21.000000000 +0200
-@@ -13,10 +13,11 @@
-
- #include "pekwm.hh"
-
- #include <list>
- #include <string>
-+#include <cstring>
-
- class ColorHandler {
- public:
- class Entry {
- public:
---- pekwm-0.1.6.orig/src/PImageNativeLoaderXpm.cc 2007-05-08 10:10:13.000000000 +0200
-+++ pekwm-0.1.6/src/PImageNativeLoaderXpm.cc 2008-04-22 22:41:21.000000000 +0200
-@@ -11,10 +11,11 @@
- #ifdef HAVE_IMAGE_XPM
-
- #include "PImageNativeLoaderXpm.hh"
-
- #include <iostream>
-+#include <cstring>
-
- using std::cerr;
- using std::endl;
- using std::string;
-
---- pekwm-0.1.6.orig/src/RegexString.cc 2007-05-08 10:10:13.000000000 +0200
-+++ pekwm-0.1.6/src/RegexString.cc 2008-04-22 22:41:21.000000000 +0200
-@@ -9,11 +9,11 @@
- //
-
- #include "../config.h"
-
- #include "RegexString.hh"
--
-+#include <cstdlib>
- #include <iostream>
-
- #ifdef HAVE_GETTEXT
- #include <libintl.h>
- #define _(S) gettext(S)
---- pekwm-0.1.6.orig/src/Util.cc 2007-05-08 10:10:13.000000000 +0200
-+++ pekwm-0.1.6/src/Util.cc 2008-04-22 22:42:12.000000000 +0200
-@@ -11,10 +11,11 @@
- //
-
- #include "../config.h"
- #include "Util.hh"
-
-+#include <cstdlib>
- #include <algorithm>
- #include <iostream>
- #include <sstream>
-
- #include <unistd.h>
---- pekwm-0.1.6.orig/src/Util.hh 2007-05-08 10:10:13.000000000 +0200
-+++ pekwm-0.1.6/src/Util.hh 2008-04-22 22:41:21.000000000 +0200
-@@ -12,10 +12,11 @@
- #define _UTIL_HH_
-
- #include "Types.hh"
-
- #include <string>
-+#include <cstring>
- #include <vector>
- #include <functional>
- #include <sstream>
-
- //! @brief Namespace Util used for various small file/string tasks.
diff --git a/x11-wm/pekwm/files/pekwm-0.1.8-mplayer.patch b/x11-wm/pekwm/files/pekwm-0.1.8-mplayer.patch
deleted file mode 100644
index 9de36b02832f..000000000000
--- a/x11-wm/pekwm/files/pekwm-0.1.8-mplayer.patch
+++ /dev/null
@@ -1,45 +0,0 @@
---- pekwm-0.1.8/src/Frame.cc.orig 2008-12-10 14:51:51.000000000 +0100
-+++ pekwm-0.1.8/src/Frame.cc 2008-12-10 14:57:55.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);
- }
- }
- }