GNU IceCat 3.5.2.

svn path=/nixpkgs/trunk/; revision=16618
This commit is contained in:
Ludovic Courtès 2009-08-09 18:26:16 +00:00
parent a42b80d221
commit 5c37e49299
2 changed files with 3 additions and 17 deletions

View File

@ -4,13 +4,13 @@
, freetype, fontconfig
, application ? "browser" }:
let version = "3.5.1"; in
let version = "3.5.2"; in
stdenv.mkDerivation {
name = "icecat-${version}";
src = fetchurl {
url = "mirror://gnu/gnuzilla/${version}/icecat-${version}.tar.bz2";
sha256 = "1g3grlar2i1vn3hnaql2ny210ghjyjp24d9j5jcdfx6nsx761030";
sha256 = "1hm11pghka8793shyf21ghky30ykbns952nbblki8dxkg84qsfpa";
};
buildInputs = [
@ -21,7 +21,7 @@ stdenv.mkDerivation {
];
patches = [
./skip-gre-registration.patch ./rpath-link.patch ./pythonpath.patch
./skip-gre-registration.patch ./rpath-link.patch
];
configureFlags = [

View File

@ -1,14 +0,0 @@
This patch makes sure $PYTHONPATH is not overridden so that the `ply'
Python module is visible.
--- icecat-3.5.1/js/src/xpconnect/src/Makefile.in 2009-07-18 14:33:08.000000000 +0200
+++ icecat-3.5.1/js/src/xpconnect/src/Makefile.in 2009-07-20 16:31:43.000000000 +0200
@@ -209,7 +209,7 @@ dom_quickstubs.h dom_quickstubs.cpp: $(s
$(topsrcdir)/xpcom/idl-parser/header.py \
$(topsrcdir)/xpcom/idl-parser/xpidl.py \
$(DEPTH)/js/src/mozilla-config.h
- PYTHONPATH=$(topsrcdir)/xpcom/idl-parser \
+ PYTHONPATH="$$PYTHONPATH:$(topsrcdir)/xpcom/idl-parser" \
$(PYTHON) $(srcdir)/qsgen.py \
--idlpath=$(DEPTH)/dist/idl \
--cachedir=$(DEPTH)/xpcom/idl-parser \