diff options
author | Joe Sapp <nixphoeni@gentoo.org> | 2006-11-02 02:43:40 +0000 |
---|---|---|
committer | Joe Sapp <nixphoeni@gentoo.org> | 2006-11-02 02:43:40 +0000 |
commit | 98db07f7ecb819817f2a51d4dea8b7d223a9a2e1 (patch) | |
tree | 6da54e8a471ee5588a56496457b958f2a5d7e1b2 /x11-wm/kahakai/files | |
parent | Mask the testing revision of kahakai until the bugs in the patches are ironed... (diff) | |
download | gentoo-2-98db07f7ecb819817f2a51d4dea8b7d223a9a2e1.tar.gz gentoo-2-98db07f7ecb819817f2a51d4dea8b7d223a9a2e1.tar.bz2 gentoo-2-98db07f7ecb819817f2a51d4dea8b7d223a9a2e1.zip |
Patches for latest swig and python, for m4, and for the default style. Trying to fix bug #132845.
(Portage version: 2.1.2_pre3-r8)
Diffstat (limited to 'x11-wm/kahakai/files')
4 files changed, 47 insertions, 0 deletions
diff --git a/x11-wm/kahakai/files/digest-kahakai-0.6.2_p20040306-r1 b/x11-wm/kahakai/files/digest-kahakai-0.6.2_p20040306-r1 new file mode 100644 index 000000000000..d459e8f9f65b --- /dev/null +++ b/x11-wm/kahakai/files/digest-kahakai-0.6.2_p20040306-r1 @@ -0,0 +1,3 @@ +MD5 ca83ad27d60b94aa82c041c7dd74426f kahakai-0.6.2-20040306.tar.bz2 530283 +RMD160 8ea54db04da3b167f9572e63908357b3226867f7 kahakai-0.6.2-20040306.tar.bz2 530283 +SHA256 e79d021c30f6368e4bdeb1630043c50a642cd5189e2d38b1695b7d15f7a28001 kahakai-0.6.2-20040306.tar.bz2 530283 diff --git a/x11-wm/kahakai/files/kahakai-0.6.2_p20040306-events.py_fix.patch b/x11-wm/kahakai/files/kahakai-0.6.2_p20040306-events.py_fix.patch new file mode 100644 index 000000000000..8236276740a2 --- /dev/null +++ b/x11-wm/kahakai/files/kahakai-0.6.2_p20040306-events.py_fix.patch @@ -0,0 +1,11 @@ +--- data/scripts/python/events.py.in.orig 2006-10-31 23:46:13.000000000 -0500 ++++ data/scripts/python/events.py.in 2006-10-31 23:46:58.000000000 -0500 +@@ -104,7 +104,7 @@ + def set(self, action): + # Decompose delay into second and micro second + action.delay.tv_sec = int(self.delay) +- action.delay.tv_usec = (self.delay - int(self.delay)) * 1e6 ++ action.delay.tv_usec = (self.delay - int(self.delay)) * long(1e6) + + action.delay_breaks = kahakai.Vector_int() + for delayBreak in self.delayBreaks: diff --git a/x11-wm/kahakai/files/kahakai-0.6.2_p20040306-kastyle_fix.patch b/x11-wm/kahakai/files/kahakai-0.6.2_p20040306-kastyle_fix.patch new file mode 100644 index 000000000000..1dead66ed8a9 --- /dev/null +++ b/x11-wm/kahakai/files/kahakai-0.6.2_p20040306-kastyle_fix.patch @@ -0,0 +1,11 @@ +--- data/styles/Default.kastyle.in.orig 2006-11-01 21:18:34.000000000 -0500 ++++ data/styles/Default.kastyle.in 2006-11-01 21:18:39.000000000 -0500 +@@ -43,7 +43,7 @@ + ## base stuff + + borderColor = black +-rootCommand = hsetroot -fill /tmp/ktest/share/kahakai/styles/Default.png ++rootCommand = hsetroot -fill /usr/share/kahakai/styles/Default.png + + ## and here we go .. + diff --git a/x11-wm/kahakai/files/kahakai-m4_fixes.patch b/x11-wm/kahakai/files/kahakai-m4_fixes.patch new file mode 100644 index 000000000000..40e0234f2ce4 --- /dev/null +++ b/x11-wm/kahakai/files/kahakai-m4_fixes.patch @@ -0,0 +1,22 @@ +--- config/m4/imlib2.m4.orig 2003-09-07 19:06:53.000000000 -0400 ++++ config/m4/imlib2.m4 2006-10-30 21:36:33.000000000 -0500 +@@ -7,7 +7,7 @@ + dnl AM_PATH_IMLIB2([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]]) + dnl Test for IMLIB2@, and define IMLIB2_CFLAGS and IMLIB2_LIBS + dnl +-AC_DEFUN(AM_PATH_IMLIB2, ++AC_DEFUN([AM_PATH_IMLIB2], + [dnl + dnl Get the cflags and libraries from the imlib2-config script + dnl +--- config/m4/ruby.m4.orig 2003-09-18 19:08:40.000000000 -0400 ++++ config/m4/ruby.m4 2006-10-30 21:35:56.000000000 -0500 +@@ -6,7 +6,7 @@ + dnl Test for Ruby, and define RUBY_CFLAGS, RUBY_LIBS, RUBY_LDSHARED, RUBY_DLEXT, + dnl ruby_libdir, ruby_archdir, ruby_sitelibdir and ruby_sitearchdir + dnl +-AC_DEFUN(AM_PATH_RUBY, ++AC_DEFUN([AM_PATH_RUBY], + [dnl + dnl Get the cflags and libraries from the rbconfig.rb + dnl |