2005-10-25 20:01:13 +02:00
|
|
|
source $stdenv/setup
|
|
|
|
|
|
|
|
configurePhase() {
|
2007-07-18 18:45:07 +02:00
|
|
|
|
2005-10-25 20:01:13 +02:00
|
|
|
cd config_office/;
|
2007-07-18 18:45:07 +02:00
|
|
|
./configure --disable-epm --disable-odk --with-java=no --disable-cups --with-system-python \
|
|
|
|
--disable-mozilla --without-nas --disable-pasf --disable-gnome-vfs \
|
|
|
|
--with-hsqldb-jar=$hsqldb/lib/hsqldb.jar \
|
|
|
|
--with-beanshell-jar=$beanshell/bsh.jar \
|
|
|
|
--with-xml-apis-jar=$xerces/xml-apis.jar \
|
|
|
|
--with-xerces-jar=$xerces/xercesImpl.jar \
|
|
|
|
--with-xalan-jar=$xalan/xalan.jar \
|
|
|
|
--with-xt-jar=$xt --with-system-libs;
|
|
|
|
|
|
|
|
#--with-system-libs
|
|
|
|
|
2005-10-26 22:42:12 +02:00
|
|
|
cd ..
|
2005-10-25 20:01:13 +02:00
|
|
|
}
|
|
|
|
|
2005-10-26 22:42:12 +02:00
|
|
|
configurePhase=configurePhase
|
|
|
|
|
|
|
|
buildPhase() {
|
|
|
|
./bootstrap
|
|
|
|
source LinuxIntelEnv.Set.sh
|
|
|
|
dmake
|
|
|
|
}
|
|
|
|
|
|
|
|
buildPhase=buildPhase
|
2005-10-25 20:01:13 +02:00
|
|
|
|
|
|
|
genericBuild
|