diff --git a/Makefile.am b/Makefile.am
index 75e48b4a..1d128de2 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,88 +1,89 @@
 # Makefile.am - Installer for GnuPG 4 Windows Makefile.
 # Copyright (C) 2005, 2008, 2012 g10 Code GmbH
 #
 # This file is part of GPG4Win.
 #
 # GPG4Win is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
 # the Free Software Foundation; either version 2 of the License, or
 # (at your option) any later version.
 #
 # GPG4Win is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 #
 # You should have received a copy of the GNU General Public License
 # along with this program; if not, see <http://www.gnu.org/licenses/>.
 
 ACLOCAL_AMFLAGS = -I m4
 AUTOMAKE_OPTIONS = dist-bzip2 no-dist-gzip
 DISTCHECK_CONFIGURE_FLAGS = --host=i686-w64-mingw32
 
 SUBDIRS = po packages doc src
 
 # find patches -type f | sort | sed 's/$/ \\/' | sed 's/^/             /'
 
 EXTRA_DIST = autogen.sh README.GIT ONEWS \
         doc/license-page doc/GPLv3 \
         build-aux/git-log-footer build-aux/git-log-fix \
 		patches/boost/boost-1-fixes.patch \
         patches/extra-cmake-modules/0001-Add-convert-utility-support-for-Windows-icons.patch \
         patches/extra-cmake-modules/0001-Use-BIN_INSTALL_DIR-data-for-DATAROOTDIR-on-Windows.patch \
         patches/glib-2.41.5/01-socket.patch \
         patches/glib-2.41.5/02-formatsec.patch \
         patches/kconfigwidgets/0001-Make-QDbus-optional.patch \
         patches/kconfigwidgets/0002-Crudely-remove-KF5Auth-depedency.patch \
         patches/kiconthemes/0001-Make-DBus-optional.patch \
         patches/kleopatra/0005-Hack-generated-conf-files-for-Crosscompiling.patch \
         patches/kleopatra/fix-qt5.6-build.patch \
         patches/kxmlgui/0002-Make-QDBus-dependency-optional.patch \
         patches/kxmlgui/0003-Make-KTextWidgets-optional.patch \
         patches/kxmlgui/0004-Cruedly-disable-KSendbugmail.patch \
         patches/libgpg-error-1.29/0001-doc-Fix-yat2m-build-for-cross-compilation.patch \
         patches/qtbase/config-standardpaths.patch \
         patches/qtbase/qtbase-mingw-fixes.patch \
         patches/qtbase/relative-paths.patch \
         patches/qttools/disable-most-tools.patch \
         patches/qtwinextras/support-xp.patch \
-        patches/w32pth-2.0.5/workaround-broken-libtool.patch
+        patches/w32pth-2.0.5/workaround-broken-libtool.patch \
+        patches/breze-icons/0001-Make-binary-icons-cross-compilable.patch
 
 copy-news:
 	cp NEWS doc/website/NEWS.last
 
 
 copy-release: gpg4win-$(VERSION).tar.bz2 installers/gpg4win-$(VERSION).exe \
 	      installers/gpg4win-light-$(VERSION).exe \
 	      installers/gpg4win-vanilla-$(VERSION).exe
 	@echo Copying $(VERSION) to $(RELEASEHOST) >&2
 	@set -e;\
 	if ssh "$$(echo $(RELEASEHOST)|cut -d: -f -1)" \
         test -f "$$(echo $(RELEASEHOST)/gpg4win-$(VERSION).exe|cut -d: -f2-)";\
 	then echo "This release has already been copied to the server" >&2 ;\
 	else scp gpg4win-$(VERSION).tar.bz2 \
 	         installers/gpg4win-$(VERSION).exe \
 	         installers/gpg4win-light-$(VERSION).exe \
 	         installers/gpg4win-vanilla-$(VERSION).exe \
 	         installers/gpg4win-src-$(VERSION).exe  $(RELEASEHOST)/ ;\
 	     for f in en de ; do \
 	       scp src/README.$$f.txt \
 	             $(RELEASEHOST)/README-$(VERSION).$$f.txt; \
 	     done;\
 	fi
 
 dist-hook: gen-ChangeLog
 
 gen_start_date = 2012-03-26T00:00:00
 .PHONY: gen-ChangeLog
 gen-ChangeLog:
 	set -e;                         				\
 	if test -d $(top_srcdir)/.git; then				\
 	  (cd $(top_srcdir) &&                      			\
 	    $(GITLOG_TO_CHANGELOG) --append-dot --tear-off		\
 	    --amend=build-aux/git-log-fix                		\
 	    --since=$(gen_start_date) ) > $(distdir)/cl-t;		\
           cat $(top_srcdir)/build-aux/git-log-footer >> $(distdir)/cl-t;\
 	  rm -f $(distdir)/ChangeLog;					\
 	  mv $(distdir)/cl-t $(distdir)/ChangeLog;			\
 	fi
