On Friday 14 Jan 2005 01:55, NAKATA Maho wrote: > In Message-ID: <[EMAIL PROTECTED]> > > Alexander Kotelnikov <[EMAIL PROTECTED]> wrote: > > In other words, I do not want to build original, instsetoo_native how > > can I just get OOo installed in a specific directory (and then I will > > work with it, split and package)?
There are two ways you can try. 1: > use format portable > > please see my patch. > http://www.freebsd.org/cgi/cvsweb.cgi/~checkout~/ports/editors/openoffice-2 >.0-devel/files/patch-instsetoo_native%2butil%2bmakefile.mk?rev=1.1&content-t >ype=text/plain Acutally you don't need a patch. The * in the line of makefile.mk that reads "FORMAT*=-format portable" means that you can override it with an environment variable. i.e. source Linux*.Set.sh export FORMAT='-format portable' dmake or build 2: The second method is to use the newly introduced '-simple' flag with make_installer.pl, introduced by Michael Meeks for ooo-build packagers. If you pass '-simple <path>' to the script, it will create an installation tree at <destdir>, that can be packaged and then unpacked to <path>. The command line you would need is this (transcribed from ooo-build/bin/ooinstall): cd instsetoo_native/util ../../solenv/bin/make_installer.pl -f openoffice.lst \ -p OpenOffice -packagelist ../inc_openoffice/unix/packagelist.txt \ -addpackagelist ../inc_openoffice/unix/packagelist_language.txt \ -buildid $BUILD <destdir> -simple <path> You may want to consider using ooo-build, which has extra infrastructure to make packagers' life easier. See http://www.go-ooo.com/ooo-build.html for more information. Chris --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
