diff options
Diffstat (limited to 'net/online-desktop/files')
-rw-r--r-- | net/online-desktop/files/patch-Makefile.in | 11 | ||||
-rw-r--r-- | net/online-desktop/files/patch-check-have-all-files.sh | 19 | ||||
-rw-r--r-- | net/online-desktop/files/patch-gconf.path | 5 | ||||
-rw-r--r-- | net/online-desktop/files/patch-od-autostart | 11 | ||||
-rw-r--r-- | net/online-desktop/files/patch-od-session | 11 | ||||
-rw-r--r-- | net/online-desktop/files/patch-pyddm-ddm-viewer | 8 | ||||
-rw-r--r-- | net/online-desktop/files/patch-pyddm-test-session.py | 8 | ||||
-rw-r--r-- | net/online-desktop/files/patch-pyddm-test.py | 8 | ||||
-rw-r--r-- | net/online-desktop/files/patch-pyonlinedesktop-fsutil.py | 11 | ||||
-rw-r--r-- | net/online-desktop/files/patch-pyonlinedesktop-ggadget.py | 8 | ||||
-rw-r--r-- | net/online-desktop/files/patch-pyonlinedesktop-widget.py | 15 | ||||
-rw-r--r-- | net/online-desktop/files/patch-weblogindriver-web-login-driver | 8 |
12 files changed, 123 insertions, 0 deletions
diff --git a/net/online-desktop/files/patch-Makefile.in b/net/online-desktop/files/patch-Makefile.in new file mode 100644 index 00000000000..ae3d2787bbc --- /dev/null +++ b/net/online-desktop/files/patch-Makefile.in @@ -0,0 +1,11 @@ +--- Makefile.in 2008-04-25 00:52:28.000000000 +0530 ++++ Makefile.in2 2008-05-28 11:32:38.000000000 +0530 +@@ -114,7 +114,7 @@ + binSCRIPT_INSTALL = $(INSTALL_SCRIPT) + presessionSCRIPT_INSTALL = $(INSTALL_SCRIPT) + SCRIPTS = $(bin_SCRIPTS) $(presession_SCRIPTS) +-DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/config ++DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/config -I%%LOCALBASE%%/include + depcomp = $(SHELL) $(top_srcdir)/depcomp + am__depfiles_maybe = depfiles + COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ diff --git a/net/online-desktop/files/patch-check-have-all-files.sh b/net/online-desktop/files/patch-check-have-all-files.sh new file mode 100644 index 00000000000..139d5350b3f --- /dev/null +++ b/net/online-desktop/files/patch-check-have-all-files.sh @@ -0,0 +1,19 @@ +--- check-have-all-files.sh.orig 2008-04-23 23:06:43.000000000 +0530 ++++ check-have-all-files.sh 2008-05-28 11:50:41.000000000 +0530 +@@ -1,4 +1,4 @@ +-#! /bin/bash ++#! /bin/sh + + set -e + +@@ -12,8 +12,8 @@ + + FILES_WE_SHOULD_HAVE=`(cd $SRCDIR && echo $GLOB_WE_SHOULD_HAVE)` + +-FILES_WE_SHOULD_HAVE=`echo $FILES_WE_SHOULD_HAVE | sed -e 's/ /\n/g' | sort | uniq` +-FILES_WE_HAVE=`echo $FILES_WE_HAVE | sed -e 's/ /\n/g' | sort | uniq` ++FILES_WE_SHOULD_HAVE=`echo $FILES_WE_SHOULD_HAVE | sed -e 'y/ /\n/' | sort | uniq` ++FILES_WE_HAVE=`echo $FILES_WE_HAVE | sed -e 'y/ /\n/' | sort | uniq` + + #echo "we have files: $FILES_WE_HAVE" + #echo "we should have files: $FILES_WE_SHOULD_HAVE" diff --git a/net/online-desktop/files/patch-gconf.path b/net/online-desktop/files/patch-gconf.path new file mode 100644 index 00000000000..2a0ab6a74cd --- /dev/null +++ b/net/online-desktop/files/patch-gconf.path @@ -0,0 +1,5 @@ +--- gconf.path~ 2008-04-23 23:06:43.000000000 +0530 ++++ gconf.path 2008-05-28 21:24:34.000000000 +0530 +@@ -1 +1 @@ +-xml:readonly:/usr/share/online-desktop/gconf.xml.online-desktop ++xml:readonly:%%LOCALBASE%%/share/online-desktop/gconf.xml.online-desktop diff --git a/net/online-desktop/files/patch-od-autostart b/net/online-desktop/files/patch-od-autostart new file mode 100644 index 00000000000..f25e3430a41 --- /dev/null +++ b/net/online-desktop/files/patch-od-autostart @@ -0,0 +1,11 @@ +--- od-autostart~ 2008-04-23 23:06:43.000000000 +0530 ++++ od-autostart 2008-05-28 21:25:45.000000000 +0530 +@@ -10,7 +10,7 @@ + if datadir_env: + datadirs = datadir_env.split(':') + else: +- datadirs = ['/usr/share/'] ++ datadirs = ['%%LOCALBASE%%/share/'] + autostart_dirs = map(lambda x: os.path.join(x, 'online-desktop', 'autostart'), datadirs) + for dir in autostart_dirs: + if os.access(dir, os.R_OK): diff --git a/net/online-desktop/files/patch-od-session b/net/online-desktop/files/patch-od-session new file mode 100644 index 00000000000..b06a9299f02 --- /dev/null +++ b/net/online-desktop/files/patch-od-session @@ -0,0 +1,11 @@ +--- od-session~ 2008-04-23 23:06:43.000000000 +0530 ++++ od-session 2008-05-28 21:26:32.000000000 +0530 +@@ -8,7 +8,7 @@ + + # Configure GConf, in a very hackish way + subprocess.call(['gconftool-2', '--shutdown']) +-os.environ['ONLINE_DESKTOP_GCONF'] = '/usr/share/online-desktop/gconf.path' ++os.environ['ONLINE_DESKTOP_GCONF'] = '%%LOCALBASE%%/share/online-desktop/gconf.path' + + reset_autostart_data = ''' + [Desktop Entry] diff --git a/net/online-desktop/files/patch-pyddm-ddm-viewer b/net/online-desktop/files/patch-pyddm-ddm-viewer new file mode 100644 index 00000000000..1480a277eee --- /dev/null +++ b/net/online-desktop/files/patch-pyddm-ddm-viewer @@ -0,0 +1,8 @@ +--- pyddm/ddm-viewer~ 2008-04-23 23:06:43.000000000 +0530 ++++ pyddm/ddm-viewer 2008-05-28 21:31:33.000000000 +0530 +@@ -1,4 +1,4 @@ +-#!/usr/bin/python ++#!/usr/bin/env python + + from optparse import OptionParser + import os diff --git a/net/online-desktop/files/patch-pyddm-test-session.py b/net/online-desktop/files/patch-pyddm-test-session.py new file mode 100644 index 00000000000..ff81328b750 --- /dev/null +++ b/net/online-desktop/files/patch-pyddm-test-session.py @@ -0,0 +1,8 @@ +--- pyddm/test-session.py~ 2008-04-23 23:06:43.000000000 +0530 ++++ pyddm/test-session.py 2008-05-28 21:32:29.000000000 +0530 +@@ -1,4 +1,4 @@ +-#!/usr/bin/python ++#!/usr/bin/env python + + from optparse import OptionParser + import logging diff --git a/net/online-desktop/files/patch-pyddm-test.py b/net/online-desktop/files/patch-pyddm-test.py new file mode 100644 index 00000000000..56dfa87f883 --- /dev/null +++ b/net/online-desktop/files/patch-pyddm-test.py @@ -0,0 +1,8 @@ +--- pyddm/test.py~ 2008-04-23 23:06:43.000000000 +0530 ++++ pyddm/test.py 2008-05-28 21:30:46.000000000 +0530 +@@ -1,4 +1,4 @@ +-#!/usr/bin/python ++#!/usr/bin/env python + + from optparse import OptionParser + import os diff --git a/net/online-desktop/files/patch-pyonlinedesktop-fsutil.py b/net/online-desktop/files/patch-pyonlinedesktop-fsutil.py new file mode 100644 index 00000000000..eca718b643b --- /dev/null +++ b/net/online-desktop/files/patch-pyonlinedesktop-fsutil.py @@ -0,0 +1,11 @@ +--- pyonlinedesktop/fsutil.py~ 2008-04-23 23:06:43.000000000 +0530 ++++ pyonlinedesktop/fsutil.py 2008-05-28 21:27:46.000000000 +0530 +@@ -12,7 +12,7 @@ + if datadir_env: + datadirs = datadir_env.split(':') + else: +- datadirs = ['/usr/share/'] ++ datadirs = ['%%LOCALBASE%%/share/'] + for dirname in datadirs: + dirpath = os.path.join(dirname, name) + if os.access(dirpath, os.R_OK): diff --git a/net/online-desktop/files/patch-pyonlinedesktop-ggadget.py b/net/online-desktop/files/patch-pyonlinedesktop-ggadget.py new file mode 100644 index 00000000000..aa0acd13e3b --- /dev/null +++ b/net/online-desktop/files/patch-pyonlinedesktop-ggadget.py @@ -0,0 +1,8 @@ +--- pyonlinedesktop/ggadget.py~ 2008-04-23 23:06:43.000000000 +0530 ++++ pyonlinedesktop/ggadget.py 2008-05-28 21:28:47.000000000 +0530 +@@ -1,4 +1,4 @@ +-#!/usr/bin/python ++#!/usr/bin/env python + + import os,sys,re,urllib,urllib2,logging,webbrowser,tempfile,shutil + import cookielib diff --git a/net/online-desktop/files/patch-pyonlinedesktop-widget.py b/net/online-desktop/files/patch-pyonlinedesktop-widget.py new file mode 100644 index 00000000000..50d355ab09e --- /dev/null +++ b/net/online-desktop/files/patch-pyonlinedesktop-widget.py @@ -0,0 +1,15 @@ +--- pyonlinedesktop/widget.py~ 2008-04-23 23:06:43.000000000 +0530 ++++ pyonlinedesktop/widget.py 2008-05-28 21:29:41.000000000 +0530 +@@ -1,4 +1,4 @@ +-#!/usr/bin/python ++#!/usr/bin/env python + + import os,sys,re,urllib,urllib2,logging,webbrowser,tempfile,shutil + import cookielib,urlparse +@@ -188,4 +188,4 @@ + oldv = getattr(self, k) + newv = self.__substitute_locale_msgs(oldv, msgs) + setattr(self, k, newv) +- +\ No newline at end of file ++ diff --git a/net/online-desktop/files/patch-weblogindriver-web-login-driver b/net/online-desktop/files/patch-weblogindriver-web-login-driver new file mode 100644 index 00000000000..ec5034d568e --- /dev/null +++ b/net/online-desktop/files/patch-weblogindriver-web-login-driver @@ -0,0 +1,8 @@ +--- weblogindriver/web-login-driver~ 2008-04-23 23:06:43.000000000 +0530 ++++ weblogindriver/web-login-driver 2008-06-02 04:55:00.000000000 +0530 +@@ -1,4 +1,4 @@ +-#!/usr/bin/python ++#!/usr/bin/env python + + import os,sys,re,logging,urlparse,base64 + |