Author: simons
Date: Fri Nov 5 14:41:19 2010
New Revision: 24606
URL: https://svn.nixos.org/websvn/nix/?rev=24606&sc=1
Log:
pkgs/applications/misc/xpdf: fixed location of "info" and "man" directories
Modified:
nixpkgs/trunk/pkgs/applications/misc/xpdf/default.nix
Modified: nixpkgs/trunk/pkgs/applications/misc/xpdf/default.nix
==============================================================================
--- nixpkgs/trunk/pkgs/applications/misc/xpdf/default.nix Fri Nov 5
14:35:37 2010 (r24605)
+++ nixpkgs/trunk/pkgs/applications/misc/xpdf/default.nix Fri Nov 5
14:41:19 2010 (r24606)
@@ -40,11 +40,11 @@
];
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 @@
description = "viewer for Portable Document Format (PDF) files";
platforms = stdenv.lib.platforms.unix;
- maintainers = [];
+ maintainers = [ stdenv.lib.maintainers.simons ];
};
}
_______________________________________________
nix-commits mailing list
[email protected]
http://mail.cs.uu.nl/mailman/listinfo/nix-commits