qpdfview: port to qt5

This commit is contained in:
Jan Tojnar 2018-03-28 12:48:31 +02:00
parent 6c064e6b1f
commit 62eb285a62
No known key found for this signature in database
GPG Key ID: 7FAB2A15F7A607A4
2 changed files with 15 additions and 11 deletions

View File

@ -1,4 +1,4 @@
{stdenv, fetchurl, qt4, pkgconfig, poppler_qt4, djvulibre, libspectre, cups
{stdenv, fetchurl, qmake, qtbase, qtsvg, pkgconfig, poppler_qt5, djvulibre, libspectre, cups
, file, ghostscript
}:
let
@ -10,9 +10,9 @@ let
url="https://launchpad.net/qpdfview/trunk/${version}/+download/qpdfview-${version}.tar.gz";
sha256 = "0zysjhr58nnmx7ba01q3zvgidkgcqxjdj4ld3gx5fc7wzvl1dm7s";
};
nativeBuildInputs = [ pkgconfig ];
nativeBuildInputs = [ qmake pkgconfig ];
buildInputs = [
qt4 poppler_qt4 djvulibre libspectre cups file ghostscript
qtbase qtsvg poppler_qt5 djvulibre libspectre cups file ghostscript
];
in
stdenv.mkDerivation {
@ -21,13 +21,17 @@ stdenv.mkDerivation {
src = fetchurl {
inherit (s) url sha256;
};
configurePhase = ''
qmake *.pro
for i in *.pro; do
qmake "$i" -o "Makefile.$(basename "$i" .pro)"
done
sed -e "s@/usr/@$out/@g" -i Makefile*
'';
qmakeFlags = [
"*.pro"
"TARGET_INSTALL_PATH=${placeholder "out"}/bin"
"PLUGIN_INSTALL_PATH=${placeholder "out"}/lib/qpdfview"
"DATA_INSTALL_PATH=${placeholder "out"}/share/qpdfview"
"MANUAL_INSTALL_PATH=${placeholder "out"}/share/man/man1"
"ICON_INSTALL_PATH=${placeholder "out"}/share/icons/hicolor/scalable/apps"
"LAUNCHER_INSTALL_PATH=${placeholder "out"}/share/applications"
"APPDATA_INSTALL_PATH=${placeholder "out"}/share/appdata"
];
meta = {
inherit (s) version;
description = "A tabbed document viewer";

View File

@ -18213,7 +18213,7 @@ with pkgs;
vimNox = lowPrio (vim_configurable.override { source = "vim-nox"; });
qpdfview = callPackage ../applications/misc/qpdfview {};
qpdfview = libsForQt5.callPackage ../applications/misc/qpdfview {};
qtile = callPackage ../applications/window-managers/qtile {
inherit (xorg) libxcb;