* More freedesktop.org X11 modules.

* Cleaned up some packages.

svn path=/nixpkgs/trunk/; revision=883
This commit is contained in:
Eelco Dolstra
2004-03-30 17:28:41 +00:00
parent 5a4de2c5de
commit 00004fa6da
25 changed files with 111 additions and 179 deletions

View File

@@ -1,10 +1,8 @@
buildinputs="$pkgconfig $gtk $perl $zip $libIDL"
. $stdenv/setup || exit 1
. $stdenv/setup
tar xvfj $src || exit 1
cd mozilla || exit 1
cat > .mozconfig <<EOF
preConfigure() {
cat > .mozconfig <<EOF
export MOZ_PHOENIX=1
mk_add_options MOZ_PHOENIX=1
ac_add_options --enable-crypto
@@ -21,8 +19,11 @@ ac_add_options --enable-swg
ac_add_options --enable-strip
ac_add_options --enable-default-toolkit=gtk2
EOF
echo "ac_add_options --prefix=$out" >> .mozconfig
echo "ac_add_options --prefix=$out" >> .mozconfig
}
preConfigure=preConfigure
./configure || exit 1
make -f client.mk build || exit 1
make install || exit 1
makeFlags="-f client.mk build"
genericBuild

View File

@@ -15,9 +15,5 @@ stdenv.mkDerivation {
md5 = "cdc85152f4219bf3e3f1a8dc46e04654";
};
pkgconfig = pkgconfig;
gtk = gtk;
perl = perl;
zip = zip;
libIDL = libIDL;
buildInputs = [pkgconfig, gtk, perl, zip, libIDL];
}