I just completed my first build (8 hours on a Toshiba laptop) ( configure args and packages added documented in attached script). I followed the directions from the wiki page and added:

export LOCALINSTALLDIR="/home/tcm/dest/second_try"
mkdir -p $LOCALINSTALLDIR
export PKGFORMAT="installed"

between the calls to bootstrap and configure in order to generate a ready-to-run installation
but ended up with a directory full of Debian packages.

Any suggestions?


        TIA - Terrence

P.S. What is the OOo policy on build warnings (there were a lot).

#!/bin/bash
# configure and bootstrap a fresh source tree
#
cd $1

#first set of packages needed to fix configure errors
#
apt-get -y install libtiff4-dev  libtiffx0c2 libjpeg62-dev \
  libexpat1-dev libwpd8-dev libfreetypes6-dev libdb4.7 \
  libdb4.7++ libdb4.7++-dev libdb-dev

#some of the packages suggested by wiki page entry for ubuntu 8.10
# (list also included g++, gcc, and sun-java6-jdk
#
apt-get -y install flex libarchive-zip-perl libcups2-dev \
  libpam0g-dev gperf libxaw7-dev libfontconfig1-dev \
  libxrandr-dev patch \
  libgconf2-dev libgnomevfs2-dev ant python-dev libgtk2.0-dev ccache

# more packages loaded to fix configure errors
#
apt-get -y install libneon27-dev libunspell-dev libhyphen-dev

#files moved to fix configure errors

mkdir -p  /usr/lib/perl/5.10.0/bin 
cp /usr/bin/perl /usr/lib/perl/5.10.0/bin/perl
mkdir -p /usr/lib/perl/5.10.0/Archive
cp /usr/lib/perl/5.10.0/IO/Compress/Zip.pm /usr/lib/perl/5.10.0/Archive/Zip.pm

# configure command suggested by wiki pages modified to eliminate configure
# errors
#
./configure --with-use-shell=bash --with-system-libs \
  --without-system-jars --without-system-icu --without-system-agg \
  --without-system-lpsolve --without-system-mspack --disable-mozilla \
  --with-perl-home=/usr/lib/perl/5.10.0 --without-system-curl \
  --disable-Xaw --disable-odk --with-system-python

#
#build dmake
#
./bootstrap



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@openoffice.org
For additional commands, e-mail: dev-h...@openoffice.org

Reply via email to