From 9c6acea5636d8d6095cf865e5b360b221e3cfa5d Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 5 Nov 2010 14:41:19 +0000 Subject: [PATCH] pkgs/applications/misc/xpdf: fixed location of "info" and "man" directories svn path=/nixpkgs/trunk/; revision=24606 --- pkgs/applications/misc/xpdf/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/misc/xpdf/default.nix b/pkgs/applications/misc/xpdf/default.nix index 7b897e59d4e..4a9425070de 100644 --- a/pkgs/applications/misc/xpdf/default.nix +++ b/pkgs/applications/misc/xpdf/default.nix @@ -40,11 +40,11 @@ stdenv.mkDerivation { ]; configureFlags = - [ "--enable-a4-paper" ] /* We obey ISO standards! */ - ++ (if enablePDFtoPPM then [ - "--with-freetype2-library=${freetype}/lib" - "--with-freetype2-includes=${freetype}/include/freetype2" - ] else []); + "--infodir=$out/share/info --mandir=$out/share/man --enable-a4-paper" + + (if enablePDFtoPPM then + " --with-freetype2-library=${freetype}/lib" + + " --with-freetype2-includes=${freetype}/include/freetype2" + else ""); postInstall = " if test -n \"${base14Fonts}\"; then @@ -59,6 +59,6 @@ stdenv.mkDerivation { description = "viewer for Portable Document Format (PDF) files"; platforms = stdenv.lib.platforms.unix; - maintainers = []; + maintainers = [ stdenv.lib.maintainers.simons ]; }; }