# Maintainer: Martchus # Contributor: ant32 # Contributor: Filip Brcic # All my PKGBUILDs are managed at https://github.com/Martchus/PKGBUILDs where # you also find the URL of a binary repository. # See the comments to enable further dependencies/functionality. # Includes dynamic and static versions; if only one version is requried, just # set $NO_STATIC_LIBS or $NO_SHARED_LIBS. # All patches are managed at https://github.com/Martchus/qtwebkit # Note: most patches are originally from http://pkgs.fedoraproject.org/git/rpms/mingw-qt5-qtwebkit.git _qt_module=qtwebkit pkgname=mingw-w64-qt5-webkit pkgver=5.7.0 pkgrel=3 arch=('any') pkgdesc="Classes for a WebKit2 based implementation and a new QML API (mingw-w64)" depends=('mingw-w64-qt5-declarative' 'mingw-w64-qt5-sensors' 'mingw-w64-qt5-location' 'mingw-w64-qt5-multimedia' 'mingw-w64-angleproject' 'mingw-w64-fontconfig' 'mingw-w64-libpng' 'mingw-w64-libjpeg-turbo' 'mingw-w64-libxslt' 'mingw-w64-zlib' 'mingw-w64-icu' 'mingw-w64-sqlite' 'mingw-w64-libwebp') # These dependencies will enable further functionality #depends+=('mingw-w64-webchannel') #depends+=('mingw-w64-gst-plugins-base') #optdepends+=('mingw-w64-gst-plugins-good: Webm codec support') makedepends=('mingw-w64-gcc' 'python' 'gperf' 'ruby' 'mingw-w64-pkg-config') options=('!strip' '!buildflags' 'staticlibs') license=('GPL3' 'LGPL' 'FDL' 'custom') url="https://www.qt.io/" _pkgfqn="${_qt_module}-opensource-src-${pkgver}" groups=(mingw-w64-qt mingw-w64-qt5) source=("https://download.qt.io/community_releases/${pkgver:0:3}/${pkgver}/${_pkgfqn}.tar.xz" '0001-Use-correct-ICU-libs.patch' '0002-Use-pkg-config.patch' '0003-Use-system-ANGLE-rather-than-bundled-version.patch' '0004-Don-t-require-qt5-base-to-be-built-with-ICU-support.patch' '0005-Revert-removal-of-QT4_UNICODE-and-related-code-paths.patch' '0006-Prevent-symbols-not-being-exported-in-Qt5WebKit.dll.patch' '0007-Build-with-smaller-debug-info.patch' '0008-Fix-build-failure-due-to-building-without-ICU.patch' '0009-Establish-compatibility-with-latest-ANGLE.patch' '0010-Include-intrin.h-for-declaration-of-_mm_mfence.patch' '0011-Link-against-ANGLE-even-if-Qt-is-configured-for-dyna.patch') md5sums=('9379b8829639645c184fa63532035098' 'f6ddbf0e11d0eee39b50229a8afbd880' '9305257168e259e7f94cd58393b9680c' '41db74a7707fdd0aa9b7a61cf2bd2d96' 'ca2377c17a1f70ba89c8ae76ebf78627' '4427d61a4703048b11119f36d58738a8' 'd6aeffcfc72397d85191bc19f464eb28' 'cab7dbd33ff8a89b794275187e9e3ada' 'f68edefadc250765c8f2b28b9e400e77' '6216d2024eb88b5780d7a50793dfa996' '5165c996fa761a5dc6de69e27246865c' '09f63193a742155fa6747f1978d2a3a6') _architectures='i686-w64-mingw32 x86_64-w64-mingw32' # Disable building static version: building static Qt WebKit is not supported since Qt 4.7 NO_STATIC_LIBS=true [[ $NO_STATIC_LIBS ]] || \ makedepends+=('mingw-w64-qt5-base-static') \ optdepends+=('mingw-w64-qt5-base-static: use of static libraries') \ _configurations+=('CONFIG+=static') [[ $NO_SHARED_LIBS ]] || \ _configurations+=('CONFIG+=shared') prepare() { cd "${srcdir}/${_pkgfqn}" # Apply patches; further descriptions can be found in patch files itself for patch in "$srcdir/"*.patch; do patch -p1 -i "$patch" done # Make sure the bundled copy of the ANGLE libraries isn't used rm -rf Source/ThirdParty/ANGLE } build() { cd "${srcdir}/${_pkgfqn}" unset PKG_CONFIG_PATH for _arch in ${_architectures}; do for _config in "${_configurations[@]}"; do msg2 "Building ${_config##*=} version for ${_arch}" mkdir -p build-${_arch}-${_config##*=} && pushd build-${_arch}-${_config##*=} # Since Source/ThirdParty/ANGLE has been removed ensure files # from system ANGLE can be included (patches from Fedora don't help # here because Fedora uses other paths) export CPATH="$CPATH:/usr/$_arch/include:/usr/$_arch/include/GLSLANG" # SH_GLSL_OUTPUT has been renamed to SH_GLSL_COMPATIBILITY_OUTPUT # in the latest ANGLE version so I just add a definition for backward compatibility ${_arch}-qmake-qt5 \ "QMAKE_CXXFLAGS+=-Wno-c++0x-compat" \ "DEFINES+=SH_GLSL_OUTPUT=SH_GLSL_COMPATIBILITY_OUTPUT" \ ../WebKit.pro make popd done done } package() { cd "${srcdir}/${_pkgfqn}" for _arch in ${_architectures}; do for _config in "${_configurations[@]}"; do pushd build-${_arch}-${_config##*=} make INSTALL_ROOT="$pkgdir" install find "${pkgdir}/usr/${_arch}/lib" -maxdepth 1 -name "*.dll" -exec rm {} \; [ "$NO_STATIC_EXECUTABLES" -a "${_config##*=}" = static -o "$NO_EXECUTABLES" ] && \ find "${pkgdir}/usr/${_arch}" -name "*.exe" -exec rm {} \; || \ find "${pkgdir}/usr/${_arch}" -name "*.exe" -exec ${_arch}-strip --strip-all {} \; find "${pkgdir}/usr/${_arch}" -name "*.dll" -exec ${_arch}-strip --strip-unneeded {} \; find "${pkgdir}/usr/${_arch}" -name "*.a" -exec ${_arch}-strip -g {} \; [[ -d "${pkgdir}/usr/${_arch}/lib/qt/bin/" ]] && \ find "${pkgdir}/usr/${_arch}/lib/qt/bin/" -exec strip --strip-all {} \; find "${pkgdir}/usr/${_arch}/lib/" -iname "*.so.$pkgver" -exec strip --strip-unneeded {} \; popd done done }