2008-07-17 17:02:57 +02:00
|
|
|
{ fetchurl, stdenv, qt4Support ? false, qt4 ? null
|
|
|
|
, cairo, freetype, fontconfig, zlib, libjpeg
|
|
|
|
, pkgconfig, glib, gtk }:
|
|
|
|
|
|
|
|
assert qt4Support -> (qt4 != null);
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2009-05-12 13:55:17 +02:00
|
|
|
name = "poppler-0.10.6";
|
2008-07-17 17:02:57 +02:00
|
|
|
|
2009-02-21 00:43:29 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://poppler.freedesktop.org/${name}.tar.gz";
|
2009-05-12 13:55:17 +02:00
|
|
|
sha256 = "bcd78d674c4166af069afdb27af810c012e13cfd2b7b21f9dce63dd3f62bded1";
|
2009-02-21 00:43:29 +01:00
|
|
|
};
|
2007-11-11 17:00:51 +01:00
|
|
|
|
2009-02-21 00:43:29 +01:00
|
|
|
buildInputs = [pkgconfig zlib glib cairo freetype fontconfig libjpeg gtk]
|
2008-07-17 17:02:57 +02:00
|
|
|
++ (if qt4Support then [qt4] else []);
|
2007-11-11 17:00:51 +01:00
|
|
|
|
2009-04-22 01:18:09 +02:00
|
|
|
configureFlags =
|
|
|
|
''
|
|
|
|
--enable-exceptions --enable-cairo --enable-splash
|
|
|
|
--enable-poppler-glib --enable-zlib --enable-xpdf-headers
|
|
|
|
''
|
2009-02-21 00:43:29 +01:00
|
|
|
+ (if qt4Support then "--enable-qt-poppler" else "--disable-qt-poppler");
|
2008-07-17 17:02:57 +02:00
|
|
|
|
2009-02-21 00:43:29 +01:00
|
|
|
patches = [ ./GDir-const.patch ./use_exceptions.patch ];
|
2007-11-11 17:00:51 +01:00
|
|
|
|
2009-02-21 00:43:29 +01:00
|
|
|
preConfigure = "sed -e '/jpeg_incdirs/s@/usr@${libjpeg}@' -i configure";
|
2008-07-17 17:02:57 +02:00
|
|
|
|
2009-02-21 22:53:50 +01:00
|
|
|
# XXX: The Poppler/Qt4 test suite refers to non-existent PDF files
|
|
|
|
# such as `../../../test/unittestcases/UseNone.pdf'.
|
|
|
|
doCheck = !qt4Support;
|
2008-07-17 17:02:57 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://poppler.freedesktop.org/;
|
|
|
|
description = "Poppler, a PDF rendering library";
|
2009-02-21 00:43:29 +01:00
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
Poppler is a PDF rendering library based on the xpdf-3.0 code base.
|
|
|
|
'';
|
|
|
|
|
2008-07-17 17:02:57 +02:00
|
|
|
license = "GPLv2";
|
|
|
|
};
|
2007-11-11 17:00:51 +01:00
|
|
|
}
|