mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
poppler_0_18: remove, only used by libreoffice
I need to test libreoffice still builds, so I push this to x-updates. (I hate having to do such things to try a couple of jobs.)
This commit is contained in:
parent
39cf7bd19a
commit
8db9fe47fe
@ -1,53 +0,0 @@
|
||||
{ fetchurl, stdenv, cairo, freetype, fontconfig, zlib
|
||||
, libjpeg, curl, libpthreadstubs, xorg, openjpeg
|
||||
, libxml2, pkgconfig, cmake, lcms, libiconvOrEmpty
|
||||
, glibSupport ? false, glib, gtk3Support ? false, gtk3 # gtk2 no longer accepted
|
||||
, qt4Support ? false, qt4 ? null
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "poppler-0.18.4";
|
||||
|
||||
src = fetchurl {
|
||||
url = "${meta.homepage}${name}.tar.gz";
|
||||
sha256 = "0bnl05al7mjndp2h0355946j59nfw76f5v0x57d47q68rm412hik";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with xorg;
|
||||
[ zlib cairo freetype fontconfig libjpeg lcms curl
|
||||
libpthreadstubs libxml2 stdenv.gcc.libc
|
||||
libXau libXdmcp libxcb libXrender libXext
|
||||
openjpeg
|
||||
]
|
||||
++ stdenv.lib.optional glibSupport glib
|
||||
++ stdenv.lib.optional gtk3Support gtk3
|
||||
++ stdenv.lib.optional qt4Support qt4;
|
||||
|
||||
nativeBuildInputs = [ pkgconfig cmake ] ++ libiconvOrEmpty;
|
||||
|
||||
cmakeFlags = "-DENABLE_XPDF_HEADERS=ON -DENABLE_LIBCURL=ON -DENABLE_ZLIB=ON";
|
||||
|
||||
patches = [ ./datadir_env.patch ];
|
||||
|
||||
# XXX: The Poppler/Qt4 test suite refers to non-existent PDF files
|
||||
# such as `../../../test/unittestcases/UseNone.pdf'.
|
||||
#doCheck = !qt4Support;
|
||||
checkTarget = "test";
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = {
|
||||
homepage = http://poppler.freedesktop.org/;
|
||||
description = "Poppler, a PDF rendering library";
|
||||
|
||||
longDescription = ''
|
||||
Poppler is a PDF rendering library based on the xpdf-3.0 code base.
|
||||
'';
|
||||
|
||||
platforms = if qt4Support
|
||||
then qt4.meta.platforms
|
||||
else stdenv.lib.platforms.all;
|
||||
|
||||
license = "GPLv2";
|
||||
};
|
||||
}
|
@ -5437,13 +5437,6 @@ let
|
||||
poppler = callPackage ../development/libraries/poppler { lcms = lcms2; };
|
||||
popplerQt4 = poppler.poppler_qt4;
|
||||
|
||||
poppler_0_18 = callPackage ../development/libraries/poppler/0.18.nix {
|
||||
lcms = lcms2;
|
||||
glibSupport = true;
|
||||
gtk3Support = false;
|
||||
qt4Support = false;
|
||||
};
|
||||
|
||||
popt = callPackage ../development/libraries/popt { };
|
||||
|
||||
portaudio = callPackage ../development/libraries/portaudio {
|
||||
@ -8390,7 +8383,6 @@ let
|
||||
freefont_ttf xorg.fontmiscmisc xorg.fontbhttf
|
||||
];
|
||||
};
|
||||
poppler = poppler_0_18;
|
||||
clucene_core = clucene_core_2;
|
||||
lcms = lcms2;
|
||||
mdds = mdds_0_7_1;
|
||||
|
Loading…
Reference in New Issue
Block a user