2012-08-16 21:31:44 +01:00
|
|
|
{ enableGUI ? true, enablePDFtoPPM ? true, useT1Lib ? false
|
2005-12-02 23:21:40 +00:00
|
|
|
, stdenv, fetchurl, x11 ? null, motif ? null, freetype ? null, t1lib ? null
|
2007-10-03 13:16:48 +01:00
|
|
|
, base14Fonts ? null
|
2005-12-02 22:49:51 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
assert enableGUI -> x11 != null && motif != null && freetype != null;
|
|
|
|
assert enablePDFtoPPM -> freetype != null;
|
2005-12-02 23:21:40 +00:00
|
|
|
assert useT1Lib -> t1lib != null;
|
2005-11-27 21:06:08 +00:00
|
|
|
|
2012-08-16 21:31:44 +01:00
|
|
|
assert !useT1Lib; # t1lib has multiple unpatched security vulnerabilities
|
|
|
|
|
2005-11-27 21:06:08 +00:00
|
|
|
stdenv.mkDerivation {
|
2011-10-31 21:38:30 +00:00
|
|
|
name = "xpdf-3.03";
|
2005-12-02 22:49:51 +00:00
|
|
|
|
2005-11-27 21:06:08 +00:00
|
|
|
src = fetchurl {
|
2011-10-31 21:38:30 +00:00
|
|
|
url = ftp://ftp.foolabs.com/pub/xpdf/xpdf-3.03.tar.gz;
|
|
|
|
sha256 = "1jnfzdqc54wa73lw28kjv0m7120mksb0zkcn81jdlvijyvc67kq2";
|
2005-11-27 21:06:08 +00:00
|
|
|
};
|
2010-10-07 14:14:29 +01:00
|
|
|
|
2005-12-02 23:21:40 +00:00
|
|
|
buildInputs =
|
|
|
|
(if enableGUI then [x11 motif] else []) ++
|
|
|
|
(if useT1Lib then [t1lib] else []);
|
2007-10-03 13:16:48 +01:00
|
|
|
|
2011-10-31 21:38:30 +00:00
|
|
|
# Debian uses '-fpermissive' to bypass some errors on char* constantness.
|
|
|
|
CXXFLAGS = "-O2 -fpermissive";
|
2010-10-07 14:14:29 +01:00
|
|
|
|
2006-05-01 15:53:08 +01:00
|
|
|
configureFlags =
|
2010-11-05 14:41:19 +00:00
|
|
|
"--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 "");
|
2007-10-03 13:16:48 +01:00
|
|
|
|
|
|
|
postInstall = "
|
|
|
|
if test -n \"${base14Fonts}\"; then
|
|
|
|
substituteInPlace $out/etc/xpdfrc \\
|
|
|
|
--replace /usr/local/share/ghostscript/fonts ${base14Fonts} \\
|
2011-12-01 20:17:42 +00:00
|
|
|
--replace '#fontFile' fontFile
|
2007-10-03 13:16:48 +01:00
|
|
|
fi
|
|
|
|
";
|
2010-10-07 14:14:13 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = "http://www.foolabs.com/xpdf/";
|
|
|
|
description = "viewer for Portable Document Format (PDF) files";
|
|
|
|
|
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2010-11-05 14:41:19 +00:00
|
|
|
maintainers = [ stdenv.lib.maintainers.simons ];
|
2010-10-07 14:14:13 +01:00
|
|
|
};
|
2005-11-27 21:06:08 +00:00
|
|
|
}
|