diff --git a/Mk/Uses/qt-dist.mk b/Mk/Uses/qt-dist.mk index 31bb285f925b..60e88885f958 100644 --- a/Mk/Uses/qt-dist.mk +++ b/Mk/Uses/qt-dist.mk @@ -1,551 +1,551 @@ # There are three Qt related USES files with different access to Qt. # - qmake: The port requires Qt's qmake to build -- creates the configure target # - auto includes qt.mk # - qt-dist: The port is a port for a part of Qt # - auto includes qt.mk # - qt.mk - Dependency handling. USE_QT=foo bar # # # Usage # qt-dist:[,yes|modulename] # # MAINTAINER: kde@FreeBSD.org .if !defined(_QT_DIST_MK_INCLUDED) _QT_DIST_MK_INCLUDED= qt-dist.mk # Suck in qt.mk and qmake.mk qt_ARGS?= # empty .include "${USESDIR}/qt.mk" qmake_ARGS?= # empty .include "${USESDIR}/qmake.mk" # Supported distribution arguments _COMMON_DISTS= 3d base charts connectivity datavis3d declarative imageformats location multimedia \ networkauth quick3d quicktimeline remoteobjects scxml sensors \ serialbus serialport speech svg tools translations virtualkeyboard \ wayland webchannel webengine websockets webview _QT5_DISTS= gamepad graphicaleffects quickcontrols \ quickcontrols2 script webglplugin \ x11extras xmlpatterns _QT6_DISTS= 5compat coap doc graphs httpserver languageserver lottie positioning \ quick3dphysics quickeffectmaker shadertools _QT_DISTS= ${_COMMON_DISTS} \ ${_QT${_QT_VER}_DISTS} # We only accept one item as an argument. The fetch target further below works # around this. _QT_DIST= # empty . for dist in ${_QT_DISTS:O:u} . if ${qt-dist_ARGS:M${dist}} . if empty(_QT_DIST) _QT_DIST= ${dist} . else IGNORE= cannot be installed: different Qt dists specified via qt-dist:[${qt-dist_ARGS:S/ /,/g}] . endif . endif . endfor # Fall back to sensible defaults for _QT_DIST . if empty(_QT_DIST) _QT_DIST= ${PORTNAME} # don't force qt-dist to be set for Qt5 ports which 75% of time are ${PORTNAME} . endif # Check validitiy . if empty(_QT_DISTS:M${_QT_DIST}) IGNORE= Unsupported qt-dist ${_QT_DIST} for qt:${_QT_VER} . endif ################################################################################ # Set standard bsd.port.mk variables. LICENSE?= LGPL21 WWW?= https://www.qt.io/ . if !exists(${PKGDIR}/pkg-descr) DESCR?= ${PORTSDIR}/devel/${_QT_RELNAME}/pkg-descr . endif # Stage support. _QT5_DESTDIRNAME= INSTALL_ROOT _QT6_DESTDIRNAME= DESTDIR DESTDIRNAME= ${_QT${_QT_VER}_DESTDIRNAME} # Qt's tarballs are xz compressed. . if empty(USES:Mtar) EXTRACT_SUFX?= .tar.xz . endif # Qt5 specific master sites _QT5_MASTER_SITES_kde= LOCAL _QT5_MASTER_SITE_SUBDIR_kde= kde/KDE/Qt/${_QT_VERSION} _QT5_MASTER_SITES= ${MASTER_SITE_QT} _QT5_MASTER_SITE_SUBDIR= official_releases/qt/${_QT_VERSION:R}/${_QT_VERSION}/submodules/ # Qt6 specific master sites _QT6_MASTER_SITES= ${MASTER_SITE_QT} _QT6_MASTER_SITE_SUBDIR= official_releases/qt/${_QT_VERSION:R}/${_QT_VERSION}/submodules \ official_releases/additional_libraries/${_QT_VERSION:R}/${_QT_VERSION}/ # Qt5 specific distnames . if ${_QT_DIST} == webengine _QT5_DISTNAME= ${_QT_DIST:S,^,qt,:S,$,-everywhere-opensource-src-${DISTVERSION},} . else _QT5_DISTNAME= ${_QT_DIST:S,^,qt,:S,$,-everywhere-src-${DISTVERSION},} . endif _QT5_DISTNAME_kde= ${_QT_DIST:S,^,kde-qt,:S,$,-${DISTVERSION},} # Qt6 specific distnames _QT6_DISTNAME= ${_QT_DIST:S,^,qt,:S,$,-everywhere-src-${DISTVERSION},} # Effective master sites and distfile values # net/qt6-coap has no submodule distfile and uses USE_GITHUB . if ${_QT_DIST} != coap MASTER_SITES= ${_QT${_QT_VER}_MASTER_SITES${_KDE_${_QT_DIST}:D_kde}} MASTER_SITE_SUBDIR= ${_QT${_QT_VER}_MASTER_SITE_SUBDIR${_KDE_${_QT_DIST}:D_kde}} DISTNAME= ${_QT${_QT_VER}_DISTNAME${_KDE_${_QT_DIST}:D_kde}} DISTFILES= ${DISTNAME:S,$,${EXTRACT_SUFX},} . endif DIST_SUBDIR= KDE/Qt/${_QT_VERSION} . if ${_QT_VER:M5} # KDE maintains a repository with a patched Qt5 distribution. _KDE_3d= 0 -_KDE_base= 135 +_KDE_base= 148 _KDE_charts= 0 _KDE_connectivity= 6 _KDE_datavis3d= 0 -_KDE_declarative= 30 +_KDE_declarative= 32 _KDE_gamepad= 0 _KDE_graphicaleffects= 0 _KDE_imageformats= 12 -_KDE_location= 4 +_KDE_location= 6 _KDE_multimedia= 2 _KDE_networkauth= 0 _KDE_quick3d= 1 _KDE_quickcontrols= 0 _KDE_quickcontrols2= 5 _KDE_quicktimeline= 0 _KDE_remoteobjects= 0 _KDE_script= 0 _KDE_script_ORIGIN_TAG= v5.15.16-lts _KDE_script_VERSION= 5.15.16 _KDE_scxml= 0 _KDE_sensors= 0 _KDE_serialbus= 0 _KDE_serialport= 0 _KDE_speech= 1 _KDE_svg= 6 -_KDE_tools= 3 +_KDE_tools= 4 _KDE_translations= 0 _KDE_virtualkeyboard= 0 -_KDE_wayland= 59 +_KDE_wayland= 60 _KDE_webchannel= 3 _KDE_webengine= 5 _KDE_webengine_BRANCH= 5.15 _KDE_webengine_ORIGIN_TAG= v5.15.16-lts _KDE_webengine_VERSION= 5.15.16 _KDE_webglplugin= 0 _KDE_websockets= 2 _KDE_webview= 0 _KDE_x11extras= 0 _KDE_xmlpatterns= 0 . if defined(_KDE_${_QT_DIST}) . if defined(_KDE_${_QT_DIST}_ORIGIN_TAG) _KDE_${_QT_DIST}_BRANCH?= ${_KDE_${_QT_DIST}_VERSION} . else _KDE_${_QT_DIST}_BRANCH= kde/5.15 COMMENT+= (KDE patched) . endif QT5_KDE_PATCH= p${_KDE_${_QT_DIST}} _KDE_${_QT_DIST}_VERSION?= ${_QT_VERSION} _KDE_${_QT_DIST}_ORIGIN_TAG?= v${_KDE_${_QT_DIST}_VERSION}-lts-lgpl . else QT5_KDE_PATCH= # . endif . endif # ${_QT_VER:M5} # Environment setup for Qt5 . if ${_QT_VER:M5} # Qt (at least when used with qmake) has a tendency to overlink: some libraries # have dependencies on others in the mkspec configurations and the latter are # always passed to the linker even if they are not actually used. By passing # --as-needed to the linker by default when building the Qt ports we do not # have to declare a lot of unnecessary dependencies in USE_QT5. LDFLAGS+= -Wl,--as-needed . if ${_QT_DIST} == "base" && ${PORTNAME} != "qmake" # Qt configure requires pkg-config to detect dependencies. .include "${USESDIR}/pkgconfig.mk" . endif # -nomake is only used by qtbase's configure script. # Other ports from other Qt modules will automatically build examples and # tests if the directories exist because of mkspecs/features/qt_parts.prf. EXTRACT_AFTER_ARGS?= ${DISTNAME:S,$,/examples,:S,^,--exclude ,} \ ${DISTNAME:S,$,/tests,:S,^,--exclude ,} \ --no-same-owner --no-same-permissions . endif # ! ${_QT_VER:M5} # Build setup for Qt6 . if ${_QT_VER:M6} CMAKE_ARGS+= -DCMAKE_INSTALL_PREFIX=${PREFIX} \ -DINSTALL_BINDIR=${PREFIX}/${QT_BINDIR_REL} \ -DINSTALL_PUBLICBINDIR=${PREFIX}/bin \ -DINSTALL_LIBDIR=${PREFIX}/${QT_LIBDIR_REL} \ -DINSTALL_LIBEXECDIR=${PREFIX}/${QT_LIBEXECDIR_REL} \ -DINSTALL_DOCDIR=${PREFIX}/${QT_DOCDIR_REL} \ -DINSTALL_ARCHDATADIR=${PREFIX}/${QT_ARCHDIR_REL} \ -DINSTALL_DATADIR=${PREFIX}/${QT_DATADIR_REL} \ -DINSTALL_INCLUDEDIR=${PREFIX}/${QT_INCDIR_REL} \ -DINSTALL_MKSPECSDIR=${PREFIX}/${QT_MKSPECDIR_REL} \ -DINSTALL_EXAMPLESDIR=${PREFIX}/${QT_EXAMPLEDIR_REL} \ -DINSTALL_DESCRIPTIONSDIR=${PREFIX}/${QT_DESCRIPTIONSDIR_REL} \ -DQT_QMAKE_TARGET_MKSPEC:String=freebsd-clang \ --log-level=TRACE . endif # Build setup for Qt5 . if ${_QT_VER:M5} CONFIGURE_ENV+= MAKE="${MAKE:T}" CONFIGURE_ARGS+= -opensource -confirm-license \ -no-pch \ -prefix ${PREFIX} \ -bindir ${PREFIX}/${QT_BINDIR_REL} \ -headerdir ${PREFIX}/${QT_INCDIR_REL} \ -libdir ${PREFIX}/${QT_LIBDIR_REL} \ -plugindir ${PREFIX}/${QT_PLUGINDIR_REL} \ -importdir ${PREFIX}/${QT_IMPORTDIR_REL} \ -datadir ${PREFIX}/${QT_DATADIR_REL} \ -docdir ${PREFIX}/${QT_DOCDIR_REL} \ -translationdir ${PREFIX}/${QT_L10NDIR_REL} \ -sysconfdir ${PREFIX}/${QT_ETCDIR_REL} \ -nomake examples -nomake tests \ -platform ${QMAKESPECNAME} \ -archdatadir ${PREFIX}/${QT_ARCHDIR_REL} \ -libexecdir ${PREFIX}/${QT_LIBEXECDIR_REL} \ -qmldir ${PREFIX}/${QT_QMLDIR_REL} \ -examplesdir ${PREFIX}/${QT_EXAMPLEDIR_REL} \ -testsdir ${PREFIX}/${QT_TESTDIR_REL} . if ${ARCH} == i386 && empty(MACHINE_CPU:Msse2) CONFIGURE_ARGS+= -no-sse2 . endif # Work around a bug in current binutils, where the gold linker creates # duplicate symbols. See pr 218187. Disable the gold-linker for Qt5 ports. CONFIGURE_ARGS+= -no-use-gold-linker # Pass -recheck-all so that multiple calls to the configure script really # re-run all checks. CONFIGURE_ARGS+= -recheck-all . endif # ${_QT_VER:M5} . if defined(WANT_QT_DEBUG) || defined(WITH_DEBUG) WITH_DEBUG= yes STRIP= # It's done prior to bsd.qt.mk inclusion. CONFIGURE_ARGS+= -debug -separate-debug-info # Override configuration in global qconfig.pri. QMAKE_ARGS+= QT_CONFIG+="debug separate_debug_info" \ QT_CONFIG-="release" . else CONFIGURE_ARGS+= -release -no-separate-debug-info QMAKE_ARGS+= QT_CONFIG+="release" \ QT_CONFIG-="debug separate_debug_info" . endif # defined(WANT_QT_DEBUG) || defined(WITH_DEBUG) . if defined(WANT_QT_VERBOSE_CONFIGURE) CONFIGURE_ARGS+= -verbose . endif . if ${_QT_DIST} == "base" _EXTRA_PATCHES_QT5= ${PORTSDIR}/devel/${_QT_RELNAME}/files/extrapatch-mkspecs_features_create__cmake.prf \ ${PORTSDIR}/devel/${_QT_RELNAME}/files/extrapatch-mkspecs_features_qt__module.prf \ ${PORTSDIR}/devel/${_QT_RELNAME}/files/extrapatch-mkspecs_common_bsd_bsd.conf \ ${PORTSDIR}/devel/${_QT_RELNAME}/files/extrapatch-mkspecs_freebsd-clang_qmake.conf . if ${ARCH:Mmips*} || (${ARCH:Mpowerpc*} && !exists(/usr/bin/clang)) || ${ARCH} == sparc64 _EXTRA_PATCHES_QT5+= ${PORTSDIR}/devel/${_QT_RELNAME}/files/extra-patch-mkspecs_common_g++-base.conf \ ${PORTSDIR}/devel/${_QT_RELNAME}/files/extra-patch-mkspecs_common_gcc-base.conf \ ${PORTSDIR}/devel/${_QT_RELNAME}/files/extrapatch-mkspecs_freebsd-g++_qmake.conf USE_GCC= yes . elif ${ARCH} == armv7 || ${ARCH} == powerpc _EXTRA_PATCHES_QT5+= ${PORTSDIR}/devel/${_QT_RELNAME}/files/extra-patch-mkspecs_common_g++-base.conf \ ${PORTSDIR}/devel/${_QT_RELNAME}/files/extra-patch-mkspecs_common_gcc-base.conf \ ${PORTSDIR}/devel/${_QT_RELNAME}/files/extrapatch-mkspecs_freebsd-g++_qmake.conf . endif . if ${_QT_VER:M5} EXTRA_PATCHES?= ${PORTSDIR}/devel/${_QT_RELNAME}/files/extrapatch-configure \ ${PORTSDIR}/devel/${_QT_RELNAME}/files/extrapatch-sync.profiles \ ${_EXTRA_PATCHES_QT5} . endif # ${_QT_VER:M5} . endif # ${_QT_DIST} == "base" # Override settings installed in qconfig.h and *.pri files. The flags will be # installed along with the port, but have to be passed as arguments while # building the port itself. Flags prefixed with "-" (e.g., "-CUPS" and "-cups") # are needed to disable some features. . if !defined(${QT_MODNAME}) || empty(${QT_MODNAME}) # Used for both qconfig-*.h and qt_config_*.pri; it can't be empty. QT_MODNAME= ${PORTNAME} . endif QT_DEFINES?= # For qconfig.h flags (without "QT_" prefix). QT_CONFIG?= # For *.pri files QT_CONFIG flags. . if ${QT_DEFINES} QMAKE_ARGS+= DEFINES+="${QT_DEFINES:O:u:C/^([^-])/QT_\1/:C/^-/QT_NO_/:O}" . endif # ${QT_DEFINES} PKGDEINSTALL= ${WRKDIR}/pkg-deinstall PKGINSTALL= ${WRKDIR}/pkg-install . if ${QT_CONFIG:N-*} QMAKE_ARGS+= QT_CONFIG+="${QT_CONFIG:N-*:O:u}" . endif . if ${QT_CONFIG:M-*} QMAKE_ARGS+= QT_CONFIG-="${QT_CONFIG:M-*:O:u:C/^-//}" . endif PLIST_SUB+= SHORTVER=${_QT_VERSION:R} \ FULLVER=${_QT_VERSION:C/-.*//} . if defined(WITH_DEBUG) PLIST_SUB+= DEBUG="" \ NO_DEBUG="@comment " . else PLIST_SUB+= DEBUG="@comment " \ NO_DEBUG="" . endif # Handle additional PLIST directories, which should only be used for Qt-dist ports. . for dir in ETC # Export QT_ETCDIR. PLIST_SUB+= QT_${dir}DIR="${QT_${dir}DIR_REL}" . endfor . if ${_QT_VER:M5} . for dir in CMAKE # Export QT_CMAKEDIR. PLIST_SUB+= QT_${dir}DIR="${QT_${dir}DIR_REL}" . endfor . endif . if ${_QT_VER:M5} . if ${_QT_DIST} == "base" # qtbase requires some tools to be symlinked to the build directory. _QT_TOOLS= # empty . if ${PORTNAME} != "qmake" _QT_TOOLS+= ${QMAKE} . endif . if ${PORTNAME} != "buildtools" _QT_TOOLS+= ${MOC} ${RCC} . endif . if ${PORTNAME} != "qdoc" _QT_TOOLS+= qdoc . endif . if ${PORTNAME} != "dbus" _QT_TOOLS+= qdbuscpp2xml qdbusxml2cpp . endif . if ${PORTNAME} != "widgets" _QT_TOOLS+= ${UIC} . endif # The list of QtBase components that need to be linked into WRKSRC/lib for # other QtBase ports. See below. _QT5_BASE= core dbus gui network sql widgets _QT5_ADDITIONAL_LINK?= # Ensure definition . if ${_QT_VER:M5} post-patch: gcc-post-patch gcc-post-patch: ${REINPLACE_CMD} 's|%%LOCALBASE%%|${LOCALBASE}|g' \ ${WRKSRC}/mkspecs/common/gcc-base.conf \ ${WRKSRC}/mkspecs/freebsd-g++/qmake.conf ${REINPLACE_CMD} 's|%%GCC_DEFAULT%%|${GCC_DEFAULT}|g' \ ${WRKSRC}/mkspecs/common/gcc-base.conf \ ${WRKSRC}/mkspecs/common/g++-base.conf \ ${WRKSRC}/mkspecs/common/bsd/bsd.conf \ ${WRKSRC}/mkspecs/freebsd-g++/qmake.conf . endif pre-configure: qtbase-pre-configure qtbase-pre-configure: . for tool in ${_QT_TOOLS} @${TEST} -e ${QT_BINDIR}/${tool:T} && \ ${LN} -sf ${QT_BINDIR}/${tool:T} ${CONFIGURE_WRKSRC}/bin/${tool:T} || \ ${TRUE} . endfor # The following is a fix for the inplace upgrade problem we faced (see # QTBUG-40825 and ports bugs 194088, 195105 and 198720) previously, # which previously was adressed by making sure, that ${LOCALBASE}/lib, which # would often gets added by pkgconf for the dependencies, was passed after # ${WRKSRC}/lib. # * We fix the inplace upgrade problem by moving the Qt5 libraries into # ${LOCALBASE}/lib/qt5. Therefore a -L${LOCALBASE}/lib does no harm anymore. # * However, this means, that the ports belonging to the split up QtBase package # now no longer can find their depending QtBase libraries. We fix this by # linking these into ${CONFIGURE_WRKSRC}/lib if the given QtBase port depends # on them. . if ${_QT_DIST:Mbase} . for basedep in ${_QT5_BASE} . if ! empty(USE_QT:M${basedep}) ${LN} -sf ${QT_LIBDIR}/${${basedep}_LIB} ${CONFIGURE_WRKSRC}/lib . endif . endfor . endif # # **** THIS PART IS OBSOLETE FOR THE NEXT QT UPGRADE **** # # Add ${LOCALBASE}/lib to DEFAULT_LIBDIRS, which we use to filter out # certain paths from pkg-config calls (see the explanation in # devel/qt5/files/patch-configure) as well as for setting # QMAKE_DEFAULT_LIBDIR in mkspecs/qconfig.pri. Part of the solution for # ports/194088. post-patch: qtbase-post-patch qtbase-post-patch: ${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ ${WRKSRC}/mkspecs/common/bsd/bsd.conf \ ${WRKSRC}/mkspecs/freebsd-clang/qmake.conf . if ${PORTNAME} != "qmake" _QMAKE= ${CONFIGURE_WRKSRC}/bin/qmake . endif . endif pre-configure: qt5-pre-configure qt5-pre-configure: # Qt 5.3.2 introduced a check in mkspecs/features/create_cmake.prf that # requires tests/auto/cmake to be present, otherwise the configure stage will # fail. # Since we cannot extract tests/auto/cmake/ and exclude tests/ at the same # time, we have to disable the check in a cache file (the only way to get this # value through to the configure script in qtbase). ${MKDIR} ${CONFIGURE_WRKSRC} ${ECHO_CMD} 'CMAKE_MODULE_TESTS = -' > ${CONFIGURE_WRKSRC}/.qmake.cache # configure will run syncqt.pl if it finds a .git entry in the working directory touch ${WRKSRC}/.git # As the patch collection was created after a version bump, all module verisions # are tagged as 5.15.3 touch ${WRKSRC}/.qmake.conf # easier than to -f before the sed ${REINPLACE_CMD} -e '/MODULE_VERSION/s|5\.15\.\([0-9]*\)|${_QT_VERSION}|g' \ ${WRKSRC}/.qmake.conf # **** THIS PART IS OBSOLETE FOR THE NEXT QT UPGRADE **** # # We piggyback on QMAKE_LIBDIR_FLAGS to make sure -L${WRKSRC}/lib is passed to # the linker before -L/usr/local/lib. By default, the opposite happens, which # is a problem when a Qt port is being upgraded, since an existing library # would end up being picked up instead of those built in ${WRKSRC}/lib. Since # qmake appends the value of QMAKE_LIBDIR to QMAKE_LIBDIR_FLAGS, we can use the # latter to get the linker path order right. qmake is smart enough to strip # occurrences of ${WRKSRC}/lib from .pc and .prl files when installing them. # See QTBUG-40825 and ports bugs 194088, 195105 and 198720. ${ECHO_CMD} 'QMAKE_LIBDIR_FLAGS = -L${CONFIGURE_WRKSRC}/lib' >> ${CONFIGURE_WRKSRC}/.qmake.cache ${ECHO_CMD} 'QMAKE_DEFAULT_LIBDIRS += ${LOCALBASE}/lib /usr/lib /lib' >> ${CONFIGURE_WRKSRC}/.qmake.cache ${ECHO_CMD} 'QMAKE_DEFAULT_INCDIRS += ${LOCALBASE}/include /usr/include' >> ${CONFIGURE_WRKSRC}/.qmake.cache # Allow linking of further libraries to the configure directory. . if !empty(_QT5_ADDITIONAL_LINK) . for dep in ${_QT5_ADDITIONAL_LINK} ${MKDIR} ${CONFIGURE_WRKSRC}/lib . if ! empty(USE_QT:M${dep}) ${LN} -sf ${QT_LIBDIR}/${qt-${dep}_LIB} ${CONFIGURE_WRKSRC}/lib . endif . endfor . endif . if ${QT_DEFINES:N-*} # There **are** defines, so we need to **add** this port to the # qconfig-modules.h header; make @need_add empty and comment out # the @need_remove lines in the script (see below in qt-post-install). # If there are no defines, do it the other way around. _sub_need_add= _sub_need_remove= \#\# . else _sub_need_add= \#\# _sub_need_remove= . endif # If a port installs Qt version-specific binaries (e.g. "designer" which # existed as a Qt4 application and exists as a Qt5 application and will # probably be a Qt6 application) the port should set `QT_BINARIES=yes`. . if defined(QT_BINARIES) _sub_need_bin= . else _sub_need_bin= \#\# . endif . if ${QT_MODNAME} == core # QtCore (e.g. devel/qt5-core) is the one that starts the header, # and is also the one that can clean it up when deinstalled. _sub_need_clean= . else _sub_need_clean= \#\# . endif # The Qt modules have an install- and deinstall-step for wrangling # the qconfig-modules.h header, but qmake does not. . if ${PORTNAME} != "qmake" post-install: qt-post-install . endif # PORTNAME != qmake qt-post-install: # We can't use SUB_FILES with the shared pkg-change.in. # We need it to be a script instead of a group of @unexecs. # Do two steps of processing -- introducing the Qt variables, # and replacing the @tags with comment (or nothing) characters # according to the port's settings -- in one sed and write # to pkg-change.tmp. Then split it up and minify for the # install and deinstall step. @${SED} -e 's,%%QT_MODNAME%%,${QT_MODNAME},g' \ -e 's,%%QT_INCDIR%%,${QT_INCDIR},g' \ -e 's,@need_add,${_sub_need_add},' \ -e 's,@need_remove,${_sub_need_remove},' \ -e 's,@need_clean,${_sub_need_clean},' \ -e 's,@need_bin,${_sub_need_bin},' \ ${PORTSDIR}/devel/${_QT_RELNAME}/${FILESDIR:T}/pkg-change.in > \ ${WRKDIR}/pkg-change.tmp @${SED} -e 's,@install,,' -e 's,@deinstall,##,' ${WRKDIR}/pkg-change.tmp | ${SED} -e '/##/d' > ${PKGINSTALL} @${SED} -e 's,@install,##,' -e 's,@deinstall,,' ${WRKDIR}/pkg-change.tmp | ${SED} -e '/##/d' > ${PKGDEINSTALL} # Drop all leading spaces in the script, to minify @${REINPLACE_CMD} 's/^ *//' ${PKGINSTALL} ${PKGDEINSTALL} . if ${QT_DEFINES:N-*} @${MKDIR} ${STAGEDIR}${QT_INCDIR}/QtCore/modules @${ECHO_CMD} -n \ > ${STAGEDIR}${QT_INCDIR}/QtCore/modules/qconfig-${QT_MODNAME}.h . for def in ${QT_DEFINES:N-*:O:u:C/=.*$//} @${ECHO_CMD} "#if !defined(QT_${def}) && !defined(QT_NO_${def})" \ >> ${STAGEDIR}${QT_INCDIR}/QtCore/modules/qconfig-${QT_MODNAME}.h ${ECHO_CMD} "# define QT_${def}" \ >> ${STAGEDIR}${QT_INCDIR}/QtCore/modules/qconfig-${QT_MODNAME}.h @${ECHO_CMD} "#endif" \ >> ${STAGEDIR}${QT_INCDIR}/QtCore/modules/qconfig-${QT_MODNAME}.h @${ECHO_CMD} \ >> ${STAGEDIR}${QT_INCDIR}/QtCore/modules/qconfig-${QT_MODNAME}.h . endfor @${ECHO_CMD} "${PREFIX}/${QT_INCDIR_REL}/QtCore/modules/qconfig-${QT_MODNAME}.h" \ >> ${TMPPLIST} . endif # ${QT_DEFINES:N-*} . if ${QT_CONFIG:N-*} @${MKDIR} ${STAGEDIR}${QT_MKSPECDIR}/modules ${ECHO_CMD} "QT_CONFIG += ${QT_CONFIG:N-*:O:u}" \ > ${STAGEDIR}${QT_MKSPECDIR}/modules/qt_config_${QT_MODNAME}.pri @${ECHO_CMD} "${PREFIX}/${QT_MKSPECDIR_REL}/modules/qt_config_${QT_MODNAME}.pri" \ >> ${TMPPLIST} . endif # ${QT_CONFIG:N-*} . endif # M5 . if ${_QT_VER:M6} post-stage: qt6-post-stage # Clean-up of empty directories, as we install # * cmake to ${LOCALBASE}/lib/cmake not ${QT_LIBDIR}/cmake. # * pkgconfig to ${LOCALBASE}/libexec/pkgconfig not ${QT_LIBDIR}/pkgconfig qt6-post-stage: ${RM} -r ${STAGEDIR}${QT_LIBDIR}/cmake ${RM} -r ${STAGEDIR}${QT_LIBDIR}/pkgconfig . endif qt-create-kde-distfile: ${MKDIR} ${DISTDIR}/${DIST_SUBDIR} ${SH} ${PORTSDIR}/devel/${_QT_RELNAME}/files/create_kde-qt_release.sh \ ${_QT_DIST} \ ${DISTDIR}/${DIST_SUBDIR} \ ${_KDE_${_QT_DIST}_VERSION} \ ${_KDE_${_QT_DIST}_ORIGIN_TAG} \ ${_KDE_${_QT_DIST}_BRANCH} .endif # defined(_QT_DIST_MK_INCLUDED) diff --git a/Mk/Uses/qt.mk b/Mk/Uses/qt.mk index 7e9cfc926745..f991d4213354 100644 --- a/Mk/Uses/qt.mk +++ b/Mk/Uses/qt.mk @@ -1,473 +1,473 @@ # There are three Qt related USES files with different access to Qt. # - qmake: The port requires Qt's qmake to build -- creates the configure target # - auto includes qt.mk # - qt-dist: The port is a port for a part of Qt # - auto includes qt.mk and qmake.mk # - qt.mk - Dependency handling. USE_QT=foo bar # # Usage: # USES=qt:[,no_env] # # Versions: 5, 6 # # Port variables: # USE_QT - List of Qt modules to depend on, with optional ':build' # and ':run' suffixes. Define it empty to include this file # without depending on Qt ports. # # MAINTAINER: kde@FreeBSD.org .if !defined(_QT_MK_INCLUDED) _QT_MK_INCLUDED= qt.mk # Qt versions currently supported by the framework. _QT_SUPPORTED?= 5 6 -QT5_VERSION?= 5.15.11 +QT5_VERSION?= 5.15.12 QT6_VERSION?= 6.6.1 PYSIDE6_VERSION?= 6.6.1 # We accept the Qt version to be passed by either or all of the three mk files. . if empty(qt_ARGS) && empty(qmake_ARGS) && empty(qt-dist_ARGS) IGNORE= qt needs a version (${_QT_SUPPORTED}) passed via qt, qmake or qt-dist. . endif # Gather all the args together _QT_GLOBAL_ARGS= ${qt_ARGS} ${qmake_ARGS} ${qt-dist_ARGS} # Check fo the Qt version to be used _QT_VER= # empty . for ver in ${_QT_SUPPORTED:O:u} . if ${_QT_GLOBAL_ARGS:M${ver}} . if !defined(_QT_VERSION) _QT_VER= ${ver} . else . if ${_QT_VERSION} != ${ver} IGNORE?= cannot be installed: different Qt versions specified via qt:[${_QT_SUPPORTED:S/ //g}], qmake:[${_QT_SUPPORTED:S/ //g}] a qt-dist:[${_QT_SUPPORTED:S/ //g}] . endif . endif . endif . endfor . if empty(_QT_VER) IGNORE?= cannot decide what Qt version to use: specify one via qt:[${_QT_SUPPORTED:S/ //g}], qmake:[${_QT_SUPPORTED:S/ //g}] or qt-dist:[${_QT_SUPPORTED:S/ //g}] . endif # Set the shortcuts used from now on _QT_RELNAME= qt${_QT_VER} _QT_VERSION= ${QT${_QT_VER}_VERSION} QT_BINDIR_REL?= ${QT_ARCHDIR_REL}/bin QT_INCDIR_REL?= include/${_QT_RELNAME} QT_LIBDIR_REL?= lib/${_QT_RELNAME} QT_ARCHDIR_REL?= ${QT_LIBDIR_REL} QT_PLUGINDIR_REL?= ${QT_ARCHDIR_REL}/plugins QT_DESCRIPTIONSDIR_REL?=${QT_DATADIR_REL}/modules QT_LIBEXECDIR_REL?= libexec/${_QT_RELNAME} QT_IMPORTDIR_REL?= ${QT_ARCHDIR_REL}/imports QT_QMLDIR_REL?= ${QT_ARCHDIR_REL}/qml QT_DATADIR_REL?= share/${_QT_RELNAME} QT_DOCDIR_REL?= share/doc/${_QT_RELNAME} QT_L10NDIR_REL?= ${QT_DATADIR_REL}/translations QT_ETCDIR_REL?= etc/xdg QT_EXAMPLEDIR_REL?= share/examples/${_QT_RELNAME} QT_TESTDIR_REL?= ${QT_DATADIR_REL}/tests QT_CMAKEDIR_REL?= lib/cmake _QT5_TOOLDIR_REL= ${QT_BINDIR_REL} _QT6_TOOLDIR_REL= ${QT_LIBEXECDIR_REL} QT_TOOLDIR_REL= ${_QT${_QT_VER}_TOOLDIR_REL} # Not customizable. QT_MKSPECDIR_REL= ${QT_ARCHDIR_REL}/mkspecs _QT_LIBVER= ${_QT_VERSION:R:R} LCONVERT?= ${QT_BINDIR}/lconvert LRELEASE?= ${QT_BINDIR}/lrelease LUPDATE?= ${QT_BINDIR}/lupdate MOC?= ${QT_TOOLDIR}/moc RCC?= ${QT_TOOLDIR}/rcc UIC?= ${QT_TOOLDIR}/uic QMAKE?= ${QT_BINDIR}/qmake QCOLLECTIONGENERATOR?= ${QT_TOOLDIR}/qcollectiongenerator QHELPGENERATOR?= ${QT_TOOLDIR}/qhelpgenerator # Needed to redefine the qmake target for internal Qt configuration. _QMAKE?= ${QMAKE} QMAKESPECNAME?= freebsd-${QMAKE_COMPILER} QMAKESPEC?= ${QT_MKSPECDIR}/${QMAKESPECNAME} # The whole Qt distribution should be built with the same compiler, but it's # better to support custom settings. Dereferencing the detection allows to # avoid forking a shell on each inclusion of this file, and to catch any CXX # customization (via USE_GCC, etc.). QMAKE_COMPILER= $$(ccver="$$(${CXX} --version)"; case "$$ccver" in *clang*) echo clang ;; *) echo g++ ;; esac) . for dir in BIN INC LIB ARCH PLUGIN LIBEXEC IMPORT \ QML DATA DOC L10N ETC EXAMPLE TEST MKSPEC \ CMAKE TOOL QT_${dir}DIR= ${PREFIX}/${QT_${dir}DIR_REL} # Export all directories to the plist substituion for QT_DIST ports. # For the others, exclude QT_CMAKEDIR and QT_ETCDIR. . if ${dir:NCMAKE} && ${dir:NETC} PLIST_SUB+= QT_${dir}DIR="${QT_${dir}DIR_REL}" . endif . endfor # Suppress warnings from rcc about not using a UTF-8 locale. . if ${_QT_VER:M6} USE_LOCALE?= C.UTF-8 . endif CONFIGURE_ENV+= QT_SELECT=${_QT_RELNAME} MAKE_ENV+= QT_SELECT=${_QT_RELNAME} # Make sure both the installed mkspecs as well as the ones being built are # found, with the ones from the port being built having preference. CONFIGURE_ENV+= QMAKEMODULES="${WRKSRC}/mkspecs/modules:${LOCALBASE}/${QT_MKSPECDIR_REL}/modules" MAKE_ENV+= QMAKEMODULES="${WRKSRC}/mkspecs/modules:${LOCALBASE}/${QT_MKSPECDIR_REL}/modules" # Qt uses generated linker version scripts which always have a qt_version_tag # symbol, but that symbol is only defined in the main Qt shared library. For # other Qt components, this leads to lld >= 17 erroring out due to the symbol # being undefined. Supress these errors. LDFLAGS+= -Wl,--undefined-version _USES_POST+= qt .endif # _QT_MK_INCLUDED # ============================================================================= # # ============================================================================= .if defined(_POSTMKINCLUDED) && !defined(_QT_MK_POST_INCLUDED) _QT_MK_POST_INCLUDED= qt.mk # The Qt components supported by qt.mk: list of shared, and version specific ones _USE_QT_COMMON= 3d charts connectivity datavis3d declarative doc examples imageformats location \ multimedia networkauth quick3d quicktimeline remoteobjects scxml \ sensors serialbus serialport speech svg virtualkeyboard wayland \ webchannel webengine websockets webview _USE_QT5_ONLY= assistant buildtools concurrent core dbus \ declarative-test designer diag gamepad \ graphicaleffects gui help l10n linguist linguisttools \ network opengl paths pixeltool plugininfo printsupport \ qdbus qdbusviewer qdoc qdoc-data qev qmake quickcontrols \ quickcontrols2 script scripttools sql sql-mysql sql-odbc \ sql-pgsql sql-sqlite2 sql-sqlite3 sql-tds testlib uiplugin \ uitools webglplugin webkit websockets-qml \ widgets x11extras xml xmlpatterns . if ${ARCH} == amd64 || ${ARCH} == i386 _USE_QT5_ONLY+= sql-ibase . endif _USE_QT6_ONLY= 5compat base coap graphs httpserver languageserver lottie pdf positioning \ quick3dphysics quickeffectmaker shadertools tools translations \ sqldriver-sqlite sqldriver-mysql sqldriver-psql sqldriver-odbc # Dependency tuples: _LIB should be preferred if possible. qt-3d_PORT= graphics/${_QT_RELNAME}-3d qt-3d_LIB= libQt${_QT_LIBVER}3DCore.so qt-5compat_PORT= devel/${_QT_RELNAME}-5compat qt-5compat_LIB= libQt${_QT_LIBVER}Core5Compat.so qt-assistant_PORT= devel/${_QT_RELNAME}-assistant qt-assistant_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/assistant # Always build with *this* version's buildtools qt-buildtools_PORT= devel/${_QT_RELNAME}-buildtools qt-buildtools_PATH= ${_QT_RELNAME}-buildtools>=${_QT_VERSION:R} qt-base_PORT= devel/${_QT_RELNAME}-base qt-base_LIB= libQt${_QT_LIBVER}Core.so qt-charts_PORT= x11-toolkits/${_QT_RELNAME}-charts qt-charts_LIB= libQt${_QT_LIBVER}Charts.so qt-coap_PORT= net/${_QT_RELNAME}-coap qt-coap_LIB= libQt${_QT_LIBVER}Coap.so qt-concurrent_PORT= devel/${_QT_RELNAME}-concurrent qt-concurrent_LIB= libQt${_QT_LIBVER}Concurrent.so qt-connectivity_PORT= comms/${_QT_RELNAME}-connectivity qt-connectivity_LIB= libQt${_QT_LIBVER}Bluetooth.so qt-core_PORT= devel/${_QT_RELNAME}-core qt-core_LIB= libQt${_QT_LIBVER}Core.so qt-datavis3d_PORT= x11-toolkits/${_QT_RELNAME}-datavis3d qt-datavis3d_LIB= libQt${_QT_LIBVER}DataVisualization.so qt-dbus_PORT= devel/${_QT_RELNAME}-dbus qt-dbus_LIB= libQt${_QT_LIBVER}DBus.so qt-declarative_PORT= x11-toolkits/${_QT_RELNAME}-declarative qt-declarative_LIB= libQt${_QT_LIBVER}Qml.so qt-declarative-test_PORT= x11-toolkits/${_QT_RELNAME}-declarative-test qt-declarative-test_LIB= libQt${_QT_LIBVER}QuickTest.so qt-designer_PORT= devel/${_QT_RELNAME}-designer qt-designer_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/designer qt-diag_PORT= sysutils/${_QT_RELNAME}-qtdiag qt-diag_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/qtdiag qt-doc_PORT= misc/${_QT_RELNAME}-doc qt-doc_PATH= ${_QT_RELNAME}-doc>=${_QT_VERSION:R:R} qt-examples_PORT= misc/${_QT_RELNAME}-examples qt-examples_PATH= ${_QT_RELNAME}-examples>=${_QT_VERSION:R:R} qt-gamepad_PORT= x11-toolkits/${_QT_RELNAME}-gamepad qt-gamepad_LIB= libQt${_QT_LIBVER}Gamepad.so qt-graphicaleffects_PORT= graphics/${_QT_RELNAME}-graphicaleffects qt-graphicaleffects_PATH= ${LOCALBASE}/${QT_QMLDIR_REL}/QtGraphicalEffects/qmldir qt-graphs_PORT= x11-toolkits/${_QT_RELNAME}-graphs qt-graphs_LIB= libQt${_QT_LIBVER}Graphs.so qt-gui_PORT= x11-toolkits/${_QT_RELNAME}-gui qt-gui_LIB= libQt${_QT_LIBVER}Gui.so qt-help_PORT= devel/${_QT_RELNAME}-help qt-help_LIB= libQt${_QT_LIBVER}Help.so qt-httpserver_PORT= www/${_QT_RELNAME}-httpserver qt-httpserver_LIB= libQt${_QT_LIBVER}HttpServer.so qt-imageformats_PORT= graphics/${_QT_RELNAME}-imageformats qt-imageformats_PATH= ${LOCALBASE}/${QT_PLUGINDIR_REL}/imageformats/libqtiff.so qt-languageserver_PORT= devel/${_QT_RELNAME}-languageserver qt-languageserver_LIB= libQt${_QT_LIBVER}LanguageServer.so qt-lottie_PORT= graphics/${_QT_RELNAME}-lottie qt-lottie_LIB= libQt${_QT_LIBVER}Bodymovin.so qt-linguist_PORT= devel/${_QT_RELNAME}-linguist qt-linguist_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/linguist qt-linguisttools_PORT= devel/${_QT_RELNAME}-linguisttools qt-linguisttools_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/lrelease qt-location_PORT= devel/${_QT_RELNAME}-location qt-location_LIB= libQt${_QT_LIBVER}Location.so qt-l10n_PORT= misc/${_QT_RELNAME}-l10n qt-l10n_PATH= ${_QT_RELNAME}-l10n>=${_QT_VERSION:R:R} qt-multimedia_PORT= multimedia/${_QT_RELNAME}-multimedia qt-multimedia_LIB= libQt${_QT_LIBVER}Multimedia.so qt-network_PORT= net/${_QT_RELNAME}-network qt-network_LIB= libQt${_QT_LIBVER}Network.so qt-networkauth_PORT= net/${_QT_RELNAME}-networkauth qt-networkauth_LIB= libQt${_QT_LIBVER}NetworkAuth.so qt-opengl_PORT= graphics/${_QT_RELNAME}-opengl qt-opengl_LIB= libQt${_QT_LIBVER}OpenGL.so qt-paths_PORT= sysutils/${_QT_RELNAME}-qtpaths qt-paths_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/qtpaths qt-pdf_PORT= print/${_QT_RELNAME}-pdf qt-pdf_LIB= libQt${_QT_LIBVER}Pdf.so qt-pixeltool_PORT= graphics/${_QT_RELNAME}-pixeltool qt-pixeltool_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/pixeltool qt-positioning_PORT= devel/${_QT_RELNAME}-positioning qt-positioning_LIB= libQt${_QT_LIBVER}Positioning.so qt-plugininfo_PORT= sysutils/${_QT_RELNAME}-qtplugininfo qt-plugininfo_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/qtplugininfo qt-printsupport_PORT= print/${_QT_RELNAME}-printsupport qt-printsupport_LIB= libQt${_QT_LIBVER}PrintSupport.so qt-qdbus_PORT= devel/${_QT_RELNAME}-qdbus qt-qdbus_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/qdbus qt-qdbusviewer_PORT= devel/${_QT_RELNAME}-qdbusviewer qt-qdbusviewer_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/qdbusviewer qt-qdoc_PORT= devel/${_QT_RELNAME}-qdoc qt-qdoc_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/qdoc qt-qdoc-data_PORT= devel/${_QT_RELNAME}-qdoc-data qt-qdoc-data_PATH= ${LOCALBASE}/${QT_DOCDIR_REL}/global/config.qdocconf qt-qev_PORT= x11/${_QT_RELNAME}-qev qt-qev_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/qev # Always build with *this* version's qmake qt-qmake_PORT= devel/${_QT_RELNAME}-qmake qt-qmake_PATH= ${_QT_RELNAME}-qmake>=${_QT_VERSION:R} qt-quick3d_PORT= x11-toolkits/${_QT_RELNAME}-quick3d qt-quick3d_LIB= libQt${_QT_LIBVER}Quick3D.so qt-quick3dphysics_PORT= science/${_QT_RELNAME}-quick3dphysics qt_quick3dphysics_LIB= libQt${_QT_LIBVER}Quick3DPhysics.so qt-quickcontrols_PORT= x11-toolkits/${_QT_RELNAME}-quickcontrols qt-quickcontrols_PATH= ${LOCALBASE}/${QT_QMLDIR_REL}/QtQuick/Controls/qmldir qt-quickcontrols2_PORT= x11-toolkits/${_QT_RELNAME}-quickcontrols2 qt-quickcontrols2_LIB= libQt${_QT_LIBVER}QuickControls2.so qt-quickeffectmaker_PORT= graphics/${_QT_RELNAME}-quickeffectmaker qt-quickeffectmaker_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/qqem qt-quicktimeline_PORT= x11-toolkits/${_QT_RELNAME}-quicktimeline qt-quicktimeline_PATH= ${LOCALBASE}/${QT_QMLDIR_REL}/QtQuick/Timeline/libqtquicktimelineplugin.so qt-remoteobjects_PORT= devel/${_QT_RELNAME}-remoteobjects qt-remoteobjects_LIB= libQt${_QT_LIBVER}RemoteObjects.so qt-sensors_PORT= comms/${_QT_RELNAME}-sensors qt-sensors_LIB= libQt${_QT_LIBVER}Sensors.so qt-script_PORT= devel/${_QT_RELNAME}-script qt-script_LIB= libQt${_QT_LIBVER}Script.so qt-scripttools_PORT= devel/${_QT_RELNAME}-scripttools qt-scripttools_LIB= libQt${_QT_LIBVER}ScriptTools.so qt-scxml_PORT= devel/${_QT_RELNAME}-scxml qt-scxml_LIB= libQt${_QT_LIBVER}Scxml.so qt-serialbus_PORT= comms/${_QT_RELNAME}-serialbus qt-serialbus_LIB= libQt${_QT_LIBVER}SerialBus.so qt-serialport_PORT= comms/${_QT_RELNAME}-serialport qt-serialport_LIB= libQt${_QT_LIBVER}SerialPort.so qt-shadertools_PORT= x11-toolkits/${_QT_RELNAME}-shadertools qt-shadertools_LIB= libQt${_QT_LIBVER}ShaderTools.so qt-speech_PORT= accessibility/${_QT_RELNAME}-speech qt-speech_LIB= libQt${_QT_LIBVER}TextToSpeech.so qt-sql_PORT= databases/${_QT_RELNAME}-sql qt-sql_LIB= libQt${_QT_LIBVER}Sql.so qt-sql-pgsql_PATH= ${LOCALBASE}/${QT_PLUGINDIR_REL}/sqldrivers/libqsqlpsql.so qt-sql-sqlite3_PATH= ${LOCALBASE}/${QT_PLUGINDIR_REL}/sqldrivers/libqsqlite.so . for db in ibase mysql odbc pgsql sqlite2 sqlite3 tds qt-sql-${db}_PORT= databases/${_QT_RELNAME}-sqldrivers-${db} qt-sql-${db}_PATH?= ${LOCALBASE}/${QT_PLUGINDIR_REL}/sqldrivers/libqsql${db:C/^sql//}.so . endfor . for db in sqlite mysql psql odbc qt-sqldriver-${db}_PORT= databases/${_QT_RELNAME}-base_sqldriver@${db} qt-sqldriver-${db}_PATH?= ${LOCALBASE}/${QT_PLUGINDIR_REL}/sqldrivers/libqsql${db:C/^sql//}.so . endfor qt-svg_PORT= graphics/${_QT_RELNAME}-svg qt-svg_LIB= libQt${_QT_LIBVER}Svg.so qt-testlib_PORT= devel/${_QT_RELNAME}-testlib qt-testlib_LIB= libQt${_QT_LIBVER}Test.so qt-tools_PORT= devel/${_QT_RELNAME}-tools qt-tools_PATH= ${LOCALBASE}/${QT_BINDIR_REL}/lupdate qt-translations_PORT= devel/${_QT_RELNAME}-translations qt-translations_PATH= ${LOCALBASE}/${QT_DATADIR_REL}/translations/qt_en.qm qt-uiplugin_PORT= x11-toolkits/${_QT_RELNAME}-uiplugin qt-uiplugin_PATH= ${LOCALBASE}/${QT_INCDIR_REL}/QtUiPlugin/QtUiPlugin qt-uitools_PORT= devel/${_QT_RELNAME}-uitools qt-uitools_PATH= ${LOCALBASE}/${QT_LIBDIR_REL}/libQt${_QT_LIBVER}UiTools.a qt-virtualkeyboard_PORT= x11-toolkits/${_QT_RELNAME}-virtualkeyboard qt-virtualkeyboard_PATH= ${LOCALBASE}/${QT_PLUGINDIR_REL}/platforminputcontexts/libqtvirtualkeyboardplugin.so qt-wayland_PORT= graphics/${_QT_RELNAME}-wayland qt-wayland_LIB= libQt${_QT_LIBVER}WaylandClient.so qt-webchannel_PORT= www/${_QT_RELNAME}-webchannel qt-webchannel_LIB= libQt${_QT_LIBVER}WebChannel.so qt-webengine_PORT= www/${_QT_RELNAME}-webengine qt-webengine_LIB= libQt${_QT_LIBVER}WebEngineCore.so qt-webglplugin_PORT= www/${_QT_RELNAME}-webglplugin qt-webglplugin_PATH= ${LOCALBASE}/${QT_PLUGINDIR_REL}/platforms/libqwebgl.so qt-websockets_PORT= www/${_QT_RELNAME}-websockets qt-websockets_LIB= libQt${_QT_LIBVER}WebSockets.so qt-websockets-qml_PORT= www/${_QT_RELNAME}-websockets-qml qt-websockets-qml_PATH= ${LOCALBASE}/${QT_QMLDIR_REL}/QtWebSockets/qmldir qt-webkit_PORT= www/${_QT_RELNAME}-webkit qt-webkit_LIB= libQt${_QT_LIBVER}WebKit.so qt-webview_PORT= www/${_QT_RELNAME}-webview qt-webview_LIB= libQt${_QT_LIBVER}WebView.so qt-widgets_PORT= x11-toolkits/${_QT_RELNAME}-widgets qt-widgets_LIB= libQt${_QT_LIBVER}Widgets.so qt-x11extras_PORT= x11/${_QT_RELNAME}-x11extras qt-x11extras_LIB= libQt${_QT_LIBVER}X11Extras.so qt-xml_PORT= textproc/${_QT_RELNAME}-xml qt-xml_LIB= libQt${_QT_LIBVER}Xml.so qt-xmlpatterns_PORT= textproc/${_QT_RELNAME}-xmlpatterns qt-xmlpatterns_LIB= libQt${_QT_LIBVER}XmlPatterns.so # Actually add the dependencies to the proper lists. _USE_QT_ALL= ${_USE_QT_COMMON} \ ${_USE_QT${_QT_VER}_ONLY} _USE_QT= ${USE_QT} # Iterate through components deprived of suffix. . for component in ${_USE_QT:O:u:C/:(build|run)$//} # Check that the component is valid. . if ${_USE_QT_ALL:M${component}} != "" # Skip meta-components (currently none). . if defined(qt-${component}_PORT) && (defined(qt-${component}_PATH) || defined(qt-${component}_LIB)) # Check if a dependency type is explicitly requested. . if ${_USE_QT:M${component}\:*} != "" && ${_USE_QT:M${component}} == "" qt-${component}_TYPE= # empty . if ${_USE_QT:M${component}\:build} != "" qt-${component}_TYPE+= build . endif . if ${_USE_QT:M${component}\:run} != "" qt-${component}_TYPE+= run . endif . endif # ${_USE_QT:M${component}_*} != "" && ${_USE_QT:M${component}} == "" # If no dependency type is set, default to full dependency. . if !defined(qt-${component}_TYPE) qt-${component}_TYPE= build run . endif # Set real dependencies. . if defined(qt-${component}_LIB) && ${qt-${component}_TYPE:Mbuild} && ${qt-${component}_TYPE:Mrun} LIB_DEPENDS+= ${qt-${component}_LIB}:${qt-${component}_PORT} . else qt-${component}_PATH?= ${QT_LIBDIR}/${qt-${component}_LIB} qt-${component}_DEPENDS= ${qt-${component}_PATH}:${qt-${component}_PORT} . if ${qt-${component}_TYPE:Mbuild} != "" BUILD_DEPENDS+= ${qt-${component}_DEPENDS} . endif . if ${qt-${component}_TYPE:Mrun} != "" RUN_DEPENDS+= ${qt-${component}_DEPENDS} . endif . endif # ${qt-${component}_LIB} && ${qt-${component}_TYPE:Mbuild} && ${qt-${component}_TYPE:Mrun} . endif # defined(qt-${component}_PORT) && defined(qt-${component}_PATH) . else # ! ${_USE_QT_ALL:M${component}} != "" IGNORE= cannot be installed: unknown USE_QT component '${component}' . endif # ${_USE_QT_ALL:M${component}} != "" . endfor .endif # defined(_QT_MK_POST_INCLUDED) diff --git a/accessibility/qt5-speech/distinfo b/accessibility/qt5-speech/distinfo index 1f93e68f08cc..24a2b2d99b85 100644 --- a/accessibility/qt5-speech/distinfo +++ b/accessibility/qt5-speech/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915424 -SHA256 (KDE/Qt/5.15.11/kde-qtspeech-5.15.11p1.tar.xz) = c636c1dc219dd6edc80bcf59bc4bddc3d40f5bc84f0e61efc90332f11f9df108 -SIZE (KDE/Qt/5.15.11/kde-qtspeech-5.15.11p1.tar.xz) = 80192 +TIMESTAMP = 1703809502 +SHA256 (KDE/Qt/5.15.12/kde-qtspeech-5.15.12p1.tar.xz) = 2441a418e16adb6ba53ce182b9da921e732975dc38aec8ce22d865d3051e55b6 +SIZE (KDE/Qt/5.15.12/kde-qtspeech-5.15.12p1.tar.xz) = 80284 diff --git a/comms/qt5-connectivity/distinfo b/comms/qt5-connectivity/distinfo index 13998c527297..8e61a2e9a1fa 100644 --- a/comms/qt5-connectivity/distinfo +++ b/comms/qt5-connectivity/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915426 -SHA256 (KDE/Qt/5.15.11/kde-qtconnectivity-5.15.11p6.tar.xz) = 178b4bebd8abf80b4229b1aa3cbea633cb97a8dfa0a3288f34c7f82b4e118fca -SIZE (KDE/Qt/5.15.11/kde-qtconnectivity-5.15.11p6.tar.xz) = 2796612 +TIMESTAMP = 1703809506 +SHA256 (KDE/Qt/5.15.12/kde-qtconnectivity-5.15.12p6.tar.xz) = 058e7491b94c075058e6eee9d467efacd28c32888c729a8445e3af8480716887 +SIZE (KDE/Qt/5.15.12/kde-qtconnectivity-5.15.12p6.tar.xz) = 2796256 diff --git a/comms/qt5-sensors/distinfo b/comms/qt5-sensors/distinfo index e6e912d47357..942566538d96 100644 --- a/comms/qt5-sensors/distinfo +++ b/comms/qt5-sensors/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915427 -SHA256 (KDE/Qt/5.15.11/kde-qtsensors-5.15.11p0.tar.xz) = 883e3ef7e852235cf7200771b795662af3dead6f0307fb650c705540dd2c4819 -SIZE (KDE/Qt/5.15.11/kde-qtsensors-5.15.11p0.tar.xz) = 2030908 +TIMESTAMP = 1703809510 +SHA256 (KDE/Qt/5.15.12/kde-qtsensors-5.15.12p0.tar.xz) = 47f3880a330c3034fea2ca2218c63246656a62e54161fc7c885c38f732125f3d +SIZE (KDE/Qt/5.15.12/kde-qtsensors-5.15.12p0.tar.xz) = 2030988 diff --git a/comms/qt5-serialbus/distinfo b/comms/qt5-serialbus/distinfo index da2b62840b17..4d7db0816dd2 100644 --- a/comms/qt5-serialbus/distinfo +++ b/comms/qt5-serialbus/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915429 -SHA256 (KDE/Qt/5.15.11/kde-qtserialbus-5.15.11p0.tar.xz) = d03381aeb7703bf7241ab66a535262971eab71774e6322e4ac8668d3bb3120fb -SIZE (KDE/Qt/5.15.11/kde-qtserialbus-5.15.11p0.tar.xz) = 333776 +TIMESTAMP = 1703809509 +SHA256 (KDE/Qt/5.15.12/kde-qtserialbus-5.15.12p0.tar.xz) = 408494515dd515860465ad1525c23a6f452ab220f10afb51f59dadae97a302d6 +SIZE (KDE/Qt/5.15.12/kde-qtserialbus-5.15.12p0.tar.xz) = 333780 diff --git a/comms/qt5-serialport/distinfo b/comms/qt5-serialport/distinfo index 77e88bbd3201..341ab883ae1e 100644 --- a/comms/qt5-serialport/distinfo +++ b/comms/qt5-serialport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915430 -SHA256 (KDE/Qt/5.15.11/kde-qtserialport-5.15.11p0.tar.xz) = 6b9883de3c55eb100c0b724ca6f93decdf2a76033408b27ddba963a3cad17910 -SIZE (KDE/Qt/5.15.11/kde-qtserialport-5.15.11p0.tar.xz) = 299424 +TIMESTAMP = 1703809507 +SHA256 (KDE/Qt/5.15.12/kde-qtserialport-5.15.12p0.tar.xz) = 6e46c4f422e9963f007cb8888a6272a1eef757b69f102a7e7ac0b11e942468c4 +SIZE (KDE/Qt/5.15.12/kde-qtserialport-5.15.12p0.tar.xz) = 299364 diff --git a/databases/qt5-sql/distinfo b/databases/qt5-sql/distinfo index 6824ce07c342..431476c1bbe3 100644 --- a/databases/qt5-sql/distinfo +++ b/databases/qt5-sql/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915432 -SHA256 (KDE/Qt/5.15.11/kde-qtbase-5.15.11p135.tar.xz) = 1cc7c8e5bc326a5d69e339fdceade191fdd6a94423c82514e24a00ca134014f4 -SIZE (KDE/Qt/5.15.11/kde-qtbase-5.15.11p135.tar.xz) = 50365656 +TIMESTAMP = 1703809474 +SHA256 (KDE/Qt/5.15.12/kde-qtbase-5.15.12p148.tar.xz) = bca3c00f7bf842b3ee7c8c3c89ec369c3fb25cfc24bf705c6d1f6ce7e2882c5f +SIZE (KDE/Qt/5.15.12/kde-qtbase-5.15.12p148.tar.xz) = 50366532 diff --git a/databases/qt5-sqldrivers-ibase/distinfo b/databases/qt5-sqldrivers-ibase/distinfo index 99c793dd9209..6cc502568e38 100644 --- a/databases/qt5-sqldrivers-ibase/distinfo +++ b/databases/qt5-sqldrivers-ibase/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1694024995 -SHA256 (KDE/Qt/5.15.10/kde-qtbase-5.15.10p155.tar.xz) = cfcd353f53d6cbd7059fc3df3f9b76503b85aed3a524149c340a34c876b24368 -SIZE (KDE/Qt/5.15.10/kde-qtbase-5.15.10p155.tar.xz) = 50202948 +TIMESTAMP = 1703841889 +SHA256 (KDE/Qt/5.15.12/kde-qtbase-5.15.12p148.tar.xz) = bca3c00f7bf842b3ee7c8c3c89ec369c3fb25cfc24bf705c6d1f6ce7e2882c5f +SIZE (KDE/Qt/5.15.12/kde-qtbase-5.15.12p148.tar.xz) = 50366532 diff --git a/databases/qt5-sqldrivers-mysql/distinfo b/databases/qt5-sqldrivers-mysql/distinfo index 44e6179ad701..10bc5a25fe2e 100644 --- a/databases/qt5-sqldrivers-mysql/distinfo +++ b/databases/qt5-sqldrivers-mysql/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915434 -SHA256 (KDE/Qt/5.15.11/kde-qtbase-5.15.11p135.tar.xz) = 1cc7c8e5bc326a5d69e339fdceade191fdd6a94423c82514e24a00ca134014f4 -SIZE (KDE/Qt/5.15.11/kde-qtbase-5.15.11p135.tar.xz) = 50365656 +TIMESTAMP = 1703809481 +SHA256 (KDE/Qt/5.15.12/kde-qtbase-5.15.12p148.tar.xz) = bca3c00f7bf842b3ee7c8c3c89ec369c3fb25cfc24bf705c6d1f6ce7e2882c5f +SIZE (KDE/Qt/5.15.12/kde-qtbase-5.15.12p148.tar.xz) = 50366532 diff --git a/databases/qt5-sqldrivers-odbc/distinfo b/databases/qt5-sqldrivers-odbc/distinfo index 8f3aa54ebabc..f9c30b09fb28 100644 --- a/databases/qt5-sqldrivers-odbc/distinfo +++ b/databases/qt5-sqldrivers-odbc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915435 -SHA256 (KDE/Qt/5.15.11/kde-qtbase-5.15.11p135.tar.xz) = 1cc7c8e5bc326a5d69e339fdceade191fdd6a94423c82514e24a00ca134014f4 -SIZE (KDE/Qt/5.15.11/kde-qtbase-5.15.11p135.tar.xz) = 50365656 +TIMESTAMP = 1703841276 +SHA256 (KDE/Qt/5.15.12/kde-qtbase-5.15.12p148.tar.xz) = bca3c00f7bf842b3ee7c8c3c89ec369c3fb25cfc24bf705c6d1f6ce7e2882c5f +SIZE (KDE/Qt/5.15.12/kde-qtbase-5.15.12p148.tar.xz) = 50366532 diff --git a/databases/qt5-sqldrivers-pgsql/distinfo b/databases/qt5-sqldrivers-pgsql/distinfo index 9161cb679cf0..7b006872a6ac 100644 --- a/databases/qt5-sqldrivers-pgsql/distinfo +++ b/databases/qt5-sqldrivers-pgsql/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915437 -SHA256 (KDE/Qt/5.15.11/kde-qtbase-5.15.11p135.tar.xz) = 1cc7c8e5bc326a5d69e339fdceade191fdd6a94423c82514e24a00ca134014f4 -SIZE (KDE/Qt/5.15.11/kde-qtbase-5.15.11p135.tar.xz) = 50365656 +TIMESTAMP = 1703841277 +SHA256 (KDE/Qt/5.15.12/kde-qtbase-5.15.12p148.tar.xz) = bca3c00f7bf842b3ee7c8c3c89ec369c3fb25cfc24bf705c6d1f6ce7e2882c5f +SIZE (KDE/Qt/5.15.12/kde-qtbase-5.15.12p148.tar.xz) = 50366532 diff --git a/databases/qt5-sqldrivers-sqlite2/distinfo b/databases/qt5-sqldrivers-sqlite2/distinfo index 1a66680ab4f3..f809584de06a 100644 --- a/databases/qt5-sqldrivers-sqlite2/distinfo +++ b/databases/qt5-sqldrivers-sqlite2/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915439 -SHA256 (KDE/Qt/5.15.11/kde-qtbase-5.15.11p135.tar.xz) = 1cc7c8e5bc326a5d69e339fdceade191fdd6a94423c82514e24a00ca134014f4 -SIZE (KDE/Qt/5.15.11/kde-qtbase-5.15.11p135.tar.xz) = 50365656 +TIMESTAMP = 1703841279 +SHA256 (KDE/Qt/5.15.12/kde-qtbase-5.15.12p148.tar.xz) = bca3c00f7bf842b3ee7c8c3c89ec369c3fb25cfc24bf705c6d1f6ce7e2882c5f +SIZE (KDE/Qt/5.15.12/kde-qtbase-5.15.12p148.tar.xz) = 50366532 diff --git a/databases/qt5-sqldrivers-sqlite3/distinfo b/databases/qt5-sqldrivers-sqlite3/distinfo index bc79804ce13a..54356b69e85a 100644 --- a/databases/qt5-sqldrivers-sqlite3/distinfo +++ b/databases/qt5-sqldrivers-sqlite3/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915440 -SHA256 (KDE/Qt/5.15.11/kde-qtbase-5.15.11p135.tar.xz) = 1cc7c8e5bc326a5d69e339fdceade191fdd6a94423c82514e24a00ca134014f4 -SIZE (KDE/Qt/5.15.11/kde-qtbase-5.15.11p135.tar.xz) = 50365656 +TIMESTAMP = 1703809479 +SHA256 (KDE/Qt/5.15.12/kde-qtbase-5.15.12p148.tar.xz) = bca3c00f7bf842b3ee7c8c3c89ec369c3fb25cfc24bf705c6d1f6ce7e2882c5f +SIZE (KDE/Qt/5.15.12/kde-qtbase-5.15.12p148.tar.xz) = 50366532 diff --git a/databases/qt5-sqldrivers-tds/distinfo b/databases/qt5-sqldrivers-tds/distinfo index 6c9d1160c1e2..e07725062760 100644 --- a/databases/qt5-sqldrivers-tds/distinfo +++ b/databases/qt5-sqldrivers-tds/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915442 -SHA256 (KDE/Qt/5.15.11/kde-qtbase-5.15.11p135.tar.xz) = 1cc7c8e5bc326a5d69e339fdceade191fdd6a94423c82514e24a00ca134014f4 -SIZE (KDE/Qt/5.15.11/kde-qtbase-5.15.11p135.tar.xz) = 50365656 +TIMESTAMP = 1703841282 +SHA256 (KDE/Qt/5.15.12/kde-qtbase-5.15.12p148.tar.xz) = bca3c00f7bf842b3ee7c8c3c89ec369c3fb25cfc24bf705c6d1f6ce7e2882c5f +SIZE (KDE/Qt/5.15.12/kde-qtbase-5.15.12p148.tar.xz) = 50366532 diff --git a/devel/pyside2-tools/distinfo b/devel/pyside2-tools/distinfo index a8708e3bc34c..18178c164dde 100644 --- a/devel/pyside2-tools/distinfo +++ b/devel/pyside2-tools/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1697240873 -SHA256 (pyside-setup-opensource-src-5.15.11.tar.xz) = da567cd3b7854d27a0b4afe3e89de8b2f98b7a6d57393be56f1fc13f770faf29 -SIZE (pyside-setup-opensource-src-5.15.11.tar.xz) = 3584760 +TIMESTAMP = 1703885634 +SHA256 (pyside-setup-opensource-src-5.15.12.tar.xz) = 9c53a111ca5779064593e690db0da43ce0d5dad25369931b7a4f593886259ff4 +SIZE (pyside-setup-opensource-src-5.15.12.tar.xz) = 3585204 diff --git a/devel/pyside2/distinfo b/devel/pyside2/distinfo index f5fb83d962e7..807adc1b9571 100644 --- a/devel/pyside2/distinfo +++ b/devel/pyside2/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1697240980 -SHA256 (pyside-setup-opensource-src-5.15.11.tar.xz) = da567cd3b7854d27a0b4afe3e89de8b2f98b7a6d57393be56f1fc13f770faf29 -SIZE (pyside-setup-opensource-src-5.15.11.tar.xz) = 3584760 +TIMESTAMP = 1703882377 +SHA256 (pyside-setup-opensource-src-5.15.12.tar.xz) = 9c53a111ca5779064593e690db0da43ce0d5dad25369931b7a4f593886259ff4 +SIZE (pyside-setup-opensource-src-5.15.12.tar.xz) = 3585204 diff --git a/devel/qt5-assistant/distinfo b/devel/qt5-assistant/distinfo index 13e52a5facff..7277f93fd1ae 100644 --- a/devel/qt5-assistant/distinfo +++ b/devel/qt5-assistant/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915443 -SHA256 (KDE/Qt/5.15.11/kde-qttools-5.15.11p3.tar.xz) = d9c0a1d55fd9eb1775573969ca101e37fd374f34d133b131ab0493ede917afb8 -SIZE (KDE/Qt/5.15.11/kde-qttools-5.15.11p3.tar.xz) = 8845864 +TIMESTAMP = 1703809492 +SHA256 (KDE/Qt/5.15.12/kde-qttools-5.15.12p4.tar.xz) = 1786e2bc40586429f2cd5581cb307d728c770125e08c08949bfa3f659e916b0c +SIZE (KDE/Qt/5.15.12/kde-qttools-5.15.12p4.tar.xz) = 8844464 diff --git a/devel/qt5-buildtools/distinfo b/devel/qt5-buildtools/distinfo index 06d071500065..d37cc2cb962f 100644 --- a/devel/qt5-buildtools/distinfo +++ b/devel/qt5-buildtools/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915445 -SHA256 (KDE/Qt/5.15.11/kde-qtbase-5.15.11p135.tar.xz) = 1cc7c8e5bc326a5d69e339fdceade191fdd6a94423c82514e24a00ca134014f4 -SIZE (KDE/Qt/5.15.11/kde-qtbase-5.15.11p135.tar.xz) = 50365656 +TIMESTAMP = 1703809648 +SHA256 (KDE/Qt/5.15.12/kde-qtbase-5.15.12p148.tar.xz) = bca3c00f7bf842b3ee7c8c3c89ec369c3fb25cfc24bf705c6d1f6ce7e2882c5f +SIZE (KDE/Qt/5.15.12/kde-qtbase-5.15.12p148.tar.xz) = 50366532 diff --git a/devel/qt5-concurrent/distinfo b/devel/qt5-concurrent/distinfo index 24f283b6ef74..d5c892f4ea23 100644 --- a/devel/qt5-concurrent/distinfo +++ b/devel/qt5-concurrent/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915447 -SHA256 (KDE/Qt/5.15.11/kde-qtbase-5.15.11p135.tar.xz) = 1cc7c8e5bc326a5d69e339fdceade191fdd6a94423c82514e24a00ca134014f4 -SIZE (KDE/Qt/5.15.11/kde-qtbase-5.15.11p135.tar.xz) = 50365656 +TIMESTAMP = 1703809465 +SHA256 (KDE/Qt/5.15.12/kde-qtbase-5.15.12p148.tar.xz) = bca3c00f7bf842b3ee7c8c3c89ec369c3fb25cfc24bf705c6d1f6ce7e2882c5f +SIZE (KDE/Qt/5.15.12/kde-qtbase-5.15.12p148.tar.xz) = 50366532 diff --git a/devel/qt5-core/Makefile b/devel/qt5-core/Makefile index 6e67d92fb3e6..44d583eb278f 100644 --- a/devel/qt5-core/Makefile +++ b/devel/qt5-core/Makefile @@ -1,81 +1,80 @@ PORTNAME= core PORTVERSION= ${QT5_VERSION}${QT5_KDE_PATCH} -PORTREVISION= 1 CATEGORIES= devel PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt core non-graphical module LIB_DEPENDS= libdouble-conversion.so:devel/double-conversion \ libicui18n.so:devel/icu \ libpcre2-posix.so:devel/pcre2 \ libzstd.so:archivers/zstd USES= compiler:c++11-lang gnome perl5 qmake:no_env qt-dist:5,base USE_GNOME= glib20 USE_PERL5= extract USE_QT= qmake:build buildtools:build HAS_CONFIGURE= yes # Disable (almost) everything to install minimal qconfig.h. # -no-feature-* adds QT_NO_* (for features which have no switch or # that need to be detected). CONFIGURE_ARGS= -no-accessibility -no-gif -no-libpng -no-libjpeg \ -no-openssl -no-gui -no-widgets -no-cups \ -no-iconv -no-dbus -no-opengl \ -no-egl -no-evdev \ -no-fontconfig -no-freetype -no-gtk -no-harfbuzz \ -no-libudev -no-xcb -no-xcb-xlib \ -no-xkbcommon -no-libinput USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} BUILD_WRKSRC= ${WRKSRC}/src/corelib INSTALL_WRKSRC= ${BUILD_WRKSRC} QT_BINARIES= yes QT_DEFINES= GLIB QT_CONFIG= glib icu MORE_WRKSRCS= src/tools/bootstrap src/corelib src/tools/qlalr .include # FreeBSD base gained an os-release in r354922, but that does not exist # always (see Synth bug 191, or PR 255354). Be a little more forgiving: # assume sufficiently recent base "will have it", and check otherwise # because 12.2 does, others like 12.1 do not have it. .if !exists(/etc/rc.d/os-release) && (${OSVERSION} < 1300060) RUN_DEPENDS+= etc_os-release>0:sysutils/etc_os-release post-patch: ${REINPLACE_CMD} -e '/readEtcFile/s|/etc/os-release|${LOCALBASE}/etc/os-release|g' \ ${WRKSRC}/src/corelib/global/qglobal.cpp .endif post-configure: .for d in ${MORE_WRKSRCS} ${MKDIR} ${WRKSRC}/${d} cd ${WRKSRC}/${d} && ${SETENV} ${QMAKE_ENV} ${_QMAKE} ${QMAKE_ARGS} ${WRKSRC}/${d} .endfor pre-build: .for d in ${MORE_WRKSRCS} ${MKDIR} ${WRKSRC}/${d} cd ${WRKSRC}/${d} && \ ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} \ ${_MAKE_JOBS} ${MAKE_ARGS} ${ALL_TARGET} .endfor post-install: # Allow qconfig.h to be customized by single ports. ${AWK} 'BEGIN{print "#include "}{print}' \ ${STAGEDIR}${PREFIX}/${QT_INCDIR_REL}/QtCore/qconfig.h > ${WRKDIR}/qconfig.h # Manually install qlalr cd ${WRKSRC}/src/tools/qlalr && \ ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} \ ${MAKE_ARGS} ${INSTALL_TARGET} # Cleanup qconfig.h and remove stray '#define QT_NO_FOO' ${REINPLACE_CMD} "/#define QT_NO_/d" ${WRKDIR}/qconfig.h ${MV} ${WRKDIR}/qconfig.h ${STAGEDIR}${PREFIX}/${QT_INCDIR_REL}/QtCore/qconfig.h .include diff --git a/devel/qt5-core/distinfo b/devel/qt5-core/distinfo index dd87761473c8..ae1683edf333 100644 --- a/devel/qt5-core/distinfo +++ b/devel/qt5-core/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915448 -SHA256 (KDE/Qt/5.15.11/kde-qtbase-5.15.11p135.tar.xz) = 1cc7c8e5bc326a5d69e339fdceade191fdd6a94423c82514e24a00ca134014f4 -SIZE (KDE/Qt/5.15.11/kde-qtbase-5.15.11p135.tar.xz) = 50365656 +TIMESTAMP = 1703809650 +SHA256 (KDE/Qt/5.15.12/kde-qtbase-5.15.12p148.tar.xz) = bca3c00f7bf842b3ee7c8c3c89ec369c3fb25cfc24bf705c6d1f6ce7e2882c5f +SIZE (KDE/Qt/5.15.12/kde-qtbase-5.15.12p148.tar.xz) = 50366532 diff --git a/devel/qt5-dbus/distinfo b/devel/qt5-dbus/distinfo index 6e37525ac9b9..5cb981dd67d8 100644 --- a/devel/qt5-dbus/distinfo +++ b/devel/qt5-dbus/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915450 -SHA256 (KDE/Qt/5.15.11/kde-qtbase-5.15.11p135.tar.xz) = 1cc7c8e5bc326a5d69e339fdceade191fdd6a94423c82514e24a00ca134014f4 -SIZE (KDE/Qt/5.15.11/kde-qtbase-5.15.11p135.tar.xz) = 50365656 +TIMESTAMP = 1703809653 +SHA256 (KDE/Qt/5.15.12/kde-qtbase-5.15.12p148.tar.xz) = bca3c00f7bf842b3ee7c8c3c89ec369c3fb25cfc24bf705c6d1f6ce7e2882c5f +SIZE (KDE/Qt/5.15.12/kde-qtbase-5.15.12p148.tar.xz) = 50366532 diff --git a/devel/qt5-designer/distinfo b/devel/qt5-designer/distinfo index 74021363e108..eebf51e04098 100644 --- a/devel/qt5-designer/distinfo +++ b/devel/qt5-designer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915451 -SHA256 (KDE/Qt/5.15.11/kde-qttools-5.15.11p3.tar.xz) = d9c0a1d55fd9eb1775573969ca101e37fd374f34d133b131ab0493ede917afb8 -SIZE (KDE/Qt/5.15.11/kde-qttools-5.15.11p3.tar.xz) = 8845864 +TIMESTAMP = 1703809490 +SHA256 (KDE/Qt/5.15.12/kde-qttools-5.15.12p4.tar.xz) = 1786e2bc40586429f2cd5581cb307d728c770125e08c08949bfa3f659e916b0c +SIZE (KDE/Qt/5.15.12/kde-qttools-5.15.12p4.tar.xz) = 8844464 diff --git a/devel/qt5-help/distinfo b/devel/qt5-help/distinfo index b7f95b43c780..3e86607fa3cc 100644 --- a/devel/qt5-help/distinfo +++ b/devel/qt5-help/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915453 -SHA256 (KDE/Qt/5.15.11/kde-qttools-5.15.11p3.tar.xz) = d9c0a1d55fd9eb1775573969ca101e37fd374f34d133b131ab0493ede917afb8 -SIZE (KDE/Qt/5.15.11/kde-qttools-5.15.11p3.tar.xz) = 8845864 +TIMESTAMP = 1703809488 +SHA256 (KDE/Qt/5.15.12/kde-qttools-5.15.12p4.tar.xz) = 1786e2bc40586429f2cd5581cb307d728c770125e08c08949bfa3f659e916b0c +SIZE (KDE/Qt/5.15.12/kde-qttools-5.15.12p4.tar.xz) = 8844464 diff --git a/devel/qt5-linguist/distinfo b/devel/qt5-linguist/distinfo index 90df8d54bf5e..46ca194bc618 100644 --- a/devel/qt5-linguist/distinfo +++ b/devel/qt5-linguist/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915454 -SHA256 (KDE/Qt/5.15.11/kde-qttools-5.15.11p3.tar.xz) = d9c0a1d55fd9eb1775573969ca101e37fd374f34d133b131ab0493ede917afb8 -SIZE (KDE/Qt/5.15.11/kde-qttools-5.15.11p3.tar.xz) = 8845864 +TIMESTAMP = 1703809495 +SHA256 (KDE/Qt/5.15.12/kde-qttools-5.15.12p4.tar.xz) = 1786e2bc40586429f2cd5581cb307d728c770125e08c08949bfa3f659e916b0c +SIZE (KDE/Qt/5.15.12/kde-qttools-5.15.12p4.tar.xz) = 8844464 diff --git a/devel/qt5-linguisttools/distinfo b/devel/qt5-linguisttools/distinfo index 7a06b8b7e5f0..53186f72e624 100644 --- a/devel/qt5-linguisttools/distinfo +++ b/devel/qt5-linguisttools/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915456 -SHA256 (KDE/Qt/5.15.11/kde-qttools-5.15.11p3.tar.xz) = d9c0a1d55fd9eb1775573969ca101e37fd374f34d133b131ab0493ede917afb8 -SIZE (KDE/Qt/5.15.11/kde-qttools-5.15.11p3.tar.xz) = 8845864 +TIMESTAMP = 1703809493 +SHA256 (KDE/Qt/5.15.12/kde-qttools-5.15.12p4.tar.xz) = 1786e2bc40586429f2cd5581cb307d728c770125e08c08949bfa3f659e916b0c +SIZE (KDE/Qt/5.15.12/kde-qttools-5.15.12p4.tar.xz) = 8844464 diff --git a/devel/qt5-location/distinfo b/devel/qt5-location/distinfo index 60c0120f32d4..29e0d66d6803 100644 --- a/devel/qt5-location/distinfo +++ b/devel/qt5-location/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915457 -SHA256 (KDE/Qt/5.15.11/kde-qtlocation-5.15.11p4.tar.xz) = 5536c06f459b25f9012f0ccdabc5477672775a2c5fb237074c1ed3cb58417560 -SIZE (KDE/Qt/5.15.11/kde-qtlocation-5.15.11p4.tar.xz) = 6476688 +TIMESTAMP = 1703809511 +SHA256 (KDE/Qt/5.15.12/kde-qtlocation-5.15.12p6.tar.xz) = 648f7f114ca029125ecf2bbf3be5fa138e4a38ba533c8f3f06ff1f9fc2784fbb +SIZE (KDE/Qt/5.15.12/kde-qtlocation-5.15.12p6.tar.xz) = 6477604 diff --git a/devel/qt5-location/pkg-plist b/devel/qt5-location/pkg-plist index 4db56139292f..3698410d16b9 100644 --- a/devel/qt5-location/pkg-plist +++ b/devel/qt5-location/pkg-plist @@ -1,372 +1,376 @@ %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/error_messages_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/locationvaluetypehelper_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qabstractgeotilecache_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qcache3q_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativecategory_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativecirclemapitem_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativecirclemapitem_p_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativecontactdetail_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativegeocodemodel_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativegeomaneuver_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativegeomap_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativegeomapcopyrightsnotice_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativegeomapitembase_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativegeomapitemgroup_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativegeomapitemtransitionmanager_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativegeomapitemutils_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativegeomapitemview_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativegeomapparameter_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativegeomapquickitem_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativegeomaptype_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativegeoroute_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativegeoroutemodel_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativegeoroutesegment_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativegeoserviceprovider_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativenavigator_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativenavigator_p_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativeperiod_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativeplace_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativeplaceattribute_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativeplacecontentmodel_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativeplaceeditorialmodel_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativeplaceicon_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativeplaceimagemodel_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativeplaceuser_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativepolygonmapitem_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativepolygonmapitem_p_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativepolylinemapitem_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativepolylinemapitem_p_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativeratings_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativerectanglemapitem_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativerectanglemapitem_p_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativereviewmodel_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativeroutemapitem_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativesearchmodelbase_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativesearchresultmodel_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativesearchsuggestionmodel_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativesupplier_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qdeclarativesupportedcategoriesmodel_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeocameracapabilities_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeocameradata_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeocameratiles_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeocameratiles_p_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeocodereply_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeocodingmanager_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeocodingmanagerengine_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeofiletilecache_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeojson_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeomaneuver_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeomap_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeomap_p_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeomapitemgeometry_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeomapobject_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeomapobject_p_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeomapobjectqsgsupport_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeomapparameter_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeomappingmanager_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeomappingmanager_p_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeomappingmanagerengine_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeomappingmanagerengine_p_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeomaptype_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeomaptype_p_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeoprojection_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeoroute_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeorouteparser_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeorouteparser_p_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeorouteparserosrmv4_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeorouteparserosrmv5_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeoroutereply_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeorouterequest_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeoroutesegment_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeoroutingmanager_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeoroutingmanagerengine_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeoserviceprovider_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeosimplify_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeotiledmap_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeotiledmap_p_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeotiledmaplabs_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeotiledmappingmanagerengine_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeotiledmappingmanagerengine_p_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeotiledmapreply_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeotiledmapreply_p_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeotiledmapscene_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeotiledmapscene_p_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeotilefetcher_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeotilefetcher_p_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeotilerequestmanager_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeotilespec_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qgeotilespec_p_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qlocationglobal_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qmapcircleobject_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qmapcircleobject_p_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qmapcircleobjectqsg_p_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qmapiconobject_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qmapiconobject_p_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qmapiconobjectqsg_p_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qmapobjectview_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qmapobjectview_p_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qmappolygonobject_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qmappolygonobject_p_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qmappolygonobjectqsg_p_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qmappolylineobject_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qmappolylineobject_p_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qmappolylineobjectqsg_p_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qmaprouteobject_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qmaprouteobject_p_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qmaprouteobjectqsg_p_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qnavigationmanager_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qnavigationmanagerengine_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qparameterizableobject_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qplace_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qplaceattribute_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qplacecategory_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qplacecontactdetail_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qplacecontent_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qplacecontentrequest_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qplaceeditorial_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qplaceicon_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qplaceimage_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qplacemanagerengine_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qplaceproposedsearchresult_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qplaceratings_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qplacereply_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qplaceresult_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qplacereview_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qplacesearchrequest_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qplacesearchresult_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qplacesupplier_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qplaceuser_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qqsgmapobject_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qquickgeomapgesturearea_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/qtlocation-config_p.h %%QT_INCDIR%%/QtLocation/%%FULLVER%%/QtLocation/private/unsupportedreplies_p.h %%QT_INCDIR%%/QtLocation/QGeoCodeReply %%QT_INCDIR%%/QtLocation/QGeoCodingManager %%QT_INCDIR%%/QtLocation/QGeoCodingManagerEngine %%QT_INCDIR%%/QtLocation/QGeoManeuver %%QT_INCDIR%%/QtLocation/QGeoRoute %%QT_INCDIR%%/QtLocation/QGeoRouteLeg %%QT_INCDIR%%/QtLocation/QGeoRouteReply %%QT_INCDIR%%/QtLocation/QGeoRouteRequest %%QT_INCDIR%%/QtLocation/QGeoRouteSegment %%QT_INCDIR%%/QtLocation/QGeoRoutingManager %%QT_INCDIR%%/QtLocation/QGeoRoutingManagerEngine %%QT_INCDIR%%/QtLocation/QGeoServiceProvider %%QT_INCDIR%%/QtLocation/QGeoServiceProviderFactory %%QT_INCDIR%%/QtLocation/QLocation %%QT_INCDIR%%/QtLocation/QPlace %%QT_INCDIR%%/QtLocation/QPlaceAttribute %%QT_INCDIR%%/QtLocation/QPlaceCategory %%QT_INCDIR%%/QtLocation/QPlaceContactDetail %%QT_INCDIR%%/QtLocation/QPlaceContent %%QT_INCDIR%%/QtLocation/QPlaceContentReply %%QT_INCDIR%%/QtLocation/QPlaceContentRequest %%QT_INCDIR%%/QtLocation/QPlaceDetailsReply %%QT_INCDIR%%/QtLocation/QPlaceEditorial %%QT_INCDIR%%/QtLocation/QPlaceIcon %%QT_INCDIR%%/QtLocation/QPlaceIdReply %%QT_INCDIR%%/QtLocation/QPlaceImage %%QT_INCDIR%%/QtLocation/QPlaceManager %%QT_INCDIR%%/QtLocation/QPlaceManagerEngine %%QT_INCDIR%%/QtLocation/QPlaceMatchReply %%QT_INCDIR%%/QtLocation/QPlaceMatchRequest %%QT_INCDIR%%/QtLocation/QPlaceProposedSearchResult %%QT_INCDIR%%/QtLocation/QPlaceRatings %%QT_INCDIR%%/QtLocation/QPlaceReply %%QT_INCDIR%%/QtLocation/QPlaceResult %%QT_INCDIR%%/QtLocation/QPlaceReview %%QT_INCDIR%%/QtLocation/QPlaceSearchReply %%QT_INCDIR%%/QtLocation/QPlaceSearchRequest %%QT_INCDIR%%/QtLocation/QPlaceSearchResult %%QT_INCDIR%%/QtLocation/QPlaceSearchSuggestionReply %%QT_INCDIR%%/QtLocation/QPlaceSupplier %%QT_INCDIR%%/QtLocation/QPlaceUser %%QT_INCDIR%%/QtLocation/QtLocation %%QT_INCDIR%%/QtLocation/QtLocationDepends %%QT_INCDIR%%/QtLocation/QtLocationVersion %%QT_INCDIR%%/QtLocation/placemacro.h %%QT_INCDIR%%/QtLocation/qgeocodereply.h %%QT_INCDIR%%/QtLocation/qgeocodingmanager.h %%QT_INCDIR%%/QtLocation/qgeocodingmanagerengine.h %%QT_INCDIR%%/QtLocation/qgeomaneuver.h %%QT_INCDIR%%/QtLocation/qgeoroute.h %%QT_INCDIR%%/QtLocation/qgeoroutereply.h %%QT_INCDIR%%/QtLocation/qgeorouterequest.h %%QT_INCDIR%%/QtLocation/qgeoroutesegment.h %%QT_INCDIR%%/QtLocation/qgeoroutingmanager.h %%QT_INCDIR%%/QtLocation/qgeoroutingmanagerengine.h %%QT_INCDIR%%/QtLocation/qgeoserviceprovider.h %%QT_INCDIR%%/QtLocation/qgeoserviceproviderfactory.h %%QT_INCDIR%%/QtLocation/qlocation.h %%QT_INCDIR%%/QtLocation/qlocationglobal.h %%QT_INCDIR%%/QtLocation/qplace.h %%QT_INCDIR%%/QtLocation/qplaceattribute.h %%QT_INCDIR%%/QtLocation/qplacecategory.h %%QT_INCDIR%%/QtLocation/qplacecontactdetail.h %%QT_INCDIR%%/QtLocation/qplacecontent.h %%QT_INCDIR%%/QtLocation/qplacecontentreply.h %%QT_INCDIR%%/QtLocation/qplacecontentrequest.h %%QT_INCDIR%%/QtLocation/qplacedetailsreply.h %%QT_INCDIR%%/QtLocation/qplaceeditorial.h %%QT_INCDIR%%/QtLocation/qplaceicon.h %%QT_INCDIR%%/QtLocation/qplaceidreply.h %%QT_INCDIR%%/QtLocation/qplaceimage.h %%QT_INCDIR%%/QtLocation/qplacemanager.h %%QT_INCDIR%%/QtLocation/qplacemanagerengine.h %%QT_INCDIR%%/QtLocation/qplacematchreply.h %%QT_INCDIR%%/QtLocation/qplacematchrequest.h %%QT_INCDIR%%/QtLocation/qplaceproposedsearchresult.h %%QT_INCDIR%%/QtLocation/qplaceratings.h %%QT_INCDIR%%/QtLocation/qplacereply.h %%QT_INCDIR%%/QtLocation/qplaceresult.h %%QT_INCDIR%%/QtLocation/qplacereview.h %%QT_INCDIR%%/QtLocation/qplacesearchreply.h %%QT_INCDIR%%/QtLocation/qplacesearchrequest.h %%QT_INCDIR%%/QtLocation/qplacesearchresult.h %%QT_INCDIR%%/QtLocation/qplacesearchsuggestionreply.h %%QT_INCDIR%%/QtLocation/qplacesupplier.h %%QT_INCDIR%%/QtLocation/qplaceuser.h %%QT_INCDIR%%/QtLocation/qtlocation-config.h %%QT_INCDIR%%/QtLocation/qtlocationversion.h %%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qclipperutils_p.h %%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qdoublematrix4x4_p.h %%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qdoublevector2d_p.h %%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qdoublevector3d_p.h %%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qgeoaddress_p.h %%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qgeocircle_p.h %%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qgeocoordinate_p.h %%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qgeocoordinateobject_p.h %%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qgeolocation_p.h %%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qgeopath_p.h %%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qgeopolygon_p.h %%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qgeopositioninfo_p.h %%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qgeopositioninfosource_p.h %%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qgeorectangle_p.h %%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qgeosatelliteinfo_p.h %%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qgeosatelliteinfosource_p.h %%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qgeoshape_p.h %%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qlocationdata_simulator_p.h %%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qlocationutils_p.h %%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qnmeapositioninfosource_p.h %%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qpositioningglobal_p.h %%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qtpositioning-config_p.h %%QT_INCDIR%%/QtPositioning/%%FULLVER%%/QtPositioning/private/qwebmercator_p.h %%QT_INCDIR%%/QtPositioning/QGeoAddress %%QT_INCDIR%%/QtPositioning/QGeoAreaMonitorInfo %%QT_INCDIR%%/QtPositioning/QGeoAreaMonitorSource %%QT_INCDIR%%/QtPositioning/QGeoCircle %%QT_INCDIR%%/QtPositioning/QGeoCoordinate %%QT_INCDIR%%/QtPositioning/QGeoLocation %%QT_INCDIR%%/QtPositioning/QGeoPath %%QT_INCDIR%%/QtPositioning/QGeoPolygon %%QT_INCDIR%%/QtPositioning/QGeoPositionInfo %%QT_INCDIR%%/QtPositioning/QGeoPositionInfoSource %%QT_INCDIR%%/QtPositioning/QGeoPositionInfoSourceFactory %%QT_INCDIR%%/QtPositioning/QGeoRectangle %%QT_INCDIR%%/QtPositioning/QGeoSatelliteInfo %%QT_INCDIR%%/QtPositioning/QGeoSatelliteInfoSource %%QT_INCDIR%%/QtPositioning/QGeoShape %%QT_INCDIR%%/QtPositioning/QNmeaPositionInfoSource %%QT_INCDIR%%/QtPositioning/QtPositioning %%QT_INCDIR%%/QtPositioning/QtPositioningDepends %%QT_INCDIR%%/QtPositioning/QtPositioningVersion %%QT_INCDIR%%/QtPositioning/qgeoaddress.h %%QT_INCDIR%%/QtPositioning/qgeoareamonitorinfo.h %%QT_INCDIR%%/QtPositioning/qgeoareamonitorsource.h %%QT_INCDIR%%/QtPositioning/qgeocircle.h %%QT_INCDIR%%/QtPositioning/qgeocoordinate.h %%QT_INCDIR%%/QtPositioning/qgeolocation.h %%QT_INCDIR%%/QtPositioning/qgeopath.h %%QT_INCDIR%%/QtPositioning/qgeopolygon.h %%QT_INCDIR%%/QtPositioning/qgeopositioninfo.h %%QT_INCDIR%%/QtPositioning/qgeopositioninfosource.h %%QT_INCDIR%%/QtPositioning/qgeopositioninfosourcefactory.h %%QT_INCDIR%%/QtPositioning/qgeorectangle.h %%QT_INCDIR%%/QtPositioning/qgeosatelliteinfo.h %%QT_INCDIR%%/QtPositioning/qgeosatelliteinfosource.h %%QT_INCDIR%%/QtPositioning/qgeoshape.h %%QT_INCDIR%%/QtPositioning/qnmeapositioninfosource.h %%QT_INCDIR%%/QtPositioning/qpositioningglobal.h %%QT_INCDIR%%/QtPositioning/qtpositioning-config.h %%QT_INCDIR%%/QtPositioning/qtpositioningversion.h %%QT_INCDIR%%/QtPositioningQuick/%%FULLVER%%/QtPositioningQuick/private/qdeclarativegeoaddress_p.h %%QT_INCDIR%%/QtPositioningQuick/%%FULLVER%%/QtPositioningQuick/private/qdeclarativegeolocation_p.h %%QT_INCDIR%%/QtPositioningQuick/%%FULLVER%%/QtPositioningQuick/private/qdeclarativepluginparameter_p.h %%QT_INCDIR%%/QtPositioningQuick/%%FULLVER%%/QtPositioningQuick/private/qdeclarativeposition_p.h %%QT_INCDIR%%/QtPositioningQuick/%%FULLVER%%/QtPositioningQuick/private/qdeclarativepositionsource_p.h %%QT_INCDIR%%/QtPositioningQuick/%%FULLVER%%/QtPositioningQuick/private/qpositioningquickglobal_p.h %%QT_INCDIR%%/QtPositioningQuick/%%FULLVER%%/QtPositioningQuick/private/qquickgeocoordinateanimation_p.h %%QT_INCDIR%%/QtPositioningQuick/%%FULLVER%%/QtPositioningQuick/private/qquickgeocoordinateanimation_p_p.h %%QT_INCDIR%%/QtPositioningQuick/QtPositioningQuick %%QT_INCDIR%%/QtPositioningQuick/QtPositioningQuickDepends %%QT_INCDIR%%/QtPositioningQuick/QtPositioningQuickVersion %%QT_INCDIR%%/QtPositioningQuick/qpositioningquickglobal.h %%QT_INCDIR%%/QtPositioningQuick/qtpositioningquickversion.h %%QT_CMAKEDIR%%/Qt5Location/Qt5LocationConfig.cmake %%QT_CMAKEDIR%%/Qt5Location/Qt5LocationConfigVersion.cmake %%QT_CMAKEDIR%%/Qt5Location/Qt5Location_GeoServiceProviderFactoryEsri.cmake %%QT_CMAKEDIR%%/Qt5Location/Qt5Location_QGeoServiceProviderFactoryItemsOverlay.cmake %%QT_CMAKEDIR%%/Qt5Location/Qt5Location_QGeoServiceProviderFactoryMapbox.cmake %%QT_CMAKEDIR%%/Qt5Location/Qt5Location_QGeoServiceProviderFactoryNokia.cmake %%QT_CMAKEDIR%%/Qt5Location/Qt5Location_QGeoServiceProviderFactoryOsm.cmake %%QT_CMAKEDIR%%/Qt5Positioning/Qt5PositioningConfig.cmake %%QT_CMAKEDIR%%/Qt5Positioning/Qt5PositioningConfigVersion.cmake %%QT_CMAKEDIR%%/Qt5Positioning/Qt5Positioning_QGeoPositionInfoSourceFactoryGeoclue.cmake %%QT_CMAKEDIR%%/Qt5Positioning/Qt5Positioning_QGeoPositionInfoSourceFactoryGeoclue2.cmake %%QT_CMAKEDIR%%/Qt5Positioning/Qt5Positioning_QGeoPositionInfoSourceFactoryPoll.cmake %%QT_CMAKEDIR%%/Qt5Positioning/Qt5Positioning_QGeoPositionInfoSourceFactorySerialNmea.cmake %%QT_CMAKEDIR%%/Qt5PositioningQuick/Qt5PositioningQuickConfig.cmake %%QT_CMAKEDIR%%/Qt5PositioningQuick/Qt5PositioningQuickConfigVersion.cmake %%QT_LIBDIR%%/libQt5Location.prl %%QT_LIBDIR%%/libQt5Location.so %%QT_LIBDIR%%/libQt5Location.so.5 %%QT_LIBDIR%%/libQt5Location.so.%%SHORTVER%% %%QT_LIBDIR%%/libQt5Location.so.%%FULLVER%% %%DEBUG%%%%QT_LIBDIR%%/libQt5Location.so.%%FULLVER%%.debug %%QT_LIBDIR%%/libQt5Positioning.prl %%QT_LIBDIR%%/libQt5Positioning.so %%QT_LIBDIR%%/libQt5Positioning.so.5 %%QT_LIBDIR%%/libQt5Positioning.so.%%SHORTVER%% %%QT_LIBDIR%%/libQt5Positioning.so.%%FULLVER%% %%DEBUG%%%%QT_LIBDIR%%/libQt5Positioning.so.%%FULLVER%%.debug %%QT_LIBDIR%%/libQt5PositioningQuick.prl %%QT_LIBDIR%%/libQt5PositioningQuick.so %%QT_LIBDIR%%/libQt5PositioningQuick.so.5 %%QT_LIBDIR%%/libQt5PositioningQuick.so.%%SHORTVER%% %%QT_LIBDIR%%/libQt5PositioningQuick.so.%%FULLVER%% %%DEBUG%%%%QT_LIBDIR%%/libQt5PositioningQuick.so.%%FULLVER%%.debug %%QT_MKSPECDIR%%/modules/qt_lib_location.pri %%QT_MKSPECDIR%%/modules/qt_lib_location_private.pri %%QT_MKSPECDIR%%/modules/qt_lib_positioning.pri %%QT_MKSPECDIR%%/modules/qt_lib_positioning_private.pri %%QT_MKSPECDIR%%/modules/qt_lib_positioningquick.pri %%QT_MKSPECDIR%%/modules/qt_lib_positioningquick_private.pri %%QT_PLUGINDIR%%/geoservices/libqtgeoservices_esri.so %%DEBUG%%%%QT_PLUGINDIR%%/geoservices/libqtgeoservices_esri.so.debug %%QT_PLUGINDIR%%/geoservices/libqtgeoservices_itemsoverlay.so %%DEBUG%%%%QT_PLUGINDIR%%/geoservices/libqtgeoservices_itemsoverlay.so.debug %%QT_PLUGINDIR%%/geoservices/libqtgeoservices_mapbox.so %%DEBUG%%%%QT_PLUGINDIR%%/geoservices/libqtgeoservices_mapbox.so.debug %%QT_PLUGINDIR%%/geoservices/libqtgeoservices_nokia.so %%DEBUG%%%%QT_PLUGINDIR%%/geoservices/libqtgeoservices_nokia.so.debug %%QT_PLUGINDIR%%/geoservices/libqtgeoservices_osm.so %%DEBUG%%%%QT_PLUGINDIR%%/geoservices/libqtgeoservices_osm.so.debug %%QT_PLUGINDIR%%/position/libqtposition_geoclue.so %%DEBUG%%%%QT_PLUGINDIR%%/position/libqtposition_geoclue.so.debug %%QT_PLUGINDIR%%/position/libqtposition_geoclue2.so %%DEBUG%%%%QT_PLUGINDIR%%/position/libqtposition_geoclue2.so.debug %%QT_PLUGINDIR%%/position/libqtposition_positionpoll.so %%DEBUG%%%%QT_PLUGINDIR%%/position/libqtposition_positionpoll.so.debug %%QT_PLUGINDIR%%/position/libqtposition_serialnmea.so %%DEBUG%%%%QT_PLUGINDIR%%/position/libqtposition_serialnmea.so.debug +%%QT_QMLDIR%%/Qt/labs/location/liblocationlabsplugin.so +%%DEBUG%%%%QT_QMLDIR%%/Qt/labs/location/liblocationlabsplugin.so.debug +%%QT_QMLDIR%%/Qt/labs/location/plugins.qmltypes +%%QT_QMLDIR%%/Qt/labs/location/qmldir %%QT_QMLDIR%%/QtLocation/libdeclarative_location.so %%DEBUG%%%%QT_QMLDIR%%/QtLocation/libdeclarative_location.so.debug %%QT_QMLDIR%%/QtLocation/plugins.qmltypes %%QT_QMLDIR%%/QtLocation/qmldir %%QT_QMLDIR%%/QtPositioning/libdeclarative_positioning.so %%DEBUG%%%%QT_QMLDIR%%/QtPositioning/libdeclarative_positioning.so.debug %%QT_QMLDIR%%/QtPositioning/plugins.qmltypes %%QT_QMLDIR%%/QtPositioning/qmldir libdata/pkgconfig/Qt5Location.pc libdata/pkgconfig/Qt5Positioning.pc libdata/pkgconfig/Qt5PositioningQuick.pc diff --git a/devel/qt5-qdbus/distinfo b/devel/qt5-qdbus/distinfo index 7397e988ea14..82fab429a4bc 100644 --- a/devel/qt5-qdbus/distinfo +++ b/devel/qt5-qdbus/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915459 -SHA256 (KDE/Qt/5.15.11/kde-qttools-5.15.11p3.tar.xz) = d9c0a1d55fd9eb1775573969ca101e37fd374f34d133b131ab0493ede917afb8 -SIZE (KDE/Qt/5.15.11/kde-qttools-5.15.11p3.tar.xz) = 8845864 +TIMESTAMP = 1703809498 +SHA256 (KDE/Qt/5.15.12/kde-qttools-5.15.12p4.tar.xz) = 1786e2bc40586429f2cd5581cb307d728c770125e08c08949bfa3f659e916b0c +SIZE (KDE/Qt/5.15.12/kde-qttools-5.15.12p4.tar.xz) = 8844464 diff --git a/devel/qt5-qdbusviewer/distinfo b/devel/qt5-qdbusviewer/distinfo index 05c09df083a5..60d0f42e1e6f 100644 --- a/devel/qt5-qdbusviewer/distinfo +++ b/devel/qt5-qdbusviewer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915460 -SHA256 (KDE/Qt/5.15.11/kde-qttools-5.15.11p3.tar.xz) = d9c0a1d55fd9eb1775573969ca101e37fd374f34d133b131ab0493ede917afb8 -SIZE (KDE/Qt/5.15.11/kde-qttools-5.15.11p3.tar.xz) = 8845864 +TIMESTAMP = 1703841302 +SHA256 (KDE/Qt/5.15.12/kde-qttools-5.15.12p4.tar.xz) = 1786e2bc40586429f2cd5581cb307d728c770125e08c08949bfa3f659e916b0c +SIZE (KDE/Qt/5.15.12/kde-qttools-5.15.12p4.tar.xz) = 8844464 diff --git a/devel/qt5-qdoc-data/distinfo b/devel/qt5-qdoc-data/distinfo index bbd7b6cf1602..f7fc2ffd521e 100644 --- a/devel/qt5-qdoc-data/distinfo +++ b/devel/qt5-qdoc-data/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915483 -SHA256 (KDE/Qt/5.15.11/qtbase-everywhere-opensource-src-5.15.11.tar.xz) = 425ad301acd91ca66c10c0dabee0704e2d0cd2801a6b670115800cbb95f84846 -SIZE (KDE/Qt/5.15.11/qtbase-everywhere-opensource-src-5.15.11.tar.xz) = 50825756 +TIMESTAMP = 1703840875 +SHA256 (KDE/Qt/5.15.12/qtbase-everywhere-opensource-src-5.15.12.tar.xz) = 4c01b7b0f1f3c1e05ae6bf53c66e49c65c6b3872475bac26b0fb228136914af0 +SIZE (KDE/Qt/5.15.12/qtbase-everywhere-opensource-src-5.15.12.tar.xz) = 50840192 diff --git a/devel/qt5-qdoc/distinfo b/devel/qt5-qdoc/distinfo index c5733b5c444c..d32ea9de1f88 100644 --- a/devel/qt5-qdoc/distinfo +++ b/devel/qt5-qdoc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915484 -SHA256 (KDE/Qt/5.15.11/kde-qttools-5.15.11p3.tar.xz) = d9c0a1d55fd9eb1775573969ca101e37fd374f34d133b131ab0493ede917afb8 -SIZE (KDE/Qt/5.15.11/kde-qttools-5.15.11p3.tar.xz) = 8845864 +TIMESTAMP = 1703840809 +SHA256 (KDE/Qt/5.15.12/kde-qttools-5.15.12p4.tar.xz) = 1786e2bc40586429f2cd5581cb307d728c770125e08c08949bfa3f659e916b0c +SIZE (KDE/Qt/5.15.12/kde-qttools-5.15.12p4.tar.xz) = 8844464 diff --git a/devel/qt5-qmake/distinfo b/devel/qt5-qmake/distinfo index 19ab4d3b50f0..9aba089a7fd3 100644 --- a/devel/qt5-qmake/distinfo +++ b/devel/qt5-qmake/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915486 -SHA256 (KDE/Qt/5.15.11/kde-qtbase-5.15.11p135.tar.xz) = 1cc7c8e5bc326a5d69e339fdceade191fdd6a94423c82514e24a00ca134014f4 -SIZE (KDE/Qt/5.15.11/kde-qtbase-5.15.11p135.tar.xz) = 50365656 +TIMESTAMP = 1703809647 +SHA256 (KDE/Qt/5.15.12/kde-qtbase-5.15.12p148.tar.xz) = bca3c00f7bf842b3ee7c8c3c89ec369c3fb25cfc24bf705c6d1f6ce7e2882c5f +SIZE (KDE/Qt/5.15.12/kde-qtbase-5.15.12p148.tar.xz) = 50366532 diff --git a/devel/qt5-remoteobjects/distinfo b/devel/qt5-remoteobjects/distinfo index ed2269893f0c..453bceb77b26 100644 --- a/devel/qt5-remoteobjects/distinfo +++ b/devel/qt5-remoteobjects/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915487 -SHA256 (KDE/Qt/5.15.11/kde-qtremoteobjects-5.15.11p0.tar.xz) = b37cd72de74197106f8b83d4a3b4085d6b132fc2a63d99ecdefca74e2e10707c -SIZE (KDE/Qt/5.15.11/kde-qtremoteobjects-5.15.11p0.tar.xz) = 352476 +TIMESTAMP = 1703809513 +SHA256 (KDE/Qt/5.15.12/kde-qtremoteobjects-5.15.12p0.tar.xz) = 3f209fc085caa2d01e0b660362d3649af66695564312b6f5dc1a670ff7fd37c4 +SIZE (KDE/Qt/5.15.12/kde-qtremoteobjects-5.15.12p0.tar.xz) = 352436 diff --git a/devel/qt5-script/Makefile b/devel/qt5-script/Makefile index 8454e5172ae0..cd8e2cddefbc 100644 --- a/devel/qt5-script/Makefile +++ b/devel/qt5-script/Makefile @@ -1,28 +1,29 @@ PORTNAME= script PORTVERSION= ${QT5_VERSION}${QT5_KDE_PATCH} +PORTREVISION= 1 CATEGORIES= devel PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt 4-compatible scripting module USES= compiler:c++11-lang perl5 qmake qt-dist:5,script USE_PERL5= extract USE_QT= core buildtools:build # Keep make(1) from descending into src/script/obj/ (qmake:outsource # doesn't work). MAKE_ENV= MAKEOBJDIR=. # Source version from qt-dist.mk QT5_VERSION= ${_KDE_script_VERSION} post-patch: @${REINPLACE_CMD} -e '/scripttools/ d' \ ${WRKSRC}/src/src.pro # Fix version mismatches for CMake post-configure: @${REINPLACE_CMD} -e '/${QT5_VERSION} $${_Qt5Script_FIND_VERSION_EXACT}/s|${QT5_VERSION}|'"$$(${MAKE} -C ../qt5-core -VQT5_VERSION)"'|' \ ${WRKSRC}/lib/cmake/Qt5Script/Qt5ScriptConfig.cmake .include diff --git a/devel/qt5-scripttools/Makefile b/devel/qt5-scripttools/Makefile index a9dec4b9e764..4512408c1d84 100644 --- a/devel/qt5-scripttools/Makefile +++ b/devel/qt5-scripttools/Makefile @@ -1,27 +1,28 @@ PORTNAME= scripttools PORTVERSION= ${QT5_VERSION}${QT5_KDE_PATCH} +PORTREVISION= 1 CATEGORIES= devel PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt Script additional components USES= compiler:c++11-lang perl5 qmake qt-dist:5,script USE_PERL5= build USE_QT= core gui script widgets buildtools:build BUILD_WRKSRC= ${WRKSRC}/src/${PORTNAME} INSTALL_WRKSRC= ${WRKSRC}/src/${PORTNAME} # Source version from qt-dist.mk QT5_VERSION= ${_KDE_script_VERSION} # Link in QtScript port _QT5_ADDITIONAL_LINK= script # Fix version mismatches for CMake post-configure: @${REINPLACE_CMD} -e '/${QT5_VERSION} $${_Qt5ScriptTools_FIND_VERSION_EXACT}/s|${QT5_VERSION}|'"$$(${MAKE} -C ../qt5-core -VQT5_VERSION)"'|' \ ${WRKSRC}/lib/cmake/Qt5ScriptTools/Qt5ScriptToolsConfig.cmake .include diff --git a/devel/qt5-scxml/distinfo b/devel/qt5-scxml/distinfo index 996214b696c9..9b70c835b690 100644 --- a/devel/qt5-scxml/distinfo +++ b/devel/qt5-scxml/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915489 -SHA256 (KDE/Qt/5.15.11/kde-qtscxml-5.15.11p0.tar.xz) = f18c59dae3bc3f5e8acb39d272e8b4310002841e5e1b1f36c6efecfcaafc9ec4 -SIZE (KDE/Qt/5.15.11/kde-qtscxml-5.15.11p0.tar.xz) = 409152 +TIMESTAMP = 1703809514 +SHA256 (KDE/Qt/5.15.12/kde-qtscxml-5.15.12p0.tar.xz) = 2bb04c33ad95632e48a8c9492b48e99dc11a815c48ed56b0d82fb0dc3163f974 +SIZE (KDE/Qt/5.15.12/kde-qtscxml-5.15.12p0.tar.xz) = 409156 diff --git a/devel/qt5-testlib/distinfo b/devel/qt5-testlib/distinfo index a58f8200a0b5..df62dfe407e6 100644 --- a/devel/qt5-testlib/distinfo +++ b/devel/qt5-testlib/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915491 -SHA256 (KDE/Qt/5.15.11/kde-qtbase-5.15.11p135.tar.xz) = 1cc7c8e5bc326a5d69e339fdceade191fdd6a94423c82514e24a00ca134014f4 -SIZE (KDE/Qt/5.15.11/kde-qtbase-5.15.11p135.tar.xz) = 50365656 +TIMESTAMP = 1703809467 +SHA256 (KDE/Qt/5.15.12/kde-qtbase-5.15.12p148.tar.xz) = bca3c00f7bf842b3ee7c8c3c89ec369c3fb25cfc24bf705c6d1f6ce7e2882c5f +SIZE (KDE/Qt/5.15.12/kde-qtbase-5.15.12p148.tar.xz) = 50366532 diff --git a/devel/qt5-uitools/distinfo b/devel/qt5-uitools/distinfo index c199ca733240..d0da77d96d01 100644 --- a/devel/qt5-uitools/distinfo +++ b/devel/qt5-uitools/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915492 -SHA256 (KDE/Qt/5.15.11/kde-qttools-5.15.11p3.tar.xz) = d9c0a1d55fd9eb1775573969ca101e37fd374f34d133b131ab0493ede917afb8 -SIZE (KDE/Qt/5.15.11/kde-qttools-5.15.11p3.tar.xz) = 8845864 +TIMESTAMP = 1703809487 +SHA256 (KDE/Qt/5.15.12/kde-qttools-5.15.12p4.tar.xz) = 1786e2bc40586429f2cd5581cb307d728c770125e08c08949bfa3f659e916b0c +SIZE (KDE/Qt/5.15.12/kde-qttools-5.15.12p4.tar.xz) = 8844464 diff --git a/devel/shiboken2/distinfo b/devel/shiboken2/distinfo index a126d1b2b8f6..86f560a12c75 100644 --- a/devel/shiboken2/distinfo +++ b/devel/shiboken2/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1697240433 -SHA256 (pyside-setup-opensource-src-5.15.11.tar.xz) = da567cd3b7854d27a0b4afe3e89de8b2f98b7a6d57393be56f1fc13f770faf29 -SIZE (pyside-setup-opensource-src-5.15.11.tar.xz) = 3584760 +TIMESTAMP = 1703882362 +SHA256 (pyside-setup-opensource-src-5.15.12.tar.xz) = 9c53a111ca5779064593e690db0da43ce0d5dad25369931b7a4f593886259ff4 +SIZE (pyside-setup-opensource-src-5.15.12.tar.xz) = 3585204 diff --git a/graphics/qt5-3d/distinfo b/graphics/qt5-3d/distinfo index c043737cd3de..2d1c49aac8d8 100644 --- a/graphics/qt5-3d/distinfo +++ b/graphics/qt5-3d/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915494 -SHA256 (KDE/Qt/5.15.11/kde-qt3d-5.15.11p0.tar.xz) = 00121cf4553cd2ed6c397c17e6af78667e2a3318e63a90cf1de9a58e2ccfeac2 -SIZE (KDE/Qt/5.15.11/kde-qt3d-5.15.11p0.tar.xz) = 118176052 +TIMESTAMP = 1703809516 +SHA256 (KDE/Qt/5.15.12/kde-qt3d-5.15.12p0.tar.xz) = 61956654dc03b825c64aeae03336414d34a3bf3a36b1c27b54f1bd26517e78a6 +SIZE (KDE/Qt/5.15.12/kde-qt3d-5.15.12p0.tar.xz) = 118199508 diff --git a/graphics/qt5-graphicaleffects/distinfo b/graphics/qt5-graphicaleffects/distinfo index 23941f89c2f2..71e8ce3bc558 100644 --- a/graphics/qt5-graphicaleffects/distinfo +++ b/graphics/qt5-graphicaleffects/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915496 -SHA256 (KDE/Qt/5.15.11/kde-qtgraphicaleffects-5.15.11p0.tar.xz) = 3bb956f113bf35880c10b7b4bba6b788f7290242f6653658810ab6c76bae869f -SIZE (KDE/Qt/5.15.11/kde-qtgraphicaleffects-5.15.11p0.tar.xz) = 14018796 +TIMESTAMP = 1703809518 +SHA256 (KDE/Qt/5.15.12/kde-qtgraphicaleffects-5.15.12p0.tar.xz) = 4328935b2baba386fbe544c412b585fefe9beaedca6ea15bd302721615ce14d7 +SIZE (KDE/Qt/5.15.12/kde-qtgraphicaleffects-5.15.12p0.tar.xz) = 14018708 diff --git a/graphics/qt5-imageformats/distinfo b/graphics/qt5-imageformats/distinfo index 4b6f8a5b2a53..e08d155b63c8 100644 --- a/graphics/qt5-imageformats/distinfo +++ b/graphics/qt5-imageformats/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915497 -SHA256 (KDE/Qt/5.15.11/kde-qtimageformats-5.15.11p12.tar.xz) = 324ec4ba670066ff14855eb7a1b267d542de9ae195935f1d5938eb4fe705467a -SIZE (KDE/Qt/5.15.11/kde-qtimageformats-5.15.11p12.tar.xz) = 1872176 +TIMESTAMP = 1703809519 +SHA256 (KDE/Qt/5.15.12/kde-qtimageformats-5.15.12p12.tar.xz) = 2a9cf714a8a48c71b41bfb45686ce307ff6cb8f5d943c9c5d5bc8f21eecbf33d +SIZE (KDE/Qt/5.15.12/kde-qtimageformats-5.15.12p12.tar.xz) = 1876684 diff --git a/graphics/qt5-opengl/distinfo b/graphics/qt5-opengl/distinfo index a8b9619edf53..48024e43efce 100644 --- a/graphics/qt5-opengl/distinfo +++ b/graphics/qt5-opengl/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915499 -SHA256 (KDE/Qt/5.15.11/kde-qtbase-5.15.11p135.tar.xz) = 1cc7c8e5bc326a5d69e339fdceade191fdd6a94423c82514e24a00ca134014f4 -SIZE (KDE/Qt/5.15.11/kde-qtbase-5.15.11p135.tar.xz) = 50365656 +TIMESTAMP = 1703809499 +SHA256 (KDE/Qt/5.15.12/kde-qtbase-5.15.12p148.tar.xz) = bca3c00f7bf842b3ee7c8c3c89ec369c3fb25cfc24bf705c6d1f6ce7e2882c5f +SIZE (KDE/Qt/5.15.12/kde-qtbase-5.15.12p148.tar.xz) = 50366532 diff --git a/graphics/qt5-pixeltool/distinfo b/graphics/qt5-pixeltool/distinfo index c05dc90c71c4..f8e00da78981 100644 --- a/graphics/qt5-pixeltool/distinfo +++ b/graphics/qt5-pixeltool/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915500 -SHA256 (KDE/Qt/5.15.11/kde-qttools-5.15.11p3.tar.xz) = d9c0a1d55fd9eb1775573969ca101e37fd374f34d133b131ab0493ede917afb8 -SIZE (KDE/Qt/5.15.11/kde-qttools-5.15.11p3.tar.xz) = 8845864 +TIMESTAMP = 1703809521 +SHA256 (KDE/Qt/5.15.12/kde-qttools-5.15.12p4.tar.xz) = 1786e2bc40586429f2cd5581cb307d728c770125e08c08949bfa3f659e916b0c +SIZE (KDE/Qt/5.15.12/kde-qttools-5.15.12p4.tar.xz) = 8844464 diff --git a/graphics/qt5-svg/distinfo b/graphics/qt5-svg/distinfo index 7d2337e93e4b..2d2c71e403a0 100644 --- a/graphics/qt5-svg/distinfo +++ b/graphics/qt5-svg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915502 -SHA256 (KDE/Qt/5.15.11/kde-qtsvg-5.15.11p6.tar.xz) = 6ae7f20c8fd7a318a4cf957383d4b601bf5eedd894f3e9f5df7b45058780e7d8 -SIZE (KDE/Qt/5.15.11/kde-qtsvg-5.15.11p6.tar.xz) = 1865320 +TIMESTAMP = 1703809477 +SHA256 (KDE/Qt/5.15.12/kde-qtsvg-5.15.12p6.tar.xz) = 6f35c873f21e31aa895a6583969ec72fd759f5d34b2878b43914dbf3d0519363 +SIZE (KDE/Qt/5.15.12/kde-qtsvg-5.15.12p6.tar.xz) = 1865368 diff --git a/graphics/qt5-wayland/distinfo b/graphics/qt5-wayland/distinfo index 3ff49b5ef09c..47f2d0a59d5e 100644 --- a/graphics/qt5-wayland/distinfo +++ b/graphics/qt5-wayland/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915503 -SHA256 (KDE/Qt/5.15.11/kde-qtwayland-5.15.11p59.tar.xz) = 5e5bf73338c2dbcf85c10c92a3f17f13ca2e709f59b0912563fff8b30aecb06c -SIZE (KDE/Qt/5.15.11/kde-qtwayland-5.15.11p59.tar.xz) = 538192 +TIMESTAMP = 1703809522 +SHA256 (KDE/Qt/5.15.12/kde-qtwayland-5.15.12p60.tar.xz) = 31108e496caa885c6c39f4d84c37166d9330ddbf88c79afe562ecc0d3f0a7ac0 +SIZE (KDE/Qt/5.15.12/kde-qtwayland-5.15.12p60.tar.xz) = 538284 diff --git a/misc/qt5-examples/distinfo b/misc/qt5-examples/distinfo index 45514dcdc8d1..0f5c6a937d25 100644 --- a/misc/qt5-examples/distinfo +++ b/misc/qt5-examples/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915783 -SHA256 (KDE/Qt/5.15.11/qt-everywhere-opensource-src-5.15.11.tar.xz) = 7426b1eaab52ed169ce53804bdd05dfe364f761468f888a0f15a308dc1dc2951 -SIZE (KDE/Qt/5.15.11/qt-everywhere-opensource-src-5.15.11.tar.xz) = 660295928 +TIMESTAMP = 1703840992 +SHA256 (KDE/Qt/5.15.12/qt-everywhere-opensource-src-5.15.12.tar.xz) = 93f2c0889ee2e9cdf30c170d353c3f829de5f29ba21c119167dee5995e48ccce +SIZE (KDE/Qt/5.15.12/qt-everywhere-opensource-src-5.15.12.tar.xz) = 660649996 diff --git a/misc/qt5-l10n/distinfo b/misc/qt5-l10n/distinfo index c27f6b947b2d..11a5b07912b4 100644 --- a/misc/qt5-l10n/distinfo +++ b/misc/qt5-l10n/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915783 -SHA256 (KDE/Qt/5.15.11/kde-qttranslations-5.15.11p0.tar.xz) = 271e7127e7dc70b63ac5567257f4dfa3be8881389292d4168641173120c051be -SIZE (KDE/Qt/5.15.11/kde-qttranslations-5.15.11p0.tar.xz) = 1610864 +TIMESTAMP = 1703809503 +SHA256 (KDE/Qt/5.15.12/kde-qttranslations-5.15.12p0.tar.xz) = 00b24c93f2e965c47ae5df5f0c523605501379571754434643075cf10bbd3746 +SIZE (KDE/Qt/5.15.12/kde-qttranslations-5.15.12p0.tar.xz) = 1610860 diff --git a/multimedia/qt5-multimedia/distinfo b/multimedia/qt5-multimedia/distinfo index e73e6d10fb67..9078f2424ced 100644 --- a/multimedia/qt5-multimedia/distinfo +++ b/multimedia/qt5-multimedia/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915785 -SHA256 (KDE/Qt/5.15.11/kde-qtmultimedia-5.15.11p2.tar.xz) = 4ebf468b6251e27a3b21a08112e4f333535085fa6c10d2d9eaaa4d14089eeab7 -SIZE (KDE/Qt/5.15.11/kde-qtmultimedia-5.15.11p2.tar.xz) = 3789860 +TIMESTAMP = 1703809501 +SHA256 (KDE/Qt/5.15.12/kde-qtmultimedia-5.15.12p2.tar.xz) = 69c4d903b038e44daec0bd03c2c318858e7ae4e3985f9c4d231817f5e6832ce6 +SIZE (KDE/Qt/5.15.12/kde-qtmultimedia-5.15.12p2.tar.xz) = 3788896 diff --git a/net/qt5-network/distinfo b/net/qt5-network/distinfo index ac0b69e616a3..fe7534db9127 100644 --- a/net/qt5-network/distinfo +++ b/net/qt5-network/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915787 -SHA256 (KDE/Qt/5.15.11/kde-qtbase-5.15.11p135.tar.xz) = 1cc7c8e5bc326a5d69e339fdceade191fdd6a94423c82514e24a00ca134014f4 -SIZE (KDE/Qt/5.15.11/kde-qtbase-5.15.11p135.tar.xz) = 50365656 +TIMESTAMP = 1703809652 +SHA256 (KDE/Qt/5.15.12/kde-qtbase-5.15.12p148.tar.xz) = bca3c00f7bf842b3ee7c8c3c89ec369c3fb25cfc24bf705c6d1f6ce7e2882c5f +SIZE (KDE/Qt/5.15.12/kde-qtbase-5.15.12p148.tar.xz) = 50366532 diff --git a/net/qt5-networkauth/distinfo b/net/qt5-networkauth/distinfo index 0cbd1db24857..91b02fea90bf 100644 --- a/net/qt5-networkauth/distinfo +++ b/net/qt5-networkauth/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915788 -SHA256 (KDE/Qt/5.15.11/kde-qtnetworkauth-5.15.11p0.tar.xz) = 8aa45f4aba3c7e9868c5cb1d29b06c0dfa248a2851e98118180103ae953f2362 -SIZE (KDE/Qt/5.15.11/kde-qtnetworkauth-5.15.11p0.tar.xz) = 119840 +TIMESTAMP = 1703809504 +SHA256 (KDE/Qt/5.15.12/kde-qtnetworkauth-5.15.12p0.tar.xz) = 36c143525b7b72546703c6055fbdf6cc109aa87b5b73dba19361630e2b8ad581 +SIZE (KDE/Qt/5.15.12/kde-qtnetworkauth-5.15.12p0.tar.xz) = 120012 diff --git a/print/qt5-printsupport/distinfo b/print/qt5-printsupport/distinfo index 697fdb63a298..7cc7e61a2be9 100644 --- a/print/qt5-printsupport/distinfo +++ b/print/qt5-printsupport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915790 -SHA256 (KDE/Qt/5.15.11/kde-qtbase-5.15.11p135.tar.xz) = 1cc7c8e5bc326a5d69e339fdceade191fdd6a94423c82514e24a00ca134014f4 -SIZE (KDE/Qt/5.15.11/kde-qtbase-5.15.11p135.tar.xz) = 50365656 +TIMESTAMP = 1703809472 +SHA256 (KDE/Qt/5.15.12/kde-qtbase-5.15.12p148.tar.xz) = bca3c00f7bf842b3ee7c8c3c89ec369c3fb25cfc24bf705c6d1f6ce7e2882c5f +SIZE (KDE/Qt/5.15.12/kde-qtbase-5.15.12p148.tar.xz) = 50366532 diff --git a/sysutils/qt5-qtdiag/distinfo b/sysutils/qt5-qtdiag/distinfo index 335cdc7754ae..bc754ce2c9cf 100644 --- a/sysutils/qt5-qtdiag/distinfo +++ b/sysutils/qt5-qtdiag/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915791 -SHA256 (KDE/Qt/5.15.11/kde-qttools-5.15.11p3.tar.xz) = d9c0a1d55fd9eb1775573969ca101e37fd374f34d133b131ab0493ede917afb8 -SIZE (KDE/Qt/5.15.11/kde-qttools-5.15.11p3.tar.xz) = 8845864 +TIMESTAMP = 1703841356 +SHA256 (KDE/Qt/5.15.12/kde-qttools-5.15.12p4.tar.xz) = 1786e2bc40586429f2cd5581cb307d728c770125e08c08949bfa3f659e916b0c +SIZE (KDE/Qt/5.15.12/kde-qttools-5.15.12p4.tar.xz) = 8844464 diff --git a/sysutils/qt5-qtpaths/distinfo b/sysutils/qt5-qtpaths/distinfo index d51da7e5896a..f369a93d5ed5 100644 --- a/sysutils/qt5-qtpaths/distinfo +++ b/sysutils/qt5-qtpaths/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915793 -SHA256 (KDE/Qt/5.15.11/kde-qttools-5.15.11p3.tar.xz) = d9c0a1d55fd9eb1775573969ca101e37fd374f34d133b131ab0493ede917afb8 -SIZE (KDE/Qt/5.15.11/kde-qttools-5.15.11p3.tar.xz) = 8845864 +TIMESTAMP = 1703809524 +SHA256 (KDE/Qt/5.15.12/kde-qttools-5.15.12p4.tar.xz) = 1786e2bc40586429f2cd5581cb307d728c770125e08c08949bfa3f659e916b0c +SIZE (KDE/Qt/5.15.12/kde-qttools-5.15.12p4.tar.xz) = 8844464 diff --git a/sysutils/qt5-qtplugininfo/distinfo b/sysutils/qt5-qtplugininfo/distinfo index d4df216d64a5..3a33797a445f 100644 --- a/sysutils/qt5-qtplugininfo/distinfo +++ b/sysutils/qt5-qtplugininfo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915794 -SHA256 (KDE/Qt/5.15.11/kde-qttools-5.15.11p3.tar.xz) = d9c0a1d55fd9eb1775573969ca101e37fd374f34d133b131ab0493ede917afb8 -SIZE (KDE/Qt/5.15.11/kde-qttools-5.15.11p3.tar.xz) = 8845864 +TIMESTAMP = 1703841359 +SHA256 (KDE/Qt/5.15.12/kde-qttools-5.15.12p4.tar.xz) = 1786e2bc40586429f2cd5581cb307d728c770125e08c08949bfa3f659e916b0c +SIZE (KDE/Qt/5.15.12/kde-qttools-5.15.12p4.tar.xz) = 8844464 diff --git a/textproc/qt5-xml/distinfo b/textproc/qt5-xml/distinfo index a4fa8af5735a..7163ce129a97 100644 --- a/textproc/qt5-xml/distinfo +++ b/textproc/qt5-xml/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915796 -SHA256 (KDE/Qt/5.15.11/kde-qtbase-5.15.11p135.tar.xz) = 1cc7c8e5bc326a5d69e339fdceade191fdd6a94423c82514e24a00ca134014f4 -SIZE (KDE/Qt/5.15.11/kde-qtbase-5.15.11p135.tar.xz) = 50365656 +TIMESTAMP = 1703809483 +SHA256 (KDE/Qt/5.15.12/kde-qtbase-5.15.12p148.tar.xz) = bca3c00f7bf842b3ee7c8c3c89ec369c3fb25cfc24bf705c6d1f6ce7e2882c5f +SIZE (KDE/Qt/5.15.12/kde-qtbase-5.15.12p148.tar.xz) = 50366532 diff --git a/textproc/qt5-xmlpatterns/distinfo b/textproc/qt5-xmlpatterns/distinfo index 4f7c774bed55..be313bb347e4 100644 --- a/textproc/qt5-xmlpatterns/distinfo +++ b/textproc/qt5-xmlpatterns/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915797 -SHA256 (KDE/Qt/5.15.11/kde-qtxmlpatterns-5.15.11p0.tar.xz) = bbdb028d103046a0b221465aec58e9765c3ee34988ad3bf85a4558039a5f0ea9 -SIZE (KDE/Qt/5.15.11/kde-qtxmlpatterns-5.15.11p0.tar.xz) = 5098500 +TIMESTAMP = 1703809484 +SHA256 (KDE/Qt/5.15.12/kde-qtxmlpatterns-5.15.12p0.tar.xz) = c5f08e672ea200230eff68a84ce7738d53eb2c5bbd194041a4ab29006086da9c +SIZE (KDE/Qt/5.15.12/kde-qtxmlpatterns-5.15.12p0.tar.xz) = 5100640 diff --git a/www/qt5-webchannel/distinfo b/www/qt5-webchannel/distinfo index b41d84f4dcd8..0d7631438bb8 100644 --- a/www/qt5-webchannel/distinfo +++ b/www/qt5-webchannel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915798 -SHA256 (KDE/Qt/5.15.11/kde-qtwebchannel-5.15.11p3.tar.xz) = 1f3f8695ad1f138e52437c0959d1f28ba8996b8eeb943dd669dd08c61d8eae35 -SIZE (KDE/Qt/5.15.11/kde-qtwebchannel-5.15.11p3.tar.xz) = 188520 +TIMESTAMP = 1703809539 +SHA256 (KDE/Qt/5.15.12/kde-qtwebchannel-5.15.12p3.tar.xz) = 376af944d4dbf4c67154257d541f526d858044cacafef8e665e47a84b72d826e +SIZE (KDE/Qt/5.15.12/kde-qtwebchannel-5.15.12p3.tar.xz) = 188660 diff --git a/www/qt5-webengine/Makefile b/www/qt5-webengine/Makefile index 0f2fbe833971..f7ac3d51ee88 100644 --- a/www/qt5-webengine/Makefile +++ b/www/qt5-webengine/Makefile @@ -1,178 +1,179 @@ # QtWebEngine itself is a very thin layer of Qt code on top of a large part of # Chromium (everything up to the content/ layer). As such, most of the work in # this port revolves around taming Chromium and getting it to build on FreeBSD. # While it does build at the moment, there are several items that should be # investigated or improved: # - We are using several stub files, especially in Chromium's base/ and net/ # layers. We should look at implementing the missing bits instead. # - We are currently not using any sandboxing mechanism. # - We need to see if more "use_system_" flags can be passed. # - The process of porting QtWebEngine needs to be documented so we can move to # newer releases more easily. # # Also note that, due to the insane amount of patches this port needs, it tends # to lag behind the rest of the official Qt5 ones, which is why we set # QT5_VERSION and DISTINFO_FILE here. # In order to successfully build this port in poudriere you need to add # MAX_FILES_qt5_webengine=4096 to /usr/local/etc/poudriere.conf PORTNAME= webengine DISTVERSION= ${QT5_VERSION}${QT5_KDE_PATCH} +PORTREVISION= 1 CATEGORIES= www PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt 5 library to render web content BUILD_DEPENDS= bison:devel/bison \ ${LOCALBASE}/include/linux/input.h:devel/evdev-proto \ ${LOCALBASE}/include/linux/videodev2.h:multimedia/v4l_compat LIB_DEPENDS= libavcodec.so:multimedia/ffmpeg \ libdbus-1.so:devel/dbus \ libdouble-conversion.so:devel/double-conversion \ libevent.so:devel/libevent \ libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 \ libharfbuzz.so:print/harfbuzz \ libjsoncpp.so:devel/jsoncpp \ liblcms2.so:graphics/lcms2 \ libnspr4.so:devel/nspr \ libnss3.so:security/nss \ libopenh264.so:multimedia/openh264 \ libopus.so:audio/opus \ libpci.so:devel/libpci \ libpng.so:graphics/png \ libre2.so:devel/re2 \ libsnappy.so:archivers/snappy \ libvpx.so:multimedia/libvpx \ libwebp.so:graphics/webp DISTINFO_FILE= ${.CURDIR}/distinfo QT5_VERSION= ${_KDE_webengine_VERSION} # Add extra-patch-no-mempcpy-nasm only when there's no mempcpy() in base. # Nested variable expansion avoids executing the test when not needed for # expanding EXTRA_PATCHES. # mempcpy was introduced in ee37f64cf875255338f917a9da76c643cf59786c EXTRA_PATCHES+= ${"${:!${GREP} mempcpy ${CROSS_SYSROOT}/usr/include/string.h \ || ${TRUE}!}" == "":?${PATCHDIR}/extra-patch-no-mempcpy-nasm:} OPTIONS_SINGLE= AUDIO OPTIONS_SINGLE_AUDIO= ALSA PULSEAUDIO SNDIO OPTIONS_DEFAULT= ALSA AUDIO_DESC= Audio backend # Need the alsa plugins to get sound at runtime, otherwise messages # that the pcm_oss plugin can't be opened. ALSA_LIB_DEPENDS= libasound.so:audio/alsa-lib ALSA_RUN_DEPENDS= alsa-plugins>=0:audio/alsa-plugins ALSA_VARS= QMAKE_CONFIGURE_ARGS+=-alsa ALSA_VARS_OFF= QMAKE_CONFIGURE_ARGS+=-no-alsa PULSEAUDIO_LIB_DEPENDS= libpulse.so:audio/pulseaudio PULSEAUDIO_VARS= QMAKE_CONFIGURE_ARGS+=-pulseaudio PULSEAUDIO_VARS_OFF= QMAKE_CONFIGURE_ARGS+=-no-pulseaudio SNDIO_LIB_DEPENDS= libsndio.so:audio/sndio SNDIO_VARS= QMAKE_CONFIGURE_ARGS+=-sndio SNDIO_VARS_OFF= QMAKE_CONFIGURE_ARGS+=-no-sndio # We pass `norecursive' to USES=qmake because src/plugins/plugins.pro checks # whether webenginewidgets is available, which fails when qmake processes all # .pro files at once. USES= gl gnome gperf jpeg minizip ninja:build nodejs:build,lts \ perl5 pkgconfig python:build qmake:norecursive,outsource \ qt-dist:5,webengine shebangfix xorg USE_GL= gl USE_GNOME= glib20 libxml2 libxslt USE_PERL5= build USE_QT= core declarative gui location network printsupport \ webchannel widgets \ buildtools:build designer:build qmake:build USE_XORG= x11 xcb xcomposite xcursor xdamage xext xfixes xi xkbfile \ xorgproto xrandr xrender xscrnsaver xtst QMAKE_CONFIGURE_ARGS= -proprietary-codecs -system-ffmpeg # We could just set it to an empty string as well. "all" does not account for # dependencies correctly in the generated Makefiles, use the right target here. ALL_TARGET= first # We need ar(1) from ports because the Chromium code uses the @file syntax. # We then need to ensure ld(1) from ports is used because of the archives ar(1) # generated. USE_BINUTILS= yes CC+= "-B${LOCALBASE}/bin" CXX+= "-B${LOCALBASE}/bin" # The build system reads the environment variable $NINJA_PATH to decide whether # to boostrap ninja or not (and also to invoke it afterwards). CC and CXX are # read by some Chromium code to determine which compiler to invoke when running # some configuration tests. # Since we use USES=qmake:norecursive, we also need to pass some variables to # MAKE_ENV because part of the configuration process happens during the build. CONFIGURE_ENV+= NINJAFLAGS="-j${MAKE_JOBS_NUMBER}" \ NINJA_PATH="${LOCALBASE}/bin/ninja" \ PATH=${CONFIGURE_WRKSRC}/bin:${LOCALBASE}/bin:${PATH} MAKE_ENV+= CC="${CC}" CXX="${CXX}" \ C_INCLUDE_PATH=${LOCALBASE}/include \ CPLUS_INCLUDE_PATH=${LOCALBASE}/include \ ${CONFIGURE_ENV} QT_BINARIES= yes .include .if ${ARCH:Mmips*} || ${ARCH:Mpowerpc*} || ${ARCH} == sparc64 PLIST_SUB+= BE="" LE="@comment " .else PLIST_SUB+= BE="@comment " LE="" .endif post-extract: # Install FreeBSD's freebsd.pri file. ${CP} ${FILESDIR}/freebsd.pri ${WRKSRC}/src/buildtools/config/freebsd.pri post-extract-SNDIO-on: @cd ${WRKSRC}/src/3rdparty/chromium/media/audio && ${MKDIR} sndio openbsd @${CP} ${FILESDIR}/sndio_*put.* \ ${WRKSRC}/src/3rdparty/chromium/media/audio/sndio @${CP} ${FILESDIR}/audio_manager_openbsd.* \ ${WRKSRC}/src/3rdparty/chromium/media/audio/openbsd post-patch: @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|' \ ${WRKSRC}/src/3rdparty/chromium/base/linux_util.cc \ ${WRKSRC}/src/3rdparty/chromium/base/test/BUILD.gn \ ${WRKSRC}/src/3rdparty/chromium/build/toolchain/gcc_toolchain.gni \ ${WRKSRC}/src/3rdparty/chromium/chrome/common/chrome_paths.cc \ ${WRKSRC}/src/3rdparty/chromium/third_party/pdfium/core/fxge/fx_ge_linux.cpp \ ${WRKSRC}/src/3rdparty/gn/build/gen.py @${REINPLACE_CMD} -E -e 's|^(MODULE_VERSION = ).*|\1${QT5_VERSION}|' \ ${WRKSRC}/.qmake.conf .if ${ARCH:Mmips*} || ${ARCH:Mpowerpc*} || ${ARCH} == sparc64 @${REINPLACE_CMD} -e 's/icudtl.dat/icudtb.dat/' \ ${WRKSRC}/src/core/core_module.pro .endif pre-configure: # Link in ${PYTHON_CMD} to ${CONFIGURE_WRKSRC}/bin -- the scripts hardcode 'python' # in too many places to reasonably patch. So just link in ${PYTHON_CMD} to work around # $LOCALBASE/bin/python being python3 if the default versions is set to 3.x. ${MKDIR} ${CONFIGURE_WRKSRC}/bin && ${LN} -s ${PYTHON_CMD} ${CONFIGURE_WRKSRC}/bin/python # Unbundle a few dependencies. cd ${WRKSRC}/src/3rdparty/chromium && ${SETENV} ${CONFIGURE_ENV} ${PYTHON_CMD} \ ./build/linux/unbundle/replace_gn_files.py --system-libraries\ fontconfig freetype harfbuzz-ng libdrm libevent libpng libwebp libxml libxslt openh264 opus || ${FALSE} # Rerun syncqt.pl -- otherwise the resulting package misses some forwarding headers. cd ${WRKSRC} && ${QT_BINDIR}/syncqt.pl -version ${QT5_VERSION} post-build: # Fix version mismatches for CMake .for module in Pdf PdfWidgets WebEngine WebEngineCore WebEngineWidgets @${REINPLACE_CMD} -e '/${QT5_VERSION} $${_Qt5${module}_FIND_VERSION_EXACT}/s|${QT5_VERSION}|'"$$(${MAKE} -C ../../devel/qt5-core -VQT5_VERSION)"'|' \ ${BUILD_WRKSRC}/lib/cmake/Qt5${module}/Qt5${module}Config.cmake .endfor .include diff --git a/www/qt5-webglplugin/distinfo b/www/qt5-webglplugin/distinfo index f0dda9e70b04..9dc4f6b1e68b 100644 --- a/www/qt5-webglplugin/distinfo +++ b/www/qt5-webglplugin/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915800 -SHA256 (KDE/Qt/5.15.11/kde-qtwebglplugin-5.15.11p0.tar.xz) = 101623296d63b9c90267017f725fb01495bfb2a60896a594833bdf96479a7dda -SIZE (KDE/Qt/5.15.11/kde-qtwebglplugin-5.15.11p0.tar.xz) = 53660 +TIMESTAMP = 1703809540 +SHA256 (KDE/Qt/5.15.12/kde-qtwebglplugin-5.15.12p0.tar.xz) = b8954afcf846388a2480160e9363f14fcbd79ffe463ee74ad3697e49bcd0e309 +SIZE (KDE/Qt/5.15.12/kde-qtwebglplugin-5.15.12p0.tar.xz) = 53672 diff --git a/www/qt5-websockets-qml/distinfo b/www/qt5-websockets-qml/distinfo index a447bc04f4cc..ea2e23e9a53b 100644 --- a/www/qt5-websockets-qml/distinfo +++ b/www/qt5-websockets-qml/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915801 -SHA256 (KDE/Qt/5.15.11/kde-qtwebsockets-5.15.11p2.tar.xz) = 32eae2478e4774fbb2aa3f97c28e59ab9c04a4cf12833598317761df2f142003 -SIZE (KDE/Qt/5.15.11/kde-qtwebsockets-5.15.11p2.tar.xz) = 237136 +TIMESTAMP = 1703841366 +SHA256 (KDE/Qt/5.15.12/kde-qtwebsockets-5.15.12p2.tar.xz) = 37be6dac24eaaa58ac9995fbbb29209e8ce949f4a7cfede734cd176c5aa24515 +SIZE (KDE/Qt/5.15.12/kde-qtwebsockets-5.15.12p2.tar.xz) = 237092 diff --git a/www/qt5-websockets/distinfo b/www/qt5-websockets/distinfo index 17a868e32212..93331e441235 100644 --- a/www/qt5-websockets/distinfo +++ b/www/qt5-websockets/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915803 -SHA256 (KDE/Qt/5.15.11/kde-qtwebsockets-5.15.11p2.tar.xz) = 32eae2478e4774fbb2aa3f97c28e59ab9c04a4cf12833598317761df2f142003 -SIZE (KDE/Qt/5.15.11/kde-qtwebsockets-5.15.11p2.tar.xz) = 237136 +TIMESTAMP = 1703809537 +SHA256 (KDE/Qt/5.15.12/kde-qtwebsockets-5.15.12p2.tar.xz) = 37be6dac24eaaa58ac9995fbbb29209e8ce949f4a7cfede734cd176c5aa24515 +SIZE (KDE/Qt/5.15.12/kde-qtwebsockets-5.15.12p2.tar.xz) = 237092 diff --git a/www/qt5-webview/distinfo b/www/qt5-webview/distinfo index 256a22c9b82b..d8a8ac8d03f8 100644 --- a/www/qt5-webview/distinfo +++ b/www/qt5-webview/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915804 -SHA256 (KDE/Qt/5.15.11/kde-qtwebview-5.15.11p0.tar.xz) = 982e13c85a510855bfbd4eef2734e4b882e099c4eaf9728f83bbc9a98815f353 -SIZE (KDE/Qt/5.15.11/kde-qtwebview-5.15.11p0.tar.xz) = 112544 +TIMESTAMP = 1703809542 +SHA256 (KDE/Qt/5.15.12/kde-qtwebview-5.15.12p0.tar.xz) = d762c6445ce02129a7e7caee03429976d85b5136895de3f1e26c1ac751ab32c1 +SIZE (KDE/Qt/5.15.12/kde-qtwebview-5.15.12p0.tar.xz) = 112556 diff --git a/x11-toolkits/qt5-charts/distinfo b/x11-toolkits/qt5-charts/distinfo index fa4cddd8d65d..e8cf2bc8db94 100644 --- a/x11-toolkits/qt5-charts/distinfo +++ b/x11-toolkits/qt5-charts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915806 -SHA256 (KDE/Qt/5.15.11/kde-qtcharts-5.15.11p0.tar.xz) = 8ea6bf1b2fb1dd36c35741674adb03dec3589e95a1e7f758607c5880f2d408c2 -SIZE (KDE/Qt/5.15.11/kde-qtcharts-5.15.11p0.tar.xz) = 4219000 +TIMESTAMP = 1703809525 +SHA256 (KDE/Qt/5.15.12/kde-qtcharts-5.15.12p0.tar.xz) = faca1b943016c8a46bcc202a230fd172fda3c4199a1e22850f2e9efc63030202 +SIZE (KDE/Qt/5.15.12/kde-qtcharts-5.15.12p0.tar.xz) = 4219108 diff --git a/x11-toolkits/qt5-datavis3d/distinfo b/x11-toolkits/qt5-datavis3d/distinfo index 3e339aa9339d..8e28f829df00 100644 --- a/x11-toolkits/qt5-datavis3d/distinfo +++ b/x11-toolkits/qt5-datavis3d/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915807 -SHA256 (KDE/Qt/5.15.11/kde-qtdatavis3d-5.15.11p0.tar.xz) = b2a8d328db37d22b65346ecd544cf01bf17121d7f50bd9434bb132452a9db34e -SIZE (KDE/Qt/5.15.11/kde-qtdatavis3d-5.15.11p0.tar.xz) = 5159856 +TIMESTAMP = 1703809527 +SHA256 (KDE/Qt/5.15.12/kde-qtdatavis3d-5.15.12p0.tar.xz) = fea5491328d45b5013038e38d965c3492d6f6657c33e04ed81de409c328c0a74 +SIZE (KDE/Qt/5.15.12/kde-qtdatavis3d-5.15.12p0.tar.xz) = 5159804 diff --git a/x11-toolkits/qt5-declarative-test/distinfo b/x11-toolkits/qt5-declarative-test/distinfo index 52a42000758c..31f8c9630268 100644 --- a/x11-toolkits/qt5-declarative-test/distinfo +++ b/x11-toolkits/qt5-declarative-test/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915809 -SHA256 (KDE/Qt/5.15.11/kde-qtdeclarative-5.15.11p30.tar.xz) = 7a4e54536d00a3ede8078787a6d2a9031aad20b6a282ba3c208b7fef915df489 -SIZE (KDE/Qt/5.15.11/kde-qtdeclarative-5.15.11p30.tar.xz) = 21384624 +TIMESTAMP = 1703809496 +SHA256 (KDE/Qt/5.15.12/kde-qtdeclarative-5.15.12p32.tar.xz) = 5ab2a8cd15b43c2f333a9ff9d59c6a511b2616a3644238017f35cc217a83ead0 +SIZE (KDE/Qt/5.15.12/kde-qtdeclarative-5.15.12p32.tar.xz) = 21385552 diff --git a/x11-toolkits/qt5-declarative/distinfo b/x11-toolkits/qt5-declarative/distinfo index 3df0aae8f338..418e2bde586a 100644 --- a/x11-toolkits/qt5-declarative/distinfo +++ b/x11-toolkits/qt5-declarative/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915810 -SHA256 (KDE/Qt/5.15.11/kde-qtdeclarative-5.15.11p30.tar.xz) = 7a4e54536d00a3ede8078787a6d2a9031aad20b6a282ba3c208b7fef915df489 -SIZE (KDE/Qt/5.15.11/kde-qtdeclarative-5.15.11p30.tar.xz) = 21384624 +TIMESTAMP = 1703809476 +SHA256 (KDE/Qt/5.15.12/kde-qtdeclarative-5.15.12p32.tar.xz) = 5ab2a8cd15b43c2f333a9ff9d59c6a511b2616a3644238017f35cc217a83ead0 +SIZE (KDE/Qt/5.15.12/kde-qtdeclarative-5.15.12p32.tar.xz) = 21385552 diff --git a/x11-toolkits/qt5-gamepad/distinfo b/x11-toolkits/qt5-gamepad/distinfo index 267fea304fba..9cd8c919d45d 100644 --- a/x11-toolkits/qt5-gamepad/distinfo +++ b/x11-toolkits/qt5-gamepad/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915812 -SHA256 (KDE/Qt/5.15.11/kde-qtgamepad-5.15.11p0.tar.xz) = a99d8d78c8bdd46b35144a18cfdd04b553784fa0d2d765720af9f82dff16f39d -SIZE (KDE/Qt/5.15.11/kde-qtgamepad-5.15.11p0.tar.xz) = 365404 +TIMESTAMP = 1703809533 +SHA256 (KDE/Qt/5.15.12/kde-qtgamepad-5.15.12p0.tar.xz) = e8b337a9a681a5090900f053fa2779ec05d8bac5ccb4bd6bbdf4d072e39baef5 +SIZE (KDE/Qt/5.15.12/kde-qtgamepad-5.15.12p0.tar.xz) = 365452 diff --git a/x11-toolkits/qt5-gui/distinfo b/x11-toolkits/qt5-gui/distinfo index 9530c3ead3b4..8e1999b411b0 100644 --- a/x11-toolkits/qt5-gui/distinfo +++ b/x11-toolkits/qt5-gui/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915813 -SHA256 (KDE/Qt/5.15.11/kde-qtbase-5.15.11p135.tar.xz) = 1cc7c8e5bc326a5d69e339fdceade191fdd6a94423c82514e24a00ca134014f4 -SIZE (KDE/Qt/5.15.11/kde-qtbase-5.15.11p135.tar.xz) = 50365656 +TIMESTAMP = 1703809469 +SHA256 (KDE/Qt/5.15.12/kde-qtbase-5.15.12p148.tar.xz) = bca3c00f7bf842b3ee7c8c3c89ec369c3fb25cfc24bf705c6d1f6ce7e2882c5f +SIZE (KDE/Qt/5.15.12/kde-qtbase-5.15.12p148.tar.xz) = 50366532 diff --git a/x11-toolkits/qt5-gui/files/patch-src_platformsupport_input_xkbcommon_qxkbcommon.cpp b/x11-toolkits/qt5-gui/files/patch-src_platformsupport_input_xkbcommon_qxkbcommon.cpp deleted file mode 100644 index 7b6fa29aaaa0..000000000000 --- a/x11-toolkits/qt5-gui/files/patch-src_platformsupport_input_xkbcommon_qxkbcommon.cpp +++ /dev/null @@ -1,13 +0,0 @@ ---- src/platformsupport/input/xkbcommon/qxkbcommon.cpp.orig 2023-09-06 08:28:54 UTC -+++ src/platformsupport/input/xkbcommon/qxkbcommon.cpp -@@ -274,10 +274,6 @@ static constexpr const auto KeyTbl = qMakeArray( - Xkb2Qt, - Xkb2Qt, - Xkb2Qt, -- Xkb2Qt, -- Xkb2Qt, -- Xkb2Qt, -- Xkb2Qt, - - // Special keys from X.org - This include multimedia keys, - // wireless/bluetooth/uwb keys, special launcher keys, etc. diff --git a/x11-toolkits/qt5-quick3d/distinfo b/x11-toolkits/qt5-quick3d/distinfo index d1fda08a55dc..e519d9398f17 100644 --- a/x11-toolkits/qt5-quick3d/distinfo +++ b/x11-toolkits/qt5-quick3d/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915815 -SHA256 (KDE/Qt/5.15.11/kde-qtquick3d-5.15.11p1.tar.xz) = e6a88719b41ecce23143c00739a1f7edd25afadd297d17fa455c7bfd69bb2fbc -SIZE (KDE/Qt/5.15.11/kde-qtquick3d-5.15.11p1.tar.xz) = 55699720 +TIMESTAMP = 1703809531 +SHA256 (KDE/Qt/5.15.12/kde-qtquick3d-5.15.12p1.tar.xz) = cb7c4f301048c8a5366b869beeb92b21c48c2c4560c05c2cfad435240df9aed1 +SIZE (KDE/Qt/5.15.12/kde-qtquick3d-5.15.12p1.tar.xz) = 55694720 diff --git a/x11-toolkits/qt5-quickcontrols/distinfo b/x11-toolkits/qt5-quickcontrols/distinfo index 94f113091151..3ab85c6f7dcd 100644 --- a/x11-toolkits/qt5-quickcontrols/distinfo +++ b/x11-toolkits/qt5-quickcontrols/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915817 -SHA256 (KDE/Qt/5.15.11/kde-qtquickcontrols-5.15.11p0.tar.xz) = 2a83884d6a10a7ea2214040f8ba435b85de07f3355bf0cce7d1d1e4b618193bb -SIZE (KDE/Qt/5.15.11/kde-qtquickcontrols-5.15.11p0.tar.xz) = 5956904 +TIMESTAMP = 1703809528 +SHA256 (KDE/Qt/5.15.12/kde-qtquickcontrols-5.15.12p0.tar.xz) = c4eeb8ea1beb6fa74acf37568a73889f5418f39fcfe199eb54b273d7ef5b7c45 +SIZE (KDE/Qt/5.15.12/kde-qtquickcontrols-5.15.12p0.tar.xz) = 5956968 diff --git a/x11-toolkits/qt5-quickcontrols2/distinfo b/x11-toolkits/qt5-quickcontrols2/distinfo index fe436ab0a6f1..64cd3c07625a 100644 --- a/x11-toolkits/qt5-quickcontrols2/distinfo +++ b/x11-toolkits/qt5-quickcontrols2/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915818 -SHA256 (KDE/Qt/5.15.11/kde-qtquickcontrols2-5.15.11p5.tar.xz) = ad5e8e8217b540a2172d91bf7dc930778d1598b7c847af748b1a875f9e59bef4 -SIZE (KDE/Qt/5.15.11/kde-qtquickcontrols2-5.15.11p5.tar.xz) = 8249940 +TIMESTAMP = 1703809530 +SHA256 (KDE/Qt/5.15.12/kde-qtquickcontrols2-5.15.12p5.tar.xz) = 7ffdf88df7dd8cf22d48e993790ad074679a38ab8ea055d77c5fa43d865963e2 +SIZE (KDE/Qt/5.15.12/kde-qtquickcontrols2-5.15.12p5.tar.xz) = 8249944 diff --git a/x11-toolkits/qt5-quicktimeline/distinfo b/x11-toolkits/qt5-quicktimeline/distinfo index adfed58cc764..0fe1c1e68505 100644 --- a/x11-toolkits/qt5-quicktimeline/distinfo +++ b/x11-toolkits/qt5-quicktimeline/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915820 -SHA256 (KDE/Qt/5.15.11/kde-qtquicktimeline-5.15.11p0.tar.xz) = 3b8db994fb1e1d51115a5db0aca2644fa7b98cb2a72ebbfffd673471d0dcea77 -SIZE (KDE/Qt/5.15.11/kde-qtquicktimeline-5.15.11p0.tar.xz) = 82104 +TIMESTAMP = 1703841386 +SHA256 (KDE/Qt/5.15.12/kde-qtquicktimeline-5.15.12p0.tar.xz) = 59db9995660a50fd3e1f93cba2f1d906be7d3359ca7109c24d81b395307e6763 +SIZE (KDE/Qt/5.15.12/kde-qtquicktimeline-5.15.12p0.tar.xz) = 82148 diff --git a/x11-toolkits/qt5-uiplugin/distinfo b/x11-toolkits/qt5-uiplugin/distinfo index 9f626bee9b5e..09309d6a7f03 100644 --- a/x11-toolkits/qt5-uiplugin/distinfo +++ b/x11-toolkits/qt5-uiplugin/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915821 -SHA256 (KDE/Qt/5.15.11/kde-qttools-5.15.11p3.tar.xz) = d9c0a1d55fd9eb1775573969ca101e37fd374f34d133b131ab0493ede917afb8 -SIZE (KDE/Qt/5.15.11/kde-qttools-5.15.11p3.tar.xz) = 8845864 +TIMESTAMP = 1703809486 +SHA256 (KDE/Qt/5.15.12/kde-qttools-5.15.12p4.tar.xz) = 1786e2bc40586429f2cd5581cb307d728c770125e08c08949bfa3f659e916b0c +SIZE (KDE/Qt/5.15.12/kde-qttools-5.15.12p4.tar.xz) = 8844464 diff --git a/x11-toolkits/qt5-virtualkeyboard/distinfo b/x11-toolkits/qt5-virtualkeyboard/distinfo index 1266d862520c..a16adcfa22cc 100644 --- a/x11-toolkits/qt5-virtualkeyboard/distinfo +++ b/x11-toolkits/qt5-virtualkeyboard/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915823 -SHA256 (KDE/Qt/5.15.11/kde-qtvirtualkeyboard-5.15.11p0.tar.xz) = 367433acdf5711c2b381045341f88650ad5e624fedafabdfc9c97ec469ecc595 -SIZE (KDE/Qt/5.15.11/kde-qtvirtualkeyboard-5.15.11p0.tar.xz) = 10932708 +TIMESTAMP = 1703809534 +SHA256 (KDE/Qt/5.15.12/kde-qtvirtualkeyboard-5.15.12p0.tar.xz) = b768f5f1a0d709ea17b68134a96c62f599c5d6618c9c6e1bf38438a5dbaf8060 +SIZE (KDE/Qt/5.15.12/kde-qtvirtualkeyboard-5.15.12p0.tar.xz) = 10931040 diff --git a/x11-toolkits/qt5-widgets/Makefile b/x11-toolkits/qt5-widgets/Makefile index a0f6b7012b40..a22e410ea354 100644 --- a/x11-toolkits/qt5-widgets/Makefile +++ b/x11-toolkits/qt5-widgets/Makefile @@ -1,73 +1,72 @@ PORTNAME= widgets PORTVERSION= ${QT5_VERSION}${QT5_KDE_PATCH} -PORTREVISION= 1 CATEGORIES= x11-toolkits PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt C++ widgets module USES= compiler:c++11-lang perl5 qmake:no_env qt-dist:5,base xorg USE_PERL5= extract USE_QT= core gui qmake:build buildtools:build USE_XORG= x11 HAS_CONFIGURE= yes BUILD_WRKSRC= ${WRKSRC}/src/${PORTNAME} INSTALL_WRKSRC= ${BUILD_WRKSRC} MORE_WRKSRCS= src/tools/uic QT_BINARIES= yes QT_DEFINES= ACCESSIBILITY WIDGETS XSYNC QT_CONFIG= accessibility accessibility-atspi-bridge xlib OPTIONS_DEFINE= GTK3 OPTIONS_SUB= YES GTK3_DESC= GTK-based Qt theme GTK3_USES= gnome GTK3_USE= GNOME=gtk30 QT=dbus GTK3_CONFIGURE_ON= -gtk GTK3_CONFIGURE_OFF= -no-gtk .include .if ${PORT_OPTIONS:MGTK3} QT_DEFINES+= STYLE_GTK QT_CONFIG+= gtk MORE_WRKSRCS+= src/plugins/platformthemes .else QT_DEFINES+= -STYLE_GTK QT_CONFIG+= -gtk .endif post-configure: .for d in src/tools/uic src/widgets ${MORE_WRKSRCS} ${MKDIR} ${WRKSRC}/${d} cd ${WRKSRC}/${d} && ${SETENV} ${QMAKE_ENV} ${_QMAKE} ${QMAKE_ARGS} ${WRKSRC}/${d} .endfor pre-build: cd ${WRKSRC}/src/tools/uic && \ ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} \ ${_MAKE_JOBS} ${MAKE_ARGS} ${ALL_TARGET} post-build: .for d in ${MORE_WRKSRCS} @cd ${WRKSRC}/${d} && \ ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} \ ${_MAKE_JOBS} ${MAKE_ARGS} ${ALL_TARGET} .endfor post-install: .for d in src/tools/uic ${MORE_WRKSRCS} @cd ${WRKSRC}/${d} && \ ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} \ ${MAKE_ARGS} ${INSTALL_TARGET} .endfor ${INSTALL_DATA} ${BUILD_WRKSRC}/dialogs/images/qtlogo-64.png \ ${STAGEDIR}${PREFIX}/share/pixmaps/qt5logo.png ${RLN} ${STAGEDIR}${QT_BINDIR}/uic ${STAGEDIR}${PREFIX}/bin/uic-qt5 .include diff --git a/x11-toolkits/qt5-widgets/distinfo b/x11-toolkits/qt5-widgets/distinfo index 4dbeee854414..8a7857db7f06 100644 --- a/x11-toolkits/qt5-widgets/distinfo +++ b/x11-toolkits/qt5-widgets/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915824 -SHA256 (KDE/Qt/5.15.11/kde-qtbase-5.15.11p135.tar.xz) = 1cc7c8e5bc326a5d69e339fdceade191fdd6a94423c82514e24a00ca134014f4 -SIZE (KDE/Qt/5.15.11/kde-qtbase-5.15.11p135.tar.xz) = 50365656 +TIMESTAMP = 1703809471 +SHA256 (KDE/Qt/5.15.12/kde-qtbase-5.15.12p148.tar.xz) = bca3c00f7bf842b3ee7c8c3c89ec369c3fb25cfc24bf705c6d1f6ce7e2882c5f +SIZE (KDE/Qt/5.15.12/kde-qtbase-5.15.12p148.tar.xz) = 50366532 diff --git a/x11/qt5-qev/distinfo b/x11/qt5-qev/distinfo index 44313e815fa0..5ea85ea5ac19 100644 --- a/x11/qt5-qev/distinfo +++ b/x11/qt5-qev/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915826 -SHA256 (KDE/Qt/5.15.11/kde-qttools-5.15.11p3.tar.xz) = d9c0a1d55fd9eb1775573969ca101e37fd374f34d133b131ab0493ede917afb8 -SIZE (KDE/Qt/5.15.11/kde-qttools-5.15.11p3.tar.xz) = 8845864 +TIMESTAMP = 1703841392 +SHA256 (KDE/Qt/5.15.12/kde-qttools-5.15.12p4.tar.xz) = 1786e2bc40586429f2cd5581cb307d728c770125e08c08949bfa3f659e916b0c +SIZE (KDE/Qt/5.15.12/kde-qttools-5.15.12p4.tar.xz) = 8844464 diff --git a/x11/qt5-x11extras/distinfo b/x11/qt5-x11extras/distinfo index e47d3db7314c..14fb6e69366b 100644 --- a/x11/qt5-x11extras/distinfo +++ b/x11/qt5-x11extras/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1696915827 -SHA256 (KDE/Qt/5.15.11/kde-qtx11extras-5.15.11p0.tar.xz) = b6f6732fda770d578435346bb80dddee3f6ff854496fd3019074a43457cba075 -SIZE (KDE/Qt/5.15.11/kde-qtx11extras-5.15.11p0.tar.xz) = 123248 +TIMESTAMP = 1703809536 +SHA256 (KDE/Qt/5.15.12/kde-qtx11extras-5.15.12p0.tar.xz) = da5bfacdf4c638d5095c2464c6b98e3b309b3ed52bcfab4bff797e456fa0c9d7 +SIZE (KDE/Qt/5.15.12/kde-qtx11extras-5.15.12p0.tar.xz) = 123248