From 3e162300e92fea0ea2f0e4fc61d0f6eff1054a84 Mon Sep 17 00:00:00 2001 From: Chuck Robey Date: Fri, 2 Aug 1996 19:57:32 +0000 Subject: New port, tkdesk. My only choice for a X11 desk (the only one I've ever liked even a little bit). Thanks, Andreas. Submitted by: Andreas Kohout --- x11-fm/tkdesk/files/patch-aa | 146 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 146 insertions(+) create mode 100644 x11-fm/tkdesk/files/patch-aa (limited to 'x11-fm/tkdesk/files') diff --git a/x11-fm/tkdesk/files/patch-aa b/x11-fm/tkdesk/files/patch-aa new file mode 100644 index 000000000000..06d7427ceb90 --- /dev/null +++ b/x11-fm/tkdesk/files/patch-aa @@ -0,0 +1,146 @@ +*** Makefile.orig Tue Jul 30 19:51:32 1996 +--- Makefile Tue Jul 30 20:08:46 1996 +*************** +*** 5,11 **** + # =========================================================================== + + # Note: This Makefile has been set up to be used "as is" for stock +! # Slackware 3.0 Linux systems, assuming the Slackware Tcl/Tk packages + # have been installed and are to be used by TkDesk. + # Else: Just change the options below. + +--- 5,11 ---- + # =========================================================================== + + # Note: This Makefile has been set up to be used "as is" for stock +! # FreeBSD 2.1 and obove systems, assuming the Tcl/Tk 7.5/4.1 ports/packages + # have been installed and are to be used by TkDesk. + # Else: Just change the options below. + +*************** +*** 35,71 **** + # -------------------------------- + + # Location of the Tcl include files: +! TCLINCDIR = /usr/include/tcl # Linux with Slackware 3.0 +! #TCLINCDIR = /usr/local/include + #TCLINCDIR = /usr/local/include/tcl7.5 + #TCLINCDIR = $(HOME)/include + + # Location of the Tcl library: +! TCLLIBDIR = /usr/lib +! #TCLLIBDIR = /usr/local/lib + #TCLLIBDIR = $(HOME)/lib + + # Flag for linking the Tcl library to TkDesk: +! TCLLIB = -ltcl + #TCLLIB = -ltcl7.4 +! #TCLLIB = -ltcl7.5 + #TCLLIB = -ltcl7_4 + + # Location of the Tk include files: +! TKINCDIR = /usr/include/tcl # Linux with Slackware 3.0 +! #TKINCDIR = /usr/local/include + #TKINCDIR = /usr/local/include/tcl7.5 + #TKINCDIR = $(HOME)/include + + # Location of the Tk library: +! TKLIBDIR = /usr/lib +! #TKLIBDIR = /usr/local/lib + #TKLIBDIR = $(HOME)/lib + + # Flag for linking the Tk library to TkDesk: +! TKLIB = -ltk + #TKLIB = -ltk4.0 +! #TKLIB = -ltk4.1 + #TKLIB = -ltk4_0 + + # -------------------------------- +--- 35,71 ---- + # -------------------------------- + + # Location of the Tcl include files: +! #TCLINCDIR = /usr/include/tcl # Linux with Slackware 3.0 +! TCLINCDIR = /usr/local/include + #TCLINCDIR = /usr/local/include/tcl7.5 + #TCLINCDIR = $(HOME)/include + + # Location of the Tcl library: +! #TCLLIBDIR = /usr/lib +! TCLLIBDIR = /usr/local/lib + #TCLLIBDIR = $(HOME)/lib + + # Flag for linking the Tcl library to TkDesk: +! #TCLLIB = -ltcl + #TCLLIB = -ltcl7.4 +! TCLLIB = -ltcl75 + #TCLLIB = -ltcl7_4 + + # Location of the Tk include files: +! #TKINCDIR = /usr/include/tcl # Linux with Slackware 3.0 +! TKINCDIR = /usr/local/include + #TKINCDIR = /usr/local/include/tcl7.5 + #TKINCDIR = $(HOME)/include + + # Location of the Tk library: +! #TKLIBDIR = /usr/lib +! TKLIBDIR = /usr/local/lib + #TKLIBDIR = $(HOME)/lib + + # Flag for linking the Tk library to TkDesk: +! #TKLIB = -ltk + #TKLIB = -ltk4.0 +! TKLIB = -ltk41 + #TKLIB = -ltk4_0 + + # -------------------------------- +*************** +*** 88,99 **** + # (If you're linking with Tcl 7.5 with dynamic loading enabled you need + # to add the appropriate library which allows for dynamic loading on + # your system, such as -ldl for Linux and SGI or -ldld for HP-UX.) +! OTHERLIBS = -lieee # e.g. Linux + #OTHERLIBS = -ldl -lieee # e.g. Linux with Tcl 7.5 and dynamic loading + #OTHERLIBS = -lnsl -lsocket # e.g. for Solaris + #OTHERLIBS = -ldl -lsocket # e.g. for SGI with os5.3 and Tcl 7.5 + #OTHERLIBS = -ldld # e.g. for HP-UX 9.05 and Tcl 7.5 (am I right?) +! #OTHERLIBS = + + # -------------------------------- + # Compiler and Linker Settings: +--- 88,99 ---- + # (If you're linking with Tcl 7.5 with dynamic loading enabled you need + # to add the appropriate library which allows for dynamic loading on + # your system, such as -ldl for Linux and SGI or -ldld for HP-UX.) +! #OTHERLIBS = -lieee # e.g. Linux + #OTHERLIBS = -ldl -lieee # e.g. Linux with Tcl 7.5 and dynamic loading + #OTHERLIBS = -lnsl -lsocket # e.g. for Solaris + #OTHERLIBS = -ldl -lsocket # e.g. for SGI with os5.3 and Tcl 7.5 + #OTHERLIBS = -ldld # e.g. for HP-UX 9.05 and Tcl 7.5 (am I right?) +! OTHERLIBS = + + # -------------------------------- + # Compiler and Linker Settings: +*************** +*** 108,117 **** + #CFLAGS = -Wall -g + + # And options for the linker: +! #LDFLAGS = -s + # Linux Slackware 3.0 users: use the following to prevent static linking + # if you're using the Slackware Tcl/Tk packages: +! LDFLAGS = -s -L/lib + + + # --------------------------------------------------------------------------- +--- 108,117 ---- + #CFLAGS = -Wall -g + + # And options for the linker: +! LDFLAGS = -s + # Linux Slackware 3.0 users: use the following to prevent static linking + # if you're using the Slackware Tcl/Tk packages: +! #LDFLAGS = -s -L/lib + + + # --------------------------------------------------------------------------- -- cgit v1.2.3