diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 1999-12-09 17:08:31 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 1999-12-09 17:08:31 +0000 |
commit | 8e49e1638ff87587eeb1dcb14d17c42d8bd654ba (patch) | |
tree | c1ea6d182b5dceed4721328b7b765177071a48c5 /editors/staroffice5/files | |
parent | 627cf8dd5aea00f4c2be028110bb4d9f1b4cac98 (diff) | |
download | ports-8e49e1638ff87587eeb1dcb14d17c42d8bd654ba.tar.gz ports-8e49e1638ff87587eeb1dcb14d17c42d8bd654ba.zip |
Notes
Diffstat (limited to 'editors/staroffice5/files')
-rw-r--r-- | editors/staroffice5/files/dot.sversionrc | 3 | ||||
-rw-r--r-- | editors/staroffice5/files/instdb.ins.patch | 15 | ||||
-rw-r--r-- | editors/staroffice5/files/setup.patch | 19 | ||||
-rw-r--r-- | editors/staroffice5/files/soffice.patch | 47 |
4 files changed, 84 insertions, 0 deletions
diff --git a/editors/staroffice5/files/dot.sversionrc b/editors/staroffice5/files/dot.sversionrc new file mode 100644 index 000000000000..ca723d7937c5 --- /dev/null +++ b/editors/staroffice5/files/dot.sversionrc @@ -0,0 +1,3 @@ +[Versions]
+StarOffice 5.1=/usr/home/darren/Office51
+
diff --git a/editors/staroffice5/files/instdb.ins.patch b/editors/staroffice5/files/instdb.ins.patch new file mode 100644 index 000000000000..5531741ed797 --- /dev/null +++ b/editors/staroffice5/files/instdb.ins.patch @@ -0,0 +1,15 @@ +*** instdb.ins.orig Wed Oct 27 12:40:34 1999 +--- instdb.ins Wed Oct 27 12:40:48 1999 +*************** +*** 1,5 **** + Installation INSTALLATION +! DefaultDestPath = "/usr/local/Office51"; + SourcePath = "/usr/ports/editors/staroffice51a/work/so51inst/office51"; + Mode = NETWORK; + InstallFromNet = NO; +--- 1,5 ---- + Installation INSTALLATION +! DefaultDestPath = "~/Office51"; + SourcePath = "/usr/ports/editors/staroffice51a/work/so51inst/office51"; + Mode = NETWORK; + InstallFromNet = NO; diff --git a/editors/staroffice5/files/setup.patch b/editors/staroffice5/files/setup.patch new file mode 100644 index 000000000000..e48ed36061ea --- /dev/null +++ b/editors/staroffice5/files/setup.patch @@ -0,0 +1,19 @@ +*** setup.orig Mon Aug 23 23:11:00 1999 +--- setup Tue Oct 26 16:48:18 1999 +*************** +*** 25,31 **** + LD_LIBRARY_PATH=.:/usr/openwin/lib:../lib + export LD_LIBRARY_PATH + ;; +! Linux) + LD_LIBRARY_PATH=.:../lib:$LD_LIBRARY_PATH + export LD_LIBRARY_PATH + ;; +--- 25,31 ---- + LD_LIBRARY_PATH=.:/usr/openwin/lib:../lib + export LD_LIBRARY_PATH + ;; +! Linux|FreeBSD) + LD_LIBRARY_PATH=.:../lib:$LD_LIBRARY_PATH + export LD_LIBRARY_PATH + ;; diff --git a/editors/staroffice5/files/soffice.patch b/editors/staroffice5/files/soffice.patch new file mode 100644 index 000000000000..8350349b9fb5 --- /dev/null +++ b/editors/staroffice5/files/soffice.patch @@ -0,0 +1,47 @@ +*** soffice.orig Tue Oct 26 16:57:20 1999 +--- soffice Tue Oct 26 17:00:15 1999 +*************** +*** 15,26 **** + # resolve installation directory + sd_platform=`uname -s` + case $sd_platform in +! SCO_SV) test=/bin/test ;; +! *) test=/usr/bin/test ;; + esac + + sd_cwd="`pwd`" +! if $test -L "$0" ; then + sd_basename=`basename $0` + sd_script=`ls -l $0 | sed "s/.*${sd_basename} -> //g"` + else +--- 15,27 ---- + # resolve installation directory + sd_platform=`uname -s` + case $sd_platform in +! FreeBSD) test=/bin/test && symb="-h" ;; +! SCO_SV) test=/bin/test && symb="-L" ;; +! *) test=/usr/bin/test && symb="-L" ;; + esac + + sd_cwd="`pwd`" +! if $test $symb "$0" ; then + sd_basename=`basename $0` + sd_script=`ls -l $0 | sed "s/.*${sd_basename} -> //g"` + else +*************** +*** 68,74 **** + export LD_LIBRARYN32_PATH + ;; + +! Linux) + LD_LIBRARY_PATH="$sd_inst/lib":$LD_LIBRARY_PATH + export LD_LIBRARY_PATH + ;; +--- 69,75 ---- + export LD_LIBRARYN32_PATH + ;; + +! Linux|FreeBSD) + LD_LIBRARY_PATH="$sd_inst/lib":$LD_LIBRARY_PATH + export LD_LIBRARY_PATH + ;; |