diff --git a/patches/breeze-icons/0001-Make-binary-icons-cross-compilable.patch b/patches/breeze-icons/0001-Make-binary-icons-cross-compilable.patch
new file mode 100755
index 00000000..4ac78dc8
--- /dev/null
+++ b/patches/breeze-icons/0001-Make-binary-icons-cross-compilable.patch
@@ -0,0 +1,86 @@
+#! /bin/sh
+patch -p1 -l -f $* < $0
+exit $?
+
+From 290479782278cdf07945be059eb47580fc8502ac Mon Sep 17 00:00:00 2001
+From: Andre Heinecke <aheinecke@gnupg.org>
+Date: Mon, 4 Mar 2019 10:22:23 +0100
+Subject: [PATCH] Make binary icons cross compilable
+
+This uses KF5_HOST_TOOLING as used by other frameworks
+to find host libraries and builds qrcAlias as external
+project against it.
+---
+ CMakeLists.txt                        | 28 +++++++++++++++++++++++----
+ qrcAlias/CMakeLists.txt               |  8 ++++++++
+ qrcAlias.cpp => qrcAlias/qrcAlias.cpp |  0
+ 3 files changed, 32 insertions(+), 4 deletions(-)
+ create mode 100644 qrcAlias/CMakeLists.txt
+ rename qrcAlias.cpp => qrcAlias/qrcAlias.cpp (100%)
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 1045e6b3..920a535a 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -19,7 +19,6 @@ include(GtkUpdateIconCache)
+ # Dependencies
+ set(REQUIRED_QT_VERSION 5.10.0)
+
+-# When cross-compiling, we should compile qrcAlias natively (against a native Qt build)
+ if (CMAKE_CROSSCOMPILING)
+     set(BINARY_ICONS_RESOURCE_OPTION_DEFAULT OFF)
+ else()
+@@ -30,9 +29,30 @@ option(BINARY_ICONS_RESOURCE "Install Qt binary resource files containing breeze
+ option(SKIP_INSTALL_ICONS "Skip installing the icons files" OFF)
+
+ if(BINARY_ICONS_RESOURCE)
+-    find_package(Qt5 NO_MODULE REQUIRED Core)
+-    add_executable(qrcAlias qrcAlias.cpp)
+-    target_link_libraries(qrcAlias PUBLIC Qt5::Core)
++    if (CMAKE_CROSSCOMPILING)
++        if (NOT KF5_HOST_TOOLING)
++            message(FATAL_ERROR "Please provide a prefix with a native Qt build and pass -DKF5_HOST_TOOLING=path or disable BINARY_ICONS_RESOURCE")
++        endif()
++
++        # search native tooling prefix
++        string(FIND ${KF5_HOST_TOOLING} /lib idx)
++        string(SUBSTRING ${KF5_HOST_TOOLING} 0 ${idx} NATIVE_PREFIX)
++        message(STATUS "Building qrcAlias against ${NATIVE_PREFIX}")
++
++        include(ExternalProject)
++        ExternalProject_Add(native_qrcAlias
++                            SOURCE_DIR ${CMAKE_SOURCE_DIR}/qrcAlias
++                            CMAKE_ARGS -DCMAKE_PREFIX_PATH=${NATIVE_PREFIX}
++                                -DCMAKE_INSTALL_PREFIX=${CMAKE_CURRENT_BINARY_DIR}
++                            INSTALL_COMMAND ""
++                           )
++        add_executable(qrcAlias IMPORTED GLOBAL)
++        add_dependencies(qrcAlias native_qrcAlias)
++        set_target_properties(qrcAlias PROPERTIES IMPORTED_LOCATION
++            ${CMAKE_BINARY_DIR}/native_qrcAlias-prefix/src/native_qrcAlias-build/qrcAlias)
++    else ()
++        add_subdirectory (qrcAlias)
++    endif()
+
+ function(generate_binary_resource target outfile)
+     set(RESOURCES_WORKING_DIR ${CMAKE_CURRENT_BINARY_DIR}/res)
+diff --git a/qrcAlias/CMakeLists.txt b/qrcAlias/CMakeLists.txt
+new file mode 100644
+index 00000000..4199f2fe
+--- /dev/null
++++ b/qrcAlias/CMakeLists.txt
+@@ -0,0 +1,8 @@
++cmake_minimum_required(VERSION 3.5)
++
++# This lives in a subdirectory to make it easy to switch
++# the toolchain for cross compile.
++
++find_package(Qt5 NO_MODULE REQUIRED Core)
++add_executable(qrcAlias qrcAlias.cpp)
++target_link_libraries(qrcAlias PUBLIC Qt5::Core)
+diff --git a/qrcAlias.cpp b/qrcAlias/qrcAlias.cpp
+similarity index 100%
+rename from qrcAlias.cpp
+rename to qrcAlias/qrcAlias.cpp
+--
+2.20.1
diff --git a/src/Makefile.am b/src/Makefile.am
index 3eef90b7..b1f417cf 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -1,729 +1,730 @@
 # Makefile.am - Installer for GnuPG 4 Windows Makefile.
 # Copyright (C) 2005, 2006, 2007, 2008, 2009 g10 Code GmbH
 #
 # This file is part of Gpg4win.
 #
 # Gpg4win is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
 # the Free Software Foundation; either version 2 of the License, or
 # (at your option) any later version.
 #
 # Gpg4win is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 # GNU General Public License for more details.
 #
 # You should have received a copy of the GNU General Public License
 # along with this program; if not, see <http://www.gnu.org/licenses/>.
 
 
 EXTRA_DIST = pkg-config gpg4win.nsi gpg4win-src.nsi \
 	config.site config.nsi.in \
         libiconv.def libintl.def loreley.mid \
         gpg4win-splash.wav exdll.h g4wihelp.c desktopshellrun.cpp \
         g4wihelp.nsi slideshow.cpp \
         inst-sections.nsi installer.nsi installer-finish.nsi  \
 	zlib.pc sha1sum.c mkportable.c     \
 	mkportable-vanilla.h mkportable-full.h \
         potomo Memento.nsh \
         inst-gpg4win.nsi	   uninst-gpg4win.nsi	      \
         inst-atk.nsi               uninst-atk.nsi	      \
         inst-expat.nsi		   uninst-expat.nsi	      \
         inst-freetype.nsi	   uninst-freetype.nsi	      \
         inst-fontconfig.nsi	   uninst-fontconfig.nsi      \
         inst-cairo.nsi		   uninst-cairo.nsi	      \
         inst-gettext.nsi	   uninst-gettext.nsi	      \
         inst-libffi.nsi		   uninst-libffi.nsi	      \
         inst-glib.nsi		   uninst-glib.nsi	      \
         inst-gnupg-w32.nsi	   uninst-gnupg-w32.nsi	      \
         inst-gpa.nsi		   uninst-gpa.nsi	      \
         inst-gpgme.nsi		   uninst-gpgme.nsi	      \
         inst-paperkey.nsi	   uninst-paperkey.nsi	      \
         inst-gpgol.nsi		   uninst-gpgol.nsi	      \
         inst-gpgex.nsi		   uninst-gpgex.nsi	      \
         inst-gdk-pixbuf.nsi        uninst-gdk-pixbuf.nsi      \
         inst-gtk+.nsi		   uninst-gtk+.nsi	      \
         inst-libassuan.nsi	   uninst-libassuan.nsi	      \
         inst-libgpg-error.nsi	   uninst-libgpg-error.nsi    \
         inst-libiconv.nsi	   uninst-libiconv.nsi	      \
         inst-libpng.nsi		   uninst-libpng.nsi	      \
         inst-compendium.nsi	   uninst-compendium.nsi   \
         inst-man_advanced_de.nsi   uninst-man_advanced_de.nsi \
         inst-man_advanced_en.nsi   uninst-man_advanced_en.nsi \
         inst-man_novice_de.nsi	   uninst-man_novice_de.nsi   \
         inst-man_novice_en.nsi	   uninst-man_novice_en.nsi   \
         inst-pango.nsi		   uninst-pango.nsi	      \
         inst-pinentry.nsi	   uninst-pinentry.nsi	      \
         inst-pkgconfig.nsi	   uninst-pkgconfig.nsi	      \
         inst-w32pth.nsi		   uninst-w32pth.nsi	      \
         inst-zlib.nsi        	   uninst-zlib.nsi            \
         inst-kconfig.nsi        uninst-kconfig.nsi              \
         inst-kleopatra.nsi  	   uninst-kleopatra.nsi       \
 	inst-bzip2.nsi             uninst-bzip2.nsi           \
         uninst-claws-mail.nsi uninst-claws-mail-cmds.nsi \
         inst-qtbase.nsi uninst-qtbase.nsi \
         inst-ki18n.nsi uninst-ki18n.nsi \
         inst-kwidgetsaddons.nsi uninst-kwidgetsaddons.nsi \
         inst-kcompletion.nsi uninst-kcompletion.nsi \
         inst-kwindowsystem.nsi uninst-kwindowsystem.nsi \
         inst-libkleo.nsi uninst-libkleo.nsi \
         inst-kcoreaddons.nsi uninst-kcoreaddons.nsi \
         inst-kcodecs.nsi uninst-kcodecs.nsi \
         inst-kconfigwidgets.nsi uninst-kconfigwidgets.nsi \
         inst-kxmlgui.nsi uninst-kxmlgui.nsi \
         inst-kiconthemes.nsi uninst-kiconthemes.nsi \
         inst-breeze-icons.nsi uninst-breeze-icons.nsi \
         inst-karchive.nsi uninst-karchive.nsi \
         inst-kcrash.nsi uninst-kcrash.nsi \
         inst-kitemviews.nsi uninst-kitemviews.nsi \
         inst-kitemmodels.nsi uninst-kitemmodels.nsi \
         inst-kguiaddons.nsi uninst-kguiaddons.nsi \
         inst-kmime.nsi uninst-kmime.nsi \
         inst-kde-l10n.nsi uninst-kde-l10n.nsi \
         inst-qtsvg.nsi uninst-qtsvg.nsi \
         inst-qttools.nsi uninst-qttools.nsi \
         inst-qttranslations.nsi uninst-qttranslations.nsi \
         inst-qtwinextras.nsi uninst-qtwinextras.nsi \
         inst-boost.nsi uninst-boost.nsi \
         inst-extra-cmake-modules.nsi uninst-extra-cmake-modules.nsi \
         inst-gpg4win-tools.nsi uninst-gpg4win-tools.nsi \
         inst-gpgme-browser.nsi \
         inst-final.nsi index.theme \
         slideshow/slides.dat \
         slideshow/slide1-gpgol.png \
         slideshow/slide2-gpgex.png \
         slideshow/slide3-kleopatra.png \
         slideshow/slide4-summary.png \
         file-ext.ico
 
 gpg4win_readme_ll = en de ar es fr ru pt
 
 README_files = $(addsuffix .txt,$(addprefix README.,$(gpg4win_readme_ll)))
 
 gpg4win_howto_smime_ll = en de
 
 HOWTO_files = $(addsuffix .txt, \
                 $(addprefix HOWTO-SMIME.,$(gpg4win_howto_smime_ll)))
 
 foosum_exe = sha1sum.exe md5sum.exe sha256sum.exe mkportable.exe
 
 # Need to clean the dll because we bypassed automake.
 CLEANFILES = g4wihelp.dll desktopshellrun.o versioninfo.txt $(README_files) \
 			 $(HOWTO_files) NEWS.tmp COMPONENTS-list.tmp \
 			 license.blurb cdversioninfo.tmp slideshow.o \
 			 $(foosum_exe)
 
 # Supported source packages.
 gpg4win_spkgs = glib libffi gdk-pixbuf gtk+ \
                 libgpg-error gpgme gpgol gpgex libpng \
 		gpa opencdk \
 		pinentry libassuan \
 		w32pth paperkey regex libiconv gettext
 
 gpg4win_qtpkgs = qtbase qttools qtwinextras qtsvg qttranslations
 
 # Source packages following the KDE pattern
 gpg4win_kdepkgs = kconfig kwidgetsaddons ki18n extra-cmake-modules \
                   kcompletion kwindowsystem kcoreaddons libkleo kcodecs \
                   kmime kconfigwidgets kxmlgui kguiaddons kitemviews \
                   kiconthemes kleopatra breeze-icons kitemmodels karchive \
                   gpg4win-tools kcrash
 
 # Supported source packages to build in an additional architecture
 gpg4win_expkgs = libgpg-error libassuan libiconv gettext w32pth gpgex gpgol \
                  gpgme
 
 # Extra options to configure for individual packages.
 # We can use $(idir) here for the installation prefix.
 
 gpg4win_pkg_libiconv_ex_configure = \
 	--enable-shared=no --enable-static=yes
 
 gpg4win_pkg_gettext_configure = \
   --with-lib-prefix=$(idir) --with-libiconv-prefix=$(idir) \
   CPPFLAGS=-I$(idir)/include CFLAGS=-O2 LDFLAGS=-L$(idir)/lib
 
 gpg4win_pkg_gettext_ex_configure = \
   --with-lib-prefix=$(ex_idir) --with-libiconv-prefix=$(ex_idir) \
   CPPFLAGS=-I$(ex_idir)/include CFLAGS=-O2 LDFLAGS=-L$(ex_idir)/lib
 
 # We only need gettext-runtime and there is sadly no top level
 # configure option for this
 gpg4win_pkg_gettext_make_dir = gettext-runtime
 gpg4win_pkg_gettext_make_dir_inst = gettext-runtime
 gpg4win_pkg_gettext_ex_make_dir = gettext-runtime
 gpg4win_pkg_gettext_ex_make_dir_inst = gettext-runtime
 
 gpg4win_pkg_glib_configure = \
   --disable-modular-tests \
   --with-lib-prefix=$(idir) --with-libiconv-prefix=$(idir) \
   CPPFLAGS=-I$(idir)/include LDFLAGS=-L$(idir)/lib CCC=$(host)-g++
 gpg4win_pkg_glib_extracflags = -march=i486
 
 gpg4win_pkg_gdk_pixbuf_configure = \
   --with-lib-prefix=$(idir) --with-libiconv-prefix=$(idir) \
   --with-included-loaders=yes \
   CPPFLAGS=-I$(idir)/include LDFLAGS=-L$(idir)/lib
 
 gpg4win_pkg_gtk__configure = \
   CPPFLAGS=-I$(idir)/include LDFLAGS=-L$(idir)/lib --disable-cups
 
 # The GnuPG package provides man pages which we have to convert.
 # We also create the MO files here.
 define gpg4win_pkg_gnupg2_post_install
 (for i in gpg2 gpgv2 gpgsm gpg-agent scdaemon gpg-connect-agent gpgconf ; \
   do man -Tlatin1 -l $$$${pkgidir}/share/man/man1/$$$${i}.1 | \
     sed `printf "s/_\b//g;s/\b.//g"` | \
     sed -e 's/$$$$/\r/' > $$$${pkgidir}/share/man/man1/$$$${i}.man ; \
  done ; \
  for i in `$(tsdir)/src/potomo --get-linguas $$$${pkgsdir}/po` ; do \
      $(MKDIR_P) $$$${pkgidir}/share/locale/$$$${i}/LC_MESSAGES || true; \
      rm $$$${pkgidir}/share/locale/$$$${i}/LC_MESSAGES/gnupg2.mo 2>/dev/null \
        || true; \
      $(tsdir)/src/potomo $$$${pkgsdir}/po/$$$${i}.po \
               $$$${pkgidir}/share/locale/$$$${i}/LC_MESSAGES/gnupg2.mo; \
  done)
 endef
 
 # Paperkey comes with a man pages which we have to convert.
 define gpg4win_pkg_paperkey_post_install
 (for i in paperkey ; \
   do man -Tlatin1 -l $$$${pkgidir}/share/man/man1/$$$${i}.1 | \
     sed `printf "s/_\b//g;s/\b.//g"` | \
     sed -e 's/$$$$/\r/' > $$$${pkgidir}/share/man/man1/$$$${i}.man ; \
  done)
 endef
 
 
 
 # Build the reference manual.
 define gpg4win_pkg_gpgol_post_install
 ( cd $$$${pkgbdir}/doc; make pdf )
 endef
 
 # We would like to use --with-libiconv-prefix and
 # --with-libintl-prefix, but these don't work with the cheesy
 # non-"libfoo.la" versions of iconv and gettext that we are using.
 #gpg4win_pkg_libgpg_error_configure = \
 #  --with-libiconv-prefix=$(idir) --with-libintl-prefix=$(idir)
 gpg4win_pkg_libgpg_error_configure = --silent \
   CPPFLAGS=-I$(idir)/include LDFLAGS=-L$(idir)/lib \
   --enable-static
 
 gpg4win_pkg_libgpg_error_ex_configure = --silent \
   --enable-static
 
 # We convert the PO files to UTF-8.  FIXME: This should be done in
 # libgpg-error proper.
 define gpg4win_pkg_libgpg_error_post_install
 (for i in `$(tsdir)/src/potomo --get-linguas $$$${pkgsdir}/po` ; do \
    rm $$$${pkgidir}/share/locale/$$$${i}/LC_MESSAGES/libgpg-error.mo \
        2>/dev/null|| true; \
    $(tsdir)/src/potomo $$$${pkgsdir}/po/$$$${i}.po \
              $$$${pkgidir}/share/locale/$$$${i}/LC_MESSAGES/libgpg-error.mo; \
  done)
 endef
 
 gpg4win_pkg_libassuan_configure =  --silent --enable-static
 
 gpg4win_pkg_libassuan_ex_configure =  --silent --enable-static
 
 gpg4win_pkg_libpng_configure = HAVE_SOLARIS_LD_FALSE=yes CPPFLAGS=\"-I$(idir)/include -DPNG_BUILD_DLL\" LDFLAGS=\"-L$(idir)/lib\" LIBPNG_DEFINES=\"-DPNG_BUILD_DLL\"
 
 # We would like to use --with-libiconv-prefix and
 # --with-libintl-prefix, but these don't work with the cheesy
 # non-"libfoo.la" versions of iconv and gettext that we are using.
 if BUILD_FULL_INSTALLER
 pinentry_enable_disable= --enable-pinentry-qt
 endif
 gpg4win_pkg_pinentry_configure = \
   $(pinentry_enable_disable) \
   --disable-pinentry-fltk \
   --enable-pinentry-gtk2 \
   CPPFLAGS=-I$(idir)/include LDFLAGS=-L$(idir)/lib
 #  --with-libiconv-prefix=$(idir) --with-libintl-prefix=$(idir)
 
 # The LDFLAGS is needed for -lintl for glib.  The QT4 variables work
 # around the lack of cross compilation support in qt-dev.
 gpg4win_pkg_gpgme_configure = --silent \
   --with-gpg-error-prefix=$(idir) --enable-static \
   `test -n "@HAVE_PKG_GLIB@" && echo "--enable-w32-glib"` \
   CFLAGS=-I$(idir)/include/glib-2.0/ \
   LDFLAGS=-L$(idir)/lib \
   --enable-languages=qt,cpp \
   --disable-gpg-test \
   --disable-gpgsm-test
 
 gpg4win_pkg_gpgme_ex_configure = --silent \
   --with-gpg-error-prefix=$(ex_idir) --enable-static \
   --with-libassuan-prefix=$(ex_idir) \
   LDFLAGS=-L$(ex_idir)/lib \
   --enable-languages=cpp \
   --disable-gpg-test \
   --disable-gpgsm-test
 
 gpg4win_pkg_gpa_configure = --silent \
   --with-libiconv-prefix=$(idir) --with-libintl-prefix=$(idir) \
   --with-gpgme-prefix=$(idir) --with-zlib=$(idir) \
   --with-libassuan-prefix=$(idir) --with-gpg-error-prefix=$(idir)
 
 gpg4win_pkg_gpgol_configure = --silent \
   --with-gpgme-prefix=$(idir) --with-gpg-error-prefix=$(idir) \
   --with-libassuan-prefix=$(idir) --enable-mime-send
 
 gpg4win_pkg_gpgol_ex_configure = --silent \
   --with-gpgme-prefix=$(ex_idir) --with-gpg-error-prefix=$(ex_idir) \
   --with-libassuan-prefix=$(ex_idir) --enable-mime-send
 
 gpg4win_pkg_gpgex_configure = --silent \
   --with-gpg-error-prefix=$(idir) \
   --with-libassuan-prefix=$(idir)
 
 gpg4win_pkg_gpgex_ex_configure = --silent \
   --with-gpg-error-prefix=$(ex_idir) \
   --with-libassuan-prefix=$(ex_idir)
 
 gpg4win_pkg_paperkey_configure = --silent
 
 gpg4win_pkg_ki18n_configure = -DBUILD_WITH_QML=OFF
 gpg4win_pkg_kconfig_configure = -DKCONFIG_USE_DBUS=OFF
 
 gpg4win_pkg_qtbase_configure = ../$$$${pkg_version}/configure -opensource \
             -confirm-license \
             -xplatform win32-g++ \
             -device-option CROSS_COMPILE=$(host)- \
             -device-option PKG_CONFIG='$(host)-pkg-config' \
             -no-use-gold-linker \
             -release \
             -shared \
             -prefix $$$${pkgidir} \
             -I '$(idir)/include' \
             -L '$(idir)/lib' \
             -no-icu \
             -opengl desktop \
             -no-glib \
             -accessibility \
             -nomake examples \
             -nomake tests \
             -no-sql-mysql \
             -no-sql-sqlite \
             -no-sql-odbc \
             -no-sql-psql \
             -no-sql-tds \
             -qt-zlib \
             -qt-libpng \
             -qt-libjpeg \
             -qt-freetype \
             -qt-pcre \
             -no-openssl \
             -no-dbus \
             -v
 
 # qtbase
 # invoke qmake with removed debug options as a workaround for
 # https://bugreports.qt-project.org/browse/QTBUG-30898
 gpg4win_pkg_qtbase_make_args = \
     QMAKE='$$$${pkgbdir}/bin/qmake'
 
 # Qmake still writes debug names in pkgconfig files.
 define gpg4win_pkg_qtbase_post_install
 	(cd $$$${pkgbdir}; \
 	 make install;)
 endef
 
 
 gpg4win_pkg_qttools_configure = \
 	"$(idir)/bin/qmake" ../$$$${pkg_version}
 
 define gpg4win_pkg_qttools_post_install
 	 (cd $$$${pkgbdir}; \
 	  mkdir -p $$$${pkgidir}; \
 	  cp -r bin lib include $$$${pkgidir})
 endef
 
 # Qmake does not support setting the installation path.
 # really https://bugreports.qt.io/browse/QTBUG-12341
 gpg4win_pkg_qtwinextras_configure = \
 	"$(idir)/bin/qmake" ../$$$${pkg_version}
 
 define gpg4win_pkg_qtwinextras_post_install
  (cd $$$${pkgbdir}; \
   mkdir -p $$$${pkgidir}/bin; \
   cp -r lib include $$$${pkgidir}; \
   mv $$$${pkgidir}/lib/*.dll $$$${pkgidir}/bin;)
 endef
 
 gpg4win_pkg_qtsvg_configure = \
 	"$(idir)/bin/qmake" ../$$$${pkg_version}
 
 # XXX Adding the qtconf after qtsvg is a weird hack
 # because somhow (yay qmake) zlib is not linked if
 # the qt conf exists before that. The qt conf is
 # needed for qttranslations to find the correct path
 # of the translation tools.
 define gpg4win_pkg_qtsvg_post_install
  (cd $$$${pkgbdir}; \
   mkdir -p $$$${pkgidir}; \
   cp -r lib include plugins $$$${pkgidir}; \
   mkdir -p $$$${pkgidir}/bin; \
   mv $$$${pkgidir}/lib/*.dll $$$${pkgidir}/bin; \
   echo "[Paths]" > $$$${pkgidir}/bin/qt.conf; \
   echo "Prefix = .." >> $$$${pkgidir}/bin/qt.conf)
 endef
 
 gpg4win_pkg_qttranslations_configure = \
 	"$(idir)/bin/qmake" ../$$$${pkg_version}
 
 define gpg4win_pkg_qttranslations_post_install
  ( rm -f $$$${pkgidir}/qttranslations; \
    mkdir -p $$$${pkgidir}; \
    cp -r $$$${pkgbdir}/translations $$$${pkgidir}/qttranslations;)
 endef
 
 gpg4win_pkg_kleopatra_configure = \
     -DFORCE_DISABLE_KCMUTILS=ON \
     -DDISABLE_KWATCHGNUPG=ON \
     -DKLEOPATRA_VERSION_SUFFIX=-gpg4win-$(VERSION)
 
 gpg4win_pkg_kxmlgui_configure = \
     -DFORCE_DISABLE_KGLOBALACCEL=ON \
     -DFORCE_DISABLE_DBUS=ON \
     -DXMLGUI_COMPILER_VERSION="i686-w64-mingw32-gcc" \
     -DXMLGUI_DISTRIBUTION_TEXT="Gpg4win"
 
 gpg4win_pkg_breeze_icons_configure = \
-    -DBINARY_ICONS_RESOURCE=OFF
+    -DBINARY_ICONS_RESOURCE=ON \
+    -DKF5_HOST_TOOLING="/home/aheinecke/dev/main"
 
 # Supported make-only source packages.
 gpg4win_mpkgs = bzip2 zlib
 
 # Extra options for the make invocations for individual packages.
 # make_flags is used for building, make_args_inst is used for installing.
 gpg4win_pkg_bzip2_make_args = \
   CC=$(CC) AR=$(AR) RANLIB=$(RANLIB)
 
 gpg4win_pkg_bzip2_make_args_inst = \
   PREFIX=$$$${pkgidir} CC=$(CC) AR=$(AR) RANLIB=$(RANLIB)
 
 gpg4win_pkg_zlib_make_args = \
   -fwin32/Makefile.gcc PREFIX=$(host)- IMPLIB=libz.dll.a
 
 gpg4win_pkg_zlib_make_args_inst = -fwin32/Makefile.gcc install \
 	BINARY_PATH=$$$${pkgidir}/bin INCLUDE_PATH=$$$${pkgidir}/include \
 	LIBRARY_PATH=$$$${pkgidir}/lib SHARED_MODE=1 IMPLIB=libz.dll.a
 
 # Supported binary packages.
 gpg4win_bpkgs = pkgconfig pango expat freetype fontconfig \
                 cairo atk gnupg-w32 kde-l10n
 
 # libiconv needs some special magic to generate a usable import
 # library.
 # define gpg4win_pkg_libiconv_post_install
 # (cp $(srcdir)/libiconv.def $$$${pkgidir}/lib;		\
 # cd $$$${pkgidir}/lib;					\
 # $(DLLTOOL) --output-lib libiconv.dll.a --def libiconv.def)
 # endef
 
 # libiconv needs some special magic to generate a usable import
 # library.  Note that we include some internal symbols that are not
 # actually part of the DLL.  They are needed by the AM_GNU_GETTEXT
 # configure test, but not used otherwise.
 # define gpg4win_pkg_gettext_post_install
 # (cp $(srcdir)/libintl.def $$$${pkgidir}/lib;		\
 # cd $$$${pkgidir}/lib;					\
 # $(DLLTOOL) --output-lib libintl.dll.a --def libintl.def)
 # endef
 
 
 # Zlib needs some special magic to generate a libtool file.
 # We also install the pc file here.
 define gpg4win_pkg_zlib_post_install
 (mkdir $$$${pkgidir}/lib/pkgconfig || true;             \
 cp $(abs_srcdir)/zlib.pc $$$${pkgidir}/lib/pkgconfig/;  \
 cd $$$${pkgidir};					\
 echo "# Generated by libtool" > lib/libz.la		\
 echo "dlname='../bin/zlib1.dll'" >> lib/libz.la;	\
 echo "library_names='libz.dll.a'" >> lib/libz.la;	\
 echo "old_library='libz.a'" >> lib/libz.la;		\
 echo "dependency_libs=''" >> lib/libz.la;		\
 echo "current=1" >> lib/libz.la;			\
 echo "age=2" >> lib/libz.la;				\
 echo "revision=5" >> lib/libz.la;			\
 echo "installed=yes" >> lib/libz.la;			\
 echo "shouldnotlink=no" >> lib/libz.la;			\
 echo "dlopen=''" >> lib/libz.la;			\
 echo "dlpreopen=''" >> lib/libz.la;			\
 echo "libdir=\"$$$${pkgidir}/lib\"" >> lib/libz.la)
 endef
 
 # We need to fix the prefix in the various packages using pkgconfig,
 # or we can't substitute it properly in our pkg-config wrapper.
 # glib also installs an empty charset.alias for mingw which creates
 # a stow conflict with the one from iconv.
 define gpg4win_pkg_glib_post_install
  (cd $$$${pkgidir};							\
  perl -pi -e 's/^prefix=.*$$$$/prefix=\/usr/' `find . -name \*.pc`; \
  rm $$$${pkgidir}/lib/charset.alias)
 endef
 
 define gpg4win_pkg_libffi_post_install
  (cd $$$${pkgidir};							\
  perl -pi -e 's/^prefix=.*$$$$/prefix=\/usr/' `find . -name \*.pc`)
 endef
 
 define gpg4win_pkg_gdk_pixbuf_post_install
  (cd $$$${pkgidir};							\
  perl -pi -e 's/^prefix=.*$$$$/prefix=\/usr/' `find . -name \*.pc`)
 endef
 
 define gpg4win_pkg_atk_post_install
  (cd $$$${pkgidir_dev};							\
  perl -pi -e 's/^prefix=.*$$$$/prefix=\/usr/' `find . -name \*.pc`)
 endef
 
 define gpg4win_pkg_freetype_post_install
  (cd $$$${pkgidir_dev};							\
  perl -pi -e 's/^prefix=.*$$$$/prefix=\/usr/' `find . -name \*.pc`)
 endef
 
 define gpg4win_pkg_fontconfig_post_install
  (cd $$$${pkgidir_dev};							\
  perl -pi -e 's/^prefix=.*$$$$/prefix=\/usr/' `find . -name \*.pc`)
 endef
 
 define gpg4win_pkg_cairo_post_install
  (cd $$$${pkgidir_dev};							\
  perl -pi -e 's/^prefix=.*$$$$/prefix=\/usr/' `find . -name \*.pc`)
 endef
 
 define gpg4win_pkg_pango_post_install
  (cd $$$${pkgidir_dev};							\
  perl -pi -e 's/^prefix=.*$$$$/prefix=\/usr/' `find . -name \*.pc`)
 endef
 
 define gpg4win_pkg_libpng_post_install
  (cd $$$${pkgidir};							\
  perl -pi -e 's/^prefix=.*$$$$/prefix=\/usr/' `find . -name \*.pc`)
 endef
 
 
 # We don't use khelpcenter in kleopatra so remove the help links and
 # point to the correct common folder
 # TODO Needs to be fixed with current doc
 #define gpg4win_pkg_kleopatra_post_install
 # (for i in de en ; do \
 #    (cd $$$${pkgidir}/share/doc/HTML/$$$${i}; \
 #     perl -pi -e 's/help:\///g' `find . -name \*.html`; \
 #     perl -pi -e 's@common/@../../common/@g' `find . -name \*.html`); \
 # done)
 #endef
 
 
 #define gpg4win_pkg_libiconv_post_install
 #(cp $(srcdir)/libiconv.def $$$${pkgidir}/lib;		\
 #cd $$$${pkgidir}/lib;					\
 #$(DLLTOOL) --output-lib libiconv.dll.a --def libiconv.def)
 #endef
 
 # Supported internal packages.  Internal packages do not require any
 # special support.  Thus, this variable is actually unused, and no
 # rules are added in gpg4win.mk.
 gpg4win_ipkgs = man_novice_de man_advanced_de man_novice_en man_advanced_en \
 		compendium
 
 
 # Now do the bunch of the work.  This is a bunch of dirty magic to
 # integrate our special makefile into automake, while not actually
 # including it (make should include it).  This is in turn necessary
 # because automake can't deal with the elegant magic in the actual
 # Makefile.
 
 define INCLUDE_BY_MAKE
 include $(1)
 endef
 
 $(eval $(call INCLUDE_BY_MAKE,gpg4win.mk))
 
 clean-local: clean-gpg4win
 
 common_nsi = inst-sections.nsi installer.nsi installer-finish.nsi	\
   $(addsuffix .nsi,$(addprefix inst-,$(gpg4win_build_list)))		\
   $(addsuffix .nsi,$(addprefix uninst-,$(gpg4win_build_list)))
 
 
 # Prepare the versioninfo file.  The pipeline extracts the last
 # occurrence of a package with the same name, sorts the entries and
 # writes the file with DOS line endings.  This helps to avoid
 # duplicate entries in case one package has been rebuild (which is
 # common when developing a new version).
 versioninfo.txt:
 	$(SHA1SUM) $(pkg_files) </dev/null > versioninfo.tmp
 	set -e; \
 	( while read a b; do echo "$$a $$(basename $$b)"; \
             done < versioninfo.tmp \
           | sort -k2 -sf | tac | uniq -f1 ; \
           echo '=========== SHA-1 checksum ============= == package ==' \
          ) | tac | awk '{printf "%s\r\n", $$0}' > versioninfo.txt
 	-rm versioninfo.tmp
 
 NEWS.tmp : $(top_srcdir)/NEWS
 	 awk '/^#/ {next} /^\(de\)/ {skip=1;next} /^[^[:space:]]/ {skip=0} \
              !skip { sub(/^\(en\)/,"   *"); print }' \
              <$(top_srcdir)/NEWS >NEWS.tmp
 
 NEWS.de : $(top_srcdir)/NEWS
 	 awk '/^#/ {next} /^\(en\)/ {skip=1;next} /^[^[:space:]]/ {skip=0} \
              !skip { sub(/^\(de\)/,"-"); print }' \
              <$(top_srcdir)/NEWS >NEWS.de; \
      sed -i 's/^     /  /' NEWS.de
 
 NEWS.en : $(top_srcdir)/NEWS
 	 awk '/^#/ {next} /^\(de\)/ {skip=1;next} /^[^[:space:]]/ {skip=0} \
              !skip { sub(/^\(en\)/,"-"); print }'  \
              <$(top_srcdir)/NEWS >NEWS.en; \
      sed -i 's/^     /  /' NEWS.en
 
 COMPONENTS-list.tmp : $(top_srcdir)/NEWS
 	awk '/^~~~~~~~~~~~/ { ok++; next} ok==1 {print "    "$$0}' \
             < $(top_srcdir)/NEWS > COMPONENTS-list.tmp
 
 # For some nut-crazy reason someone thought it would be a great idea
 # if makensis changed to the directory of the source file at startup.
 # So we have to pull a couple of strings to correct this.
 installers/gpg4win-$(VERSION).exe: gpg4win.nsi $(common_nsi) stamps/stamp-final \
                         g4wihelp.dll \
 		        $(foosum_exe) \
 			$(README_files) $(HOWTO_files) \
 	                license.blurb versioninfo.txt
 	$(MAKENSIS) -V3 -DBUILD_DIR=`pwd` -DTOP_SRCDIR=$(top_srcdir) \
            -DSRCDIR=$(srcdir) $(EXTRA_MAKENSIS_FLAGS) $(srcdir)/gpg4win.nsi && \
 		   mv gpg4win-$(VERSION).exe installers/gpg4win-$(VERSION).exe
 
 installers/gpg4win-light-$(VERSION).exe: gpg4win.nsi $(common_nsi) stamps/stamp-final \
                         g4wihelp.dll \
 		        $(foosum_exe) \
 			$(README_files) $(HOWTO_files) \
 			license.blurb versioninfo.txt
 	$(MAKENSIS) -V3 -DBUILD_DIR=`pwd` -DTOP_SRCDIR=$(top_srcdir) \
            -DSRCDIR=$(srcdir) $(EXTRA_MAKENSIS_FLAGS) \
            -DGPG4WIN_LIGHT=1 $(srcdir)/gpg4win.nsi && \
 		   mv gpg4win-light-$(VERSION).exe installers/gpg4win-light-$(VERSION).exe
 
 
 installers/gpg4win-vanilla-$(VERSION).exe: gpg4win.nsi $(common_nsi) stamps/stamp-final \
                         g4wihelp.dll  \
 		        $(foosum_exe) \
 			$(README_files) $(HOWTO_files) \
 		        license.blurb versioninfo.txt
 	$(MAKENSIS) -V3 -DBUILD_DIR=`pwd` -DTOP_SRCDIR=$(top_srcdir) \
            -DSRCDIR=$(srcdir) $(EXTRA_MAKENSIS_FLAGS) \
            -DGPG4WIN_VANILLA=1 $(srcdir)/gpg4win.nsi && \
 		   mv gpg4win-vanilla-$(VERSION).exe installers/gpg4win-vanilla-$(VERSION).exe
 
 gpg4win-$(VERSION).wix: gpg4win.nsi $(common_nsi) stamps/stamp-final \
 		        $(foosum_exe) \
 			$(README_files) $(HOWTO_files) \
 			versioninfo.txt
 	perl make-msi.pl --guids $(srcdir)/make-msi.guids \
 		--manifest gpg4win-$(VERSION).files \
 		-DBUILD_DIR=. -DTOP_SRCDIR=$(top_srcdir) \
 		-DSRCDIR=$(srcdir) $(srcdir)/gpg4win.nsi > $@
 
 gpg4win-light-$(VERSION).wix: gpg4win.nsi $(common_nsi) stamps/stamp-final \
 		        $(foosum_exe) \
 			$(README_files) $(HOWTO_files) \
 		        versioninfo.txt
 	perl make-msi.pl --guids $(srcdir)/make-msi.guids \
 		--manifest gpg4win-light-$(VERSION).files \
 		-DBUILD_DIR=. -DTOP_SRCDIR=$(top_srcdir) \
 		-DSRCDIR=$(srcdir) -DGPG4WIN_LIGHT=1 $(srcdir)/gpg4win.nsi > $@
 
 gpg4win-vanilla-$(VERSION).wix: gpg4win.nsi $(common_nsi) stamps/stamp-final \
 		        $(foosum_exe) \
 			$(README_files) $(HOWTO_files) \
                         versioninfo.txt
 	perl make-msi.pl --guids $(srcdir)/make-msi.guids \
 		--manifest gpg4win-vanilla-$(VERSION).files \
 		-DBUILD_DIR=. -DTOP_SRCDIR=$(top_srcdir) \
 		-DSRCDIR=$(srcdir) -DGPG4WIN_VANILLA=1 $(srcdir)/gpg4win.nsi > $@
 
 .PHONY: msi
 msi: gpg4win-$(VERSION).wix gpg4win-light-$(VERSION).wix \
      gpg4win-vanilla-$(VERSION).wix
 
 
 stamps/stamp-dist-self: versioninfo.txt
 	(set -e; cd ..; make dist-bzip2)
 	touch stamps/stamp-dist-self
 
 installers/gpg4win-src-$(VERSION).exe: gpg4win-src.nsi $(common_nsii) \
                             stamps/stamp-final \
                             stamps/stamp-dist-self \
 		            license.blurb
 	$(MAKENSIS) -V3 -DBUILD_DIR=`pwd` -DTOP_SRCDIR=$(top_srcdir) \
 	  -DSRCDIR=$(srcdir) $(EXTRA_MAKENSIS_FLAGS) $(srcdir)/gpg4win-src.nsi && \
 	mv gpg4win-src-$(VERSION).exe installers/gpg4win-src-$(VERSION).exe
 
 license.blurb: $(top_srcdir)/doc/license-page $(top_srcdir)/doc/GPLv3
 	cat $(top_srcdir)/doc/license-page $(top_srcdir)/doc/GPLv3 >$@
 
 g4wihelp.dll: slideshow.cpp desktopshellrun.cpp g4wihelp.c exdll.h
 	$(CC) -static-libgcc -I. -O2 -c -o desktopshellrun.o $(srcdir)/desktopshellrun.cpp
 	$(CC) -static-libgcc -I. -O2 -c -o slideshow.o $(srcdir)/slideshow.cpp
 	$(CC) -static-libgcc -I. -shared -O2 -o g4wihelp.dll $(srcdir)/g4wihelp.c \
 	  desktopshellrun.o slideshow.o -lwinmm -lgdi32 -luserenv -lshell32 \
 	  -lole32 -loleaut32 -lshlwapi -lmsimg32
 	$(STRIP) g4wihelp.dll
 
 sha1sum.exe: sha1sum.c
 	$(CC) -O2 -o $@ $^
 	$(STRIP) $@
 
 md5sum.exe: sha1sum.c
 	$(CC) -DBUILD_MD5SUM -O2 -o $@ $^
 	$(STRIP) $@
 
 sha256sum.exe: sha1sum.c
 	$(CC) -DBUILD_SHA256SUM -O2 -o $@ $^
 	$(STRIP) $@
 
 mkportable.exe: mkportable.c \
                 mkportable-vanilla.h mkportable-full.h
 	$(CC) -O2 -o $@ $(srcdir)/mkportable.c
 	$(STRIP) $@
 
 if BUILD_SOURCE_INSTALLER
 all_src = installers/gpg4win-src-$(VERSION).exe
 else
 all_src =
 endif
 
 if BUILD_LIGHT_INSTALLER
 all_light = installers/gpg4win-light-$(VERSION).exe
 else
 all_light =
 endif
 
 if BUILD_VANILLA_INSTALLER
 all_vanilla = installers/gpg4win-vanilla-$(VERSION).exe
 else
 all_vanilla =
 endif
 
 if BUILD_FULL_INSTALLER
 all_full = installers/gpg4win-$(VERSION).exe
 else
 all_full =
 endif
 
 all-local: $(all_full) $(all_light) $(all_vanilla) $(all_src)
 	@echo "###################################################"
 	@echo " Gpg4win $(VERSION) successfully build!"
 	@echo " Installers can be found under src/installers"
 	@echo "###################################################"
 
 clean-local:
 	rm -f installers/gpg4win-$(VERSION).exe \
 		  installers/gpg4win-light-$(VERSION).exe \
 		  installers/gpg4win-vanilla-$(VERSION).exe \
 		  installers/gpg4win-src-$(VERSION).exe