about summary refs log tree commit diff
path: root/pkgs/applications/misc/xpdf
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2007-10-03 12:16:48 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2007-10-03 12:16:48 +0000
commit459b386ff92561a0c26c342e50b85300b0242d62 (patch)
tree07b5acf1793439fc359fd1c8754aebd00a134415 /pkgs/applications/misc/xpdf
parent2d9f1f42b6cfe51345c26852fd51b2405ed12144 (diff)
downloadnixlib-459b386ff92561a0c26c342e50b85300b0242d62.tar
nixlib-459b386ff92561a0c26c342e50b85300b0242d62.tar.gz
nixlib-459b386ff92561a0c26c342e50b85300b0242d62.tar.bz2
nixlib-459b386ff92561a0c26c342e50b85300b0242d62.tar.lz
nixlib-459b386ff92561a0c26c342e50b85300b0242d62.tar.xz
nixlib-459b386ff92561a0c26c342e50b85300b0242d62.tar.zst
nixlib-459b386ff92561a0c26c342e50b85300b0242d62.zip
* xpdf updated to 3.02pl1. Also patch its configuration file so that
  it uses the Base-14 fonts from Ghostscript.

svn path=/nixpkgs/trunk/; revision=9396
Diffstat (limited to 'pkgs/applications/misc/xpdf')
-rw-r--r--pkgs/applications/misc/xpdf/default.nix18
1 files changed, 17 insertions, 1 deletions
diff --git a/pkgs/applications/misc/xpdf/default.nix b/pkgs/applications/misc/xpdf/default.nix
index 150f3bd85c7f..bdaad1851dd7 100644
--- a/pkgs/applications/misc/xpdf/default.nix
+++ b/pkgs/applications/misc/xpdf/default.nix
@@ -1,5 +1,6 @@
 { enableGUI ? true, enablePDFtoPPM ? true, useT1Lib ? true
 , stdenv, fetchurl, x11 ? null, motif ? null, freetype ? null, t1lib ? null
+, base14Fonts ? null
 }:
 
 assert enableGUI -> x11 != null && motif != null && freetype != null;
@@ -7,7 +8,7 @@ assert enablePDFtoPPM -> freetype != null;
 assert useT1Lib -> t1lib != null;
 
 stdenv.mkDerivation {
-  name = "xpdf-3.02";
+  name = "xpdf-3.02pl1";
 
   src = fetchurl {
     url = ftp://ftp.foolabs.com/pub/xpdf/xpdf-3.02.tar.gz;
@@ -17,6 +18,13 @@ stdenv.mkDerivation {
   buildInputs =
     (if enableGUI then [x11 motif] else []) ++
     (if useT1Lib then [t1lib] else []);
+
+  patches = [
+    (fetchurl {
+      url = ftp://ftp.foolabs.com/pub/xpdf/xpdf-3.02pl1.patch;
+      sha256 = "1wxv9l0d2kkwi961ihpdwi75whdvk7cgqxkbfym8cjj11fq17xjq";
+    })
+  ];
     
   configureFlags =
     [ "--enable-a4-paper" ] /* We obey ISO standards! */
@@ -24,4 +32,12 @@ stdenv.mkDerivation {
       "--with-freetype2-library=${freetype}/lib"
       "--with-freetype2-includes=${freetype}/include/freetype2"
     ] else []);
+
+  postInstall = "
+    if test -n \"${base14Fonts}\"; then
+      substituteInPlace $out/etc/xpdfrc \\
+        --replace /usr/local/share/ghostscript/fonts ${base14Fonts} \\
+        --replace '#displayFontT1' displayFontT1
+    fi
+  ";
 }