2005-12-03 00:21:40 +01:00
|
|
|
{ enableGUI ? true, enablePDFtoPPM ? true, useT1Lib ? true
|
|
|
|
, 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
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2009-08-17 15:50:18 +02:00
|
|
|
name = "xpdf-3.02pl3";
|
2005-12-02 23:49:51 +01:00
|
|
|
|
2005-11-27 22:06:08 +01:00
|
|
|
src = fetchurl {
|
2007-04-05 11:09:10 +02:00
|
|
|
url = ftp://ftp.foolabs.com/pub/xpdf/xpdf-3.02.tar.gz;
|
|
|
|
sha256 = "000zq4ddbwyxiki4vdwpmxbnw5n9hsg9hvwra2p33hslyib7sfmk";
|
2005-11-27 22:06:08 +01:00
|
|
|
};
|
2005-12-02 23:49:51 +01:00
|
|
|
|
2005-12-03 00:21:40 +01:00
|
|
|
buildInputs =
|
|
|
|
(if enableGUI then [x11 motif] else []) ++
|
|
|
|
(if useT1Lib then [t1lib] else []);
|
2007-10-03 14:16:48 +02:00
|
|
|
|
|
|
|
patches = [
|
|
|
|
(fetchurl {
|
|
|
|
url = ftp://ftp.foolabs.com/pub/xpdf/xpdf-3.02pl1.patch;
|
|
|
|
sha256 = "1wxv9l0d2kkwi961ihpdwi75whdvk7cgqxkbfym8cjj11fq17xjq";
|
|
|
|
})
|
2009-01-06 16:30:55 +01:00
|
|
|
(fetchurl {
|
|
|
|
url = ftp://ftp.foolabs.com/pub/xpdf/xpdf-3.02pl2.patch;
|
|
|
|
sha256 = "1nfrgsh9xj0vryd8h65myzd94bjz117y89gq0hzji9dqn23xihfi";
|
|
|
|
})
|
2009-08-17 15:50:18 +02:00
|
|
|
(fetchurl {
|
|
|
|
url = ftp://ftp.foolabs.com/pub/xpdf/xpdf-3.02pl3.patch;
|
|
|
|
sha256 = "0jskkv8x6dqr9zj4azaglas8cziwqqrkbbnzrpm2kzrvsbxyhk2r";
|
|
|
|
})
|
2007-11-20 18:27:24 +01:00
|
|
|
./xpdf-3.02-protection.patch
|
2007-10-03 14:16:48 +02:00
|
|
|
];
|
2005-12-02 23:49:51 +01:00
|
|
|
|
2006-05-01 16:53:08 +02:00
|
|
|
configureFlags =
|
|
|
|
[ "--enable-a4-paper" ] /* We obey ISO standards! */
|
|
|
|
++ (if enablePDFtoPPM then [
|
2006-05-01 17:25:17 +02:00
|
|
|
"--with-freetype2-library=${freetype}/lib"
|
|
|
|
"--with-freetype2-includes=${freetype}/include/freetype2"
|
2006-05-01 16:53:08 +02:00
|
|
|
] else []);
|
2007-10-03 14:16:48 +02:00
|
|
|
|
|
|
|
postInstall = "
|
|
|
|
if test -n \"${base14Fonts}\"; then
|
|
|
|
substituteInPlace $out/etc/xpdfrc \\
|
|
|
|
--replace /usr/local/share/ghostscript/fonts ${base14Fonts} \\
|
|
|
|
--replace '#displayFontT1' displayFontT1
|
|
|
|
fi
|
|
|
|
";
|
2005-11-27 22:06:08 +01:00
|
|
|
}
|