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