get OpenOffice through the configure phase

svn path=/nixpkgs/trunk/; revision=4145
This commit is contained in:
Armijn Hemel 2005-10-26 17:05:32 +00:00
parent a4cc462b17
commit 218a6386bf
2 changed files with 3 additions and 3 deletions

View file

@ -2,7 +2,7 @@ source $stdenv/setup
configurePhase() {
cd config_office/;
./configure --disable-epm --disable-odk --with-java=no --disable-cups --with-system-libs --with-system-python --disable-mozilla;
./configure --disable-epm --disable-odk --with-java=no --disable-cups --with-system-libs --with-system-python --disable-mozilla --without-nas --disable-pasf --disable-gnome-vfs;
}
configurePhase=configurePhase;

View file

@ -1,4 +1,4 @@
{stdenv, fetchurl, pam, python, tcsh, libxslt, perl}:
{stdenv, fetchurl, pam, python, tcsh, libxslt, perl, perlArchiveZip, perlCompressZlib, zlib, libjpeg, expat, pkgconfig, freetype, libwpd, libxml2, db4, sablotron, curl, libXaw, fontconfig, libsndfile, neon, bison, flex, zip, gtk, libmspack}:
stdenv.mkDerivation {
name = "openoffice.org-2.0.0";
@ -7,5 +7,5 @@ stdenv.mkDerivation {
url = ftp://ftp.nluug.nl/pub/office/openoffice/stable/2.0.0/OOo_2.0.0_src.tar.gz;
md5 = "a68933afc2bf432d11b2043ac99ba0aa";
};
buildInputs = [pam python tcsh libxslt perl];
buildInputs = [pam python tcsh libxslt perl perlArchiveZip perlCompressZlib zlib libjpeg expat pkgconfig freetype libwpd libxml2 db4 sablotron curl libXaw fontconfig libsndfile neon bison flex zip gtk libmspack];
}