OpenSDE Packages Database (without history before r20070)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

81 lines
3.7 KiB

  1. # --- SDE-COPYRIGHT-NOTE-BEGIN ---
  2. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  3. #
  4. # Filename: package/.../gnofract4d/install.patch
  5. # Copyright (C) 2006 The OpenSDE Project
  6. #
  7. # More information can be found in the files COPYING and README.
  8. #
  9. # This patch file is dual-licensed. It is available under the license the
  10. # patched project is licensed under, as long as it is an OpenSource license
  11. # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
  12. # of the GNU General Public License as published by the Free Software
  13. # Foundation; either version 2 of the License, or (at your option) any later
  14. # version.
  15. # --- SDE-COPYRIGHT-NOTE-END ---
  16. diff -ur gnofract4d-3.1_orig/fract4d/test_fractal.py gnofract4d-3.1/fract4d/test_fractal.py
  17. --- gnofract4d-3.1_orig/fract4d/test_fractal.py 2006-09-09 01:51:37.000000000 +0100
  18. +++ gnofract4d-3.1/fract4d/test_fractal.py 2006-09-09 01:51:43.000000000 +0100
  19. @@ -1083,7 +1083,7 @@
  20. @bailfunc=cmag
  21. @_gradient=[
  22. GIMP Gradient
  23. -Name: /usr/share/gimp/1.2/gradients/Abstract_3
  24. +Name: /opt/gnome2/share/gimp/2.0/gradients/Abstract_3
  25. 6
  26. 0.000000 0.050083 0.435726 0.000000 0.424242 0.070751 1.000000 1.000000 0.725647 0.428066 1.000000 0 0
  27. 0.435726 0.490818 0.590985 1.000000 0.725647 0.428066 1.000000 0.115248 0.249315 0.651515 1.000000 0 0
  28. diff -ur gnofract4d-3.1_orig/fract4dgui/colors.py gnofract4d-3.1/fract4dgui/colors.py
  29. --- gnofract4d-3.1_orig/fract4dgui/colors.py 2006-09-09 01:51:37.000000000 +0100
  30. +++ gnofract4d-3.1/fract4dgui/colors.py 2006-09-09 01:51:43.000000000 +0100
  31. @@ -55,7 +55,7 @@
  32. os.path.join(sys.exec_prefix,"share/maps/gnofract4d"))
  33. # find gimp gradient files
  34. - gimp_dir = os.path.join(sys.exec_prefix,"share/gimp/")
  35. + gimp_dir = os.path.abspath("/opt/gnome2/share/gimp/2.0")
  36. if os.path.isdir(gimp_dir):
  37. for gimp_ver in os.listdir(gimp_dir):
  38. self.add_directory(
  39. diff -ur gnofract4d-3.1_orig/fract4dgui/main_window.py gnofract4d-3.1/fract4dgui/main_window.py
  40. --- gnofract4d-3.1_orig/fract4dgui/main_window.py 2006-09-09 01:51:37.000000000 +0100
  41. +++ gnofract4d-3.1/fract4dgui/main_window.py 2006-09-09 01:53:12.000000000 +0100
  42. @@ -1231,8 +1231,8 @@
  43. loc = "C" # FIXME
  44. # look locally first to support run-before-install
  45. - local_dir = "doc/gnofract4d-manual/%s/" % loc
  46. - install_dir = "share/gnome/help/gnofract4d/%s/" % loc
  47. + local_dir = "share/doc/gnofract4d/gnofract4d-manual/%s/" % loc
  48. + install_dir = "share/doc/gnofract4d/gnofract4d-manual/%s" % loc
  49. helpfile = utils.find_resource(base_help_file, local_dir, install_dir)
  50. abs_file = os.path.abspath(helpfile)
  51. diff -ur gnofract4d-3.1_orig/setup.py gnofract4d-3.1/setup.py
  52. --- gnofract4d-3.1_orig/setup.py 2006-09-09 01:51:37.000000000 +0100
  53. +++ gnofract4d-3.1/setup.py 2006-09-09 01:56:36.000000000 +0100
  54. @@ -193,12 +193,6 @@
  55. ('share/formulas/gnofract4d',
  56. get_files("formulas","frm") + get_files("formulas", "ucl")),
  57. - # documentation
  58. - ('share/gnome/help/gnofract4d/C',
  59. - get_files("doc/gnofract4d-manual/C", "xml")),
  60. - ('share/gnome/help/gnofract4d/C/figures',
  61. - get_files("doc/gnofract4d-manual/C/figures",".png")),
  62. -
  63. #internal pixmaps
  64. ('share/pixmaps/gnofract4d',
  65. ['pixmaps/deepen_now.png',
  66. @@ -213,10 +207,6 @@
  67. # MIME type registration
  68. ('share/mime/packages', ['gnofract4d-mime.xml']),
  69. -
  70. - # doc files
  71. - ('share/doc/gnofract4d-%s/' % gnofract4d_version,
  72. - ['COPYING', 'README']),
  73. ],
  74. cmdclass={
  75. "my_bdist_rpm": my_bdist_rpm.my_bdist_rpm,