From owner-freebsd-emulation Tue Nov 2 12:25:10 1999 Delivered-To: freebsd-emulation@freebsd.org Received: from mail.scc.nl (node1374.a2000.nl [62.108.19.116]) by hub.freebsd.org (Postfix) with ESMTP id 64F561545C for ; Tue, 2 Nov 1999 12:25:01 -0800 (PST) (envelope-from freebsd-emulation@scc.nl) Received: (from daemon@localhost) by mail.scc.nl (8.9.3/8.9.3) id VAA29932 for emulation@FreeBSD.org; Tue, 2 Nov 1999 21:09:37 +0100 (CET) (envelope-from freebsd-emulation@scc.nl) Received: from GATEWAY by dwarf.hq.scc.nl with netnews for emulation@FreeBSD.org (emulation@FreeBSD.org) To: emulation@FreeBSD.org Date: Tue, 02 Nov 1999 21:09:29 +0100 From: Marcel Moolenaar Message-ID: <381F44F9.B8688654@scc.nl> Organization: SCC vof Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit References: <19991102134031.B7641@intrepid.net> Subject: Re: StarOffice 5.1A Howto Sender: owner-freebsd-emulation@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Mark Conway Wirt wrote: > Libraries > --------- > > Make sure you have a current version of the Linux_lib port > installed. On my system, I'm running 2.6, and it seems to work > well. The package is in /usr/ports/emulators in case you haven't > installed it. linux_lib has been replaced by linux_base-5.2 for a while now. > File System > ----------- > > If you keep a small root partition, you may want to temporarily > reassign /tmp to another partition. For example: You can set the TMPDIR env. variable to handle this: csh: setenv TMPDIR /usr/tmp sh: TMPDIR=/usr/tmp; export TMPDIR > Unfortunately, there are libraries that the setup process needs > that you'll need to install by hand. Move the setup.zip file into > a temporary directory and unzip it. Note that the libraries will > need to be in lower case, so check the man page of your unzip to > see if you can force that. My copy of unzip will do that with the > "-L" option: I always installed SO without all this hassle. Setting LD_LIBRARY_PATH always was enough: csh: setenv LD_LIBRARY_PATH . sh: LD_LIBRARY_PATH=.; export LD_LIBRARY_PATH > Modifications to the soffice Script > ----------------------------------- > > First, change the line that defines "$test" from > > *) test=/usr/bin/test ;; > > to > > *) test=/bin/test ;; This is not needed for linux_base-5.2 > change the line that performs the test from: > > if $test -L "$0" ; then > > to > > if $test -f "$0" ; then Probably also not needed, because the test that's being used understands -L > Lastly, change the line that read > > sd_script=`ls -l $0 | sed "s/.*${sd_basename} -> //g"` > > to read instead > > sd_script=`ls $0 | sed "s/.*${sd_basename} -> //g"` New too me... > Modifications to applicat.rdb > ----------------------------- This is indeed necessary for SO5.1a, so I've been told :-) All in all a pleasant HOWTO, but a bit outdated and needlessly complex :-) -- Marcel Moolenaar mailto:marcel@scc.nl SCC Internetworking & Databases http://www.scc.nl/ The FreeBSD project mailto:marcel@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-emulation" in the body of the message