diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2009-02-17 16:33:48 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2009-02-17 16:33:48 +0000 |
commit | f351178fd99dc5890bc829bda3944d68c74a5419 (patch) | |
tree | 52473838885cdb42f72e9ab5e05e3da6a7900130 /sci-astronomy/ds9/files/ds9-5.5-src.patch | |
parent | version bump (diff) | |
download | gentoo-2-f351178fd99dc5890bc829bda3944d68c74a5419.tar.gz gentoo-2-f351178fd99dc5890bc829bda3944d68c74a5419.tar.bz2 gentoo-2-f351178fd99dc5890bc829bda3944d68c74a5419.zip |
Version bump
(Portage version: 2.2_rc23/cvs/Linux x86_64)
Diffstat (limited to 'sci-astronomy/ds9/files/ds9-5.5-src.patch')
-rw-r--r-- | sci-astronomy/ds9/files/ds9-5.5-src.patch | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/sci-astronomy/ds9/files/ds9-5.5-src.patch b/sci-astronomy/ds9/files/ds9-5.5-src.patch new file mode 100644 index 000000000000..559dc01e29cb --- /dev/null +++ b/sci-astronomy/ds9/files/ds9-5.5-src.patch @@ -0,0 +1,50 @@ +--- saods9.orig/src/ds9.tcl 2009-02-16 17:06:47.000000000 +0000 ++++ saods9/src/ds9.tcl 2009-02-16 18:37:18.000000000 +0000 +@@ -224,25 +224,29 @@ + # initialize, depending on how we are running: choices are zvfs, or wish + # for now, its not possible to change the current work directory since + # all of the paths are relative +-if {![catch {package present zvfs}]} { +- set ds9(root) "zvfsmntpt" ++if {![catch {package present checkdns}]} { ++ set ds9(root) "/usr/share/ds9" + +- source $ds9(root)/tcl8.4/msgcat1.3/msgcat.tcl +- source $ds9(root)/tcl8.4/http2.5/http.tcl +- +- source $ds9(root)/tk8.4/tearoff.tcl +- +- source $ds9(root)/tcllib1.10/base64/base64.tcl +- source $ds9(root)/tcllib1.10/log/log.tcl +- source $ds9(root)/tcllib1.10/ftp/ftp.tcl +- source $ds9(root)/tcllib1.10/textutil/repeat.tcl +- source $ds9(root)/tcllib1.10/textutil/tabify.tcl +- +- source $ds9(root)/tkcon2.5/tkcon.tcl +- source $ds9(root)/xmlrpc0.3/xmlrpc.tcl +- +- source $ds9(root)/blt2.4/graph.tcl +- source $ds9(root)/blt2.4/tabset.tcl ++ package require msgcat ++ package require http ++ package require base64 ++ package require log ++ package require ftp ++ package require textutil::repeat ++ package require textutil::tabify ++ package require tkcon ++ package require BLT ++ package require Tktable ++ package require tclxpa ++ package require img::base ++ package require img::jpeg ++ package require img::tiff ++ package require img::png ++ package require img::gif ++ package require img::ppm ++ package require img::bmp ++ package require img::xbm ++ package require img::window + + source $ds9(root)/src/source.tcl + |