diff --git a/CHANGES b/CHANGES index 5c5b6235ad83c..d12f8b6d67c03 100644 --- a/CHANGES +++ b/CHANGES @@ -10,6 +10,23 @@ in the release notes and/or placed into UPDATING. All ports committers are allowed to commit to this file. +20220911: +AUTHOR: zirias@FreeBSD.org + + kde.mk, qt.mk and pyqt.mk now use a colon for component suffixes + + Suffixes for build, run and test (for pyqt) dependencies used an underscore + previously. This was not in line with most other USES, using a colon for + that purpose. + + So if you previously had for example + + USE_QT= buildtools_build + + replace it with + + USE_QT= buildtools:build + 20220907: AUTHOR: se@FreeBSD.org diff --git a/Mk/Uses/kde.mk b/Mk/Uses/kde.mk index 09c66f68cd2d6..442183b61453d 100644 --- a/Mk/Uses/kde.mk +++ b/Mk/Uses/kde.mk @@ -9,8 +9,8 @@ # # USE_KDE List of KF5/Plasma5 components (other ports) that this # port depends on. -# * foo_build Add a build-time dependency (BUILD_DEPENDS) -# * foo_run Add a run-time dependency (RUN_DEPENDS) +# * foo:build Add a build-time dependency (BUILD_DEPENDS) +# * foo:run Add a run-time dependency (RUN_DEPENDS) # * foo (default) Add both dependencies on component , or # a LIB_DEPENDS if applicable. # @@ -25,7 +25,7 @@ # # option DOCS If the port is part of kde-applications (see CATEGORIES, # above) and has an option defined for DOCS then a dependency -# for doctools_build is added. The option itself doesn't +# for doctools:build is added. The option itself doesn't # have to do anything -- the dependency is always there. # # KDE_INVENT If the port does not have a regular release, and should @@ -159,7 +159,7 @@ _KDE_OPTIONS= bogus ${OPTIONS_DEFINE} . if ${_KDE_OPTIONS:MDOCS} DOCSDIR= ${PREFIX}/share/doc PORTDOCS?= HTML/* -USE_KDE+= doctools_build +USE_KDE+= doctools:build . endif # Further pass along a SHLIB_VER PLIST_SUB PLIST_SUB+= KDE_APPLICATIONS_SHLIB_VER=${KDE_APPLICATIONS_SHLIB_VER} \ @@ -870,18 +870,18 @@ kde-${comp}_PATH= ${kde-${comp}${_KDE_VERSION}_LIB} _USE_KDE_ALL= ${_USE_${_KDE_RELNAME}_ALL} # Iterate through components deprived of suffix. -. for component in ${USE_KDE:O:u:C/_.+//} +. for component in ${USE_KDE:O:u:C/:.+//} # Check that the component is valid. . if ${_USE_KDE_ALL:M${component}} != "" # Skip meta-components (currently none). . if defined(kde-${component}_PORT) && (defined(kde-${component}_PATH) || defined(kde-${component}_LIB)) # Check if a dependency type is explicitly requested. -. if ${USE_KDE:M${component}_*} != "" && ${USE_KDE:M${component}} == "" +. if ${USE_KDE:M${component}\:*} != "" && ${USE_KDE:M${component}} == "" kde-${component}_TYPE= # empty -. if ${USE_KDE:M${component}_build} != "" +. if ${USE_KDE:M${component}\:build} != "" kde-${component}_TYPE+= build . endif -. if ${USE_KDE:M${component}_run} != "" +. if ${USE_KDE:M${component}\:run} != "" kde-${component}_TYPE+= run . endif . endif # ${USE_KDE:M${component}_*} != "" && ${USE_KDE:M${component}} == "" diff --git a/Mk/Uses/pyqt.mk b/Mk/Uses/pyqt.mk index a421a438056bd..33ce894a4f049 100644 --- a/Mk/Uses/pyqt.mk +++ b/Mk/Uses/pyqt.mk @@ -11,10 +11,10 @@ # targets are then set assuming a certain tarball and # port layout. # USE_PYQT - List of PyQt components to depend on -# * foo_build only build depend -# * foo_run only run depend -# * foo_test only test depend -# * foo both (default) +# * foo:build only build depend +# * foo:run only run depend +# * foo:test only test depend +# * foo build and run depend (default) # PYQT_SIPDIR - where sip files will be installed to # PYQT_APIDIR - where api files will be installed to # PYQT_DOCDIR - where doc files will be installed to @@ -199,7 +199,7 @@ _USE_PYQT_ALL+= ${_USE_SIP_ALL} \ ${_USE_QSCINTILLA} \ ${_USE_PYQTBUILDER} . for comp in ${_USE_PYQT_ALL:O:u} -_USE_PYQT_ALL_SUFFIXED+= py-${comp} py-${comp}_build py-${comp}_run py-${comp}_test +_USE_PYQT_ALL_SUFFIXED+= py-${comp} py-${comp}:build py-${comp}:run py-${comp}:test py-${comp}_BUILD_DEPENDS?= ${py-${comp}_PATH}:${py-${comp}_PORT}@${PY_FLAVOR} py-${comp}_RUN_DEPENDS?= ${py-${comp}_PATH}:${py-${comp}_PORT}@${PY_FLAVOR} py-${comp}_TEST_DEPENDS?= ${py-${comp}_PATH}:${py-${comp}_PORT}@${PY_FLAVOR} @@ -211,9 +211,9 @@ py-${comp}_test_TEST_DEPENDS?= ${py-${comp}_TEST_DEPENDS} _USE_PYQT= ${USE_PYQT:O:u} . for comp in ${_USE_PYQT} . if ${_USE_PYQT_ALL_SUFFIXED:Mpy-${comp}} -BUILD_DEPENDS+= ${py-${comp}_BUILD_DEPENDS} -RUN_DEPENDS+= ${py-${comp}_RUN_DEPENDS} -TEST_DEPENDS+= ${py-${comp}_TEST_DEPENDS} +BUILD_DEPENDS+= ${py-${comp:S/:/_/}_BUILD_DEPENDS} +RUN_DEPENDS+= ${py-${comp:S/:/_/}_RUN_DEPENDS} +TEST_DEPENDS+= ${py-${comp:S/:/_/}_TEST_DEPENDS} . else IGNORE?= cannot be installed: unknown USE_PYQT component ${comp} #' . endif diff --git a/Mk/Uses/qmake.mk b/Mk/Uses/qmake.mk index 48304c742493e..e6fc0758026a9 100644 --- a/Mk/Uses/qmake.mk +++ b/Mk/Uses/qmake.mk @@ -110,7 +110,7 @@ QMAKE_SOURCE_PATH?= # empty # Add qmake to USE_QT -- unless it's qmake itself . if !${PORTNAME} == qmake && ${_QT_VER:M5} -USE_QT+= qmake_build +USE_QT+= qmake:build . endif . if empty(qmake_ARGS:Mno_env) diff --git a/Mk/Uses/qt.mk b/Mk/Uses/qt.mk index f1e1134bf8837..e45705350fe63 100644 --- a/Mk/Uses/qt.mk +++ b/Mk/Uses/qt.mk @@ -11,8 +11,8 @@ # Versions: 5 # # Port variables: -# USE_QT - List of Qt modules to depend on, with optional '_build' -# and '_run' suffixes. Define it empty to include this file +# 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 @@ -399,18 +399,18 @@ _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)$//} +. 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}} == "" +. if ${_USE_QT:M${component}\:*} != "" && ${_USE_QT:M${component}} == "" qt-${component}_TYPE= # empty -. if ${_USE_QT:M${component}_build} != "" +. if ${_USE_QT:M${component}\:build} != "" qt-${component}_TYPE+= build . endif -. if ${_USE_QT:M${component}_run} != "" +. if ${_USE_QT:M${component}\:run} != "" qt-${component}_TYPE+= run . endif . endif # ${_USE_QT:M${component}_*} != "" && ${_USE_QT:M${component}} == "" diff --git a/accessibility/gammy/Makefile b/accessibility/gammy/Makefile index 7dcf88a0a0c2e..80c884df37fd4 100644 --- a/accessibility/gammy/Makefile +++ b/accessibility/gammy/Makefile @@ -15,7 +15,7 @@ USE_GITHUB= yes GH_ACCOUNT= Fushko USE_GL= gl USE_QT= core dbus gui widgets \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 xext xxf86vm PLIST_FILES= bin/gammy \ diff --git a/accessibility/kmag/Makefile b/accessibility/kmag/Makefile index 85f0a98a2a79b..e65e9a0ba598f 100644 --- a/accessibility/kmag/Makefile +++ b/accessibility/kmag/Makefile @@ -12,9 +12,9 @@ LICENSE_FILE= ${WRKSRC}/COPYING USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons \ i18n kio service widgetsaddons xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus gui network printsupport widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build OPTIONS_DEFINE= DOCS diff --git a/accessibility/kmousetool/Makefile b/accessibility/kmousetool/Makefile index e7ad5a20a65c4..09163dad44e1e 100644 --- a/accessibility/kmousetool/Makefile +++ b/accessibility/kmousetool/Makefile @@ -11,9 +11,9 @@ LICENSE= GPLv2 USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz xorg USE_KDE= auth codecs config configwidgets coreaddons dbusaddons \ i18n iconthemes notifications widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= core dbus gui phonon4 widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= ice sm x11 xext xtst OPTIONS_DEFINE= DOCS diff --git a/accessibility/kmouth/Makefile b/accessibility/kmouth/Makefile index 522cc399c4b00..4993bce19ec2b 100644 --- a/accessibility/kmouth/Makefile +++ b/accessibility/kmouth/Makefile @@ -12,9 +12,9 @@ LICENSE_FILE= ${WRKSRC}/COPYING USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz xorg USE_KDE= auth codecs completion config configwidgets coreaddons crash \ i18n jobwidgets kio service solid widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus gui network printsupport speech widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 OPTIONS_DEFINE= DOCS diff --git a/accessibility/libqaccessibilityclient/Makefile b/accessibility/libqaccessibilityclient/Makefile index faa3c4290d875..bb751ff64da8b 100644 --- a/accessibility/libqaccessibilityclient/Makefile +++ b/accessibility/libqaccessibilityclient/Makefile @@ -14,6 +14,6 @@ LICENSE_FILE= ${WRKSRC}/COPYING USES= cmake compiler:c++11-lang kde:5 qt:5 tar:xz USE_KDE= ecm USE_QT= core dbus gui widgets \ - buildtools_build qmake_build + buildtools:build qmake:build .include diff --git a/accessibility/qt5-speech/Makefile b/accessibility/qt5-speech/Makefile index 3c2f423b26196..e4d9491da5da6 100644 --- a/accessibility/qt5-speech/Makefile +++ b/accessibility/qt5-speech/Makefile @@ -10,7 +10,7 @@ USES= compiler:c++11-lang gl pkgconfig perl5 qmake:outsource,norecursive \ qt-dist:5,speech xorg USE_GL= gl USE_PERL5= extract -USE_QT= core gui buildtools_build qmake_build +USE_QT= core gui buildtools:build qmake:build OPTIONS_DEFINE= ALSA OPTIONS_GROUP= BACKEND diff --git a/archivers/ark/Makefile b/archivers/ark/Makefile index dc9f554df68a0..28085c123058a 100644 --- a/archivers/ark/Makefile +++ b/archivers/ark/Makefile @@ -14,9 +14,9 @@ USE_KDE= archive auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons doctools i18n iconthemes \ itemmodels itemviews jobwidgets khtml kio parts pty service \ solid sonnet textwidgets widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus gui network widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 USE_LDCONFIG= yes diff --git a/archivers/kf5-karchive/Makefile b/archivers/kf5-karchive/Makefile index 939780dad89fc..121cf1c51d82e 100644 --- a/archivers/kf5-karchive/Makefile +++ b/archivers/kf5-karchive/Makefile @@ -9,8 +9,8 @@ COMMENT= KF5 library that provides classes for handling archive formats LICENSE= LGPL20 USES= cmake compiler:c++11-lib kde:5 qt:5 tar:xz -USE_KDE= ecm_build +USE_KDE= ecm:build USE_QT= core \ - buildtools_build qmake_build + buildtools:build qmake:build .include diff --git a/archivers/libarchive-qt/Makefile b/archivers/libarchive-qt/Makefile index d3495bf0f8a6a..2559d37daae1d 100644 --- a/archivers/libarchive-qt/Makefile +++ b/archivers/libarchive-qt/Makefile @@ -10,7 +10,7 @@ LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE USES= cmake qt:5 -USE_QT= buildtools_build core dbus gui network qmake_build widgets +USE_QT= buildtools:build core dbus gui network qmake:build widgets USE_LDCONFIG= yes USE_GITLAB= yes diff --git a/archivers/lxqt-archiver/Makefile b/archivers/lxqt-archiver/Makefile index 1cdaa5cd5cbfc..94f592238fca6 100644 --- a/archivers/lxqt-archiver/Makefile +++ b/archivers/lxqt-archiver/Makefile @@ -17,7 +17,7 @@ RUN_DEPENDS= ${LOCALBASE}/bin/unzip:archivers/unzip USES= cmake compiler:c++14-lang desktop-file-utils lxqt pkgconfig tar:xz gnome qt:5 xorg USE_GNOME= glib20 -USE_QT= buildtools_build qmake_build core dbus gui linguisttools \ +USE_QT= buildtools:build qmake:build core dbus gui linguisttools \ network printsupport svg widgets x11extras USE_LXQT= buildtools lxqt USE_XORG= xcb diff --git a/archivers/quazip/Makefile b/archivers/quazip/Makefile index f60d1e66fbbb2..3b6aa04133649 100644 --- a/archivers/quazip/Makefile +++ b/archivers/quazip/Makefile @@ -16,7 +16,7 @@ GH_ACCOUNT= stachenov CPE_VENDOR= quazip_project USE_LDCONFIG= yes USE_QT= core network \ - buildtools_build testlib_build qmake_build + buildtools:build testlib:build qmake:build CMAKE_ARGS= -DBUILD_WITH_QT4:BOOL=FALSE PLIST_SUB= QTVER_SUFFIX=5 \ diff --git a/archivers/v1541commander/Makefile b/archivers/v1541commander/Makefile index d26616dbeb2ee..048eb266f856f 100644 --- a/archivers/v1541commander/Makefile +++ b/archivers/v1541commander/Makefile @@ -18,7 +18,7 @@ LIB_DEPENDS= lib1541img.so:archivers/lib1541img USES= compiler:c++11-lang gmake pkgconfig qt:5 shared-mime-info -USE_QT= core gui network widgets buildtools_build linguisttools_build +USE_QT= core gui network widgets buildtools:build linguisttools:build USE_GITHUB= yes GH_PROJECT= zimk:zimk diff --git a/astro/gpsbabel/Makefile b/astro/gpsbabel/Makefile index b26567552961e..43766c47e0314 100644 --- a/astro/gpsbabel/Makefile +++ b/astro/gpsbabel/Makefile @@ -11,7 +11,7 @@ LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING USES= compiler:c++11-lang gmake localbase qt:5 -USE_QT= core qmake_build +USE_QT= core qmake:build CONFLICTS= gpsbabel14 @@ -24,7 +24,7 @@ OPTIONS_SUB= yes GUI_USES= gl GUI_USE= GL=gl \ QT=declarative,gui,location,network,printsupport,webchannel \ - QT=webengine,widgets,xml,buildtools_build,linguisttools_build + QT=webengine,widgets,xml,buildtools:build,linguisttools:build GUI_ALL_TARGET= gui GUI_VARS= MAKE_JOBS_UNSAFE=yes diff --git a/astro/indiwebmanagerapp/Makefile b/astro/indiwebmanagerapp/Makefile index 1f8e76eee5b78..03034eda43ded 100644 --- a/astro/indiwebmanagerapp/Makefile +++ b/astro/indiwebmanagerapp/Makefile @@ -16,7 +16,7 @@ USES= cmake iconv gettext kde:5 ninja qt:5 pkgconfig python:3.7+ xorg USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons doctools i18n kio itemviews jobwidgets service \ solid widgetsaddons windowsystem xmlgui -USE_QT= buildtools concurrent core dbus gui qmake_build network widgets \ +USE_QT= buildtools concurrent core dbus gui qmake:build network widgets \ xml USE_XORG= x11 USE_GITHUB= yes diff --git a/astro/kosmindoormap/Makefile b/astro/kosmindoormap/Makefile index 3da2d13f9c481..575436a32b13e 100644 --- a/astro/kosmindoormap/Makefile +++ b/astro/kosmindoormap/Makefile @@ -10,9 +10,9 @@ LIB_DEPENDS= libprotobuf.so:devel/protobuf USES= bison cmake compiler:c++11-lang kde:5 qt:5 tar:xz USE_KDE= i18n kpublictransport \ - ecm_build + ecm:build USE_QT= core declarative gui network quick3d \ - buildtools_build qmake_build + buildtools:build qmake:build OPTIONS_DEFINE= DOCS diff --git a/astro/kstars/Makefile b/astro/kstars/Makefile index ef7fe4110f68d..2081bc4cbd248 100644 --- a/astro/kstars/Makefile +++ b/astro/kstars/Makefile @@ -31,11 +31,11 @@ USE_KDE= attica auth bookmarks codecs completion config configwidgets\ iconthemes init itemviews jobwidgets kio newstuff notifications \ notifyconfig parts plotting service solid texteditor \ widgetsaddons windowsystem xmlgui \ - doctools_build ecm_build + doctools:build ecm:build USE_QT= concurrent core datavis3d dbus declarative gui multimedia \ network opengl printsupport sql svg testlib websockets widgets \ xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 .include diff --git a/astro/marble/Makefile b/astro/marble/Makefile index b2bfcc2478131..cd8948aad6aea 100644 --- a/astro/marble/Makefile +++ b/astro/marble/Makefile @@ -20,10 +20,10 @@ USE_KDE= attica auth codecs completion config configwidgets coreaddons \ crash doctools i18n jobwidgets kio newstuff package parts \ plasma-framework plasma-workspace-wallpapers runner service solid \ sonnet textwidgets wallet widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus declarative designer gui location network opengl \ phonon4 printsupport script serialport sql svg webchannel widgets xml \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build USE_XORG= x11 USE_LDCONFIG= yes diff --git a/astro/merkaartor/Makefile b/astro/merkaartor/Makefile index af63b9d6346ac..ba92e4ab98f80 100644 --- a/astro/merkaartor/Makefile +++ b/astro/merkaartor/Makefile @@ -20,7 +20,7 @@ GH_ACCOUNT= openstreetmap USE_LDCONFIG= yes QMAKE_ARGS= SYSTEM_QUAZIP=1 -USE_QT= buildtools_build \ +USE_QT= buildtools:build \ concurrent core gui imageformats network printsupport svg \ webkit widgets xml @@ -44,7 +44,7 @@ ZBAR_BROKEN= Does not build with option ZBAR selected DEBUG_QMAKE_OFF= NODEBUG=1 RELEASE=1 NLS_USES= qt:5 -NLS_USE= QT=linguisttools_build +NLS_USE= QT=linguisttools:build OPTIONS_SUB= yes diff --git a/astro/oskar/Makefile b/astro/oskar/Makefile index cd01cf5ad6d8f..2d159a84b4e18 100644 --- a/astro/oskar/Makefile +++ b/astro/oskar/Makefile @@ -20,7 +20,7 @@ LIB_DEPENDS= libcfitsio.so:astro/cfitsio \ USES= cmake compiler:c++11-lang localbase:ldflags python qt:5 \ shebangfix -USE_QT= core gui network widgets buildtools_build qmake_build +USE_QT= core gui network widgets buildtools:build qmake:build USE_LDCONFIG= yes SHEBANG_FILES= apps/oskar_convert_cst_to_scalar.py diff --git a/astro/stellarium/Makefile b/astro/stellarium/Makefile index 5789889bd5328..9d1270be28d97 100644 --- a/astro/stellarium/Makefile +++ b/astro/stellarium/Makefile @@ -15,7 +15,7 @@ GH_ACCOUNT= Stellarium USES= cmake compiler:c++11-lang desktop-file-utils \ qt:5 shared-mime-info -USE_QT= qmake_build buildtools_build \ +USE_QT= qmake:build buildtools:build \ charts concurrent core gui network opengl \ printsupport widgets @@ -47,7 +47,7 @@ GPS_CMAKE_OFF= -DENABLE_GPS:BOOL=OFF MULTIMEDIA_USE= QT=multimedia MULTIMEDIA_CMAKE_OFF= -DENABLE_MEDIA:BOOL=OFF -NLS_USE= QT=linguisttools_build +NLS_USE= QT=linguisttools:build NLS_CMAKE_OFF= -DENABLE_NLS:BOOL=OFF SCRIPTS_USE= QT=script @@ -56,7 +56,7 @@ SCRIPTS_CMAKE_OFF= -DENABLE_SCRIPTING:BOOL=OFF TELESCOPE_USE= QT=serialport TELESCOPE_CMAKE_OFF= -DUSE_PLUGIN_TELESCOPECONTROL:BOOL=OFF -TEST_USE= QT=testlib_build +TEST_USE= QT=testlib:build TEST_CMAKE_ON= -DENABLE_TESTING:BOOL=ON TEXTURES_MASTER_SITES= SF/${PORTNAME}/Extra-data-files/textures:gfx diff --git a/astro/stellarsolver/Makefile b/astro/stellarsolver/Makefile index 10734067e7d31..d510b60f4c247 100644 --- a/astro/stellarsolver/Makefile +++ b/astro/stellarsolver/Makefile @@ -13,7 +13,7 @@ LIB_DEPENDS= libcfitsio.so:astro/cfitsio \ libwcs.so:astro/wcslib USES= cmake desktop-file-utils iconv ninja qt:5 pkgconfig -USE_QT= buildtools concurrent core gui qmake_build network widgets +USE_QT= buildtools concurrent core gui qmake:build network widgets USE_GITHUB= yes GH_ACCOUNT= rlancaste diff --git a/audio/abgate-lv2/Makefile b/audio/abgate-lv2/Makefile index acff9bba30762..e3abcba8a12ab 100644 --- a/audio/abgate-lv2/Makefile +++ b/audio/abgate-lv2/Makefile @@ -18,7 +18,7 @@ USES= compiler:c++11-lang gl gmake gnome pkgconfig qt:5 xorg USE_GITHUB= yes GH_ACCOUNT= antanasbruzas USE_CXXSTD= c++11 -USE_QT= core gui widgets buildtools_build qmake_build +USE_QT= core gui widgets buildtools:build qmake:build USE_GL= gl USE_GNOME= atkmm gtk20 gtkmm24 libsigc++20 USE_LDCONFIG= yes diff --git a/audio/amarok/Makefile b/audio/amarok/Makefile index ec9b35557f8d7..29f77524156a3 100644 --- a/audio/amarok/Makefile +++ b/audio/amarok/Makefile @@ -25,7 +25,7 @@ USES= cmake compiler:c++11-lang cpe desktop-file-utils \ USE_QT= core concurrent declarative dbus gui location network phonon4 \ quickcontrols2 script scripttools sql svg webchannel \ webkit widgets xml \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build USE_KDE= archive auth attica bookmarks codecs config configwidgets \ completion coreaddons crash dbusaddons dnssd globalaccel \ @@ -33,7 +33,7 @@ USE_KDE= archive auth attica bookmarks codecs config configwidgets \ kcmutils kio kirigami2 newstuff notifications notifyconfig \ package parts service solid sonnet texteditor textwidgets \ threadweaver wallet widgetsaddons windowsystem xmlgui \ - doctools_build ecm_build + doctools:build ecm:build USE_XORG= ice sm x11 xext USE_LDCONFIG= yes diff --git a/audio/audiocd-kio/Makefile b/audio/audiocd-kio/Makefile index bbbd7e00aff77..60b8875a23a01 100644 --- a/audio/audiocd-kio/Makefile +++ b/audio/audiocd-kio/Makefile @@ -22,7 +22,7 @@ USE_KDE= auth bookmarks codecs completion config configwidgets \ service solid sonnet textwidgets unitconversion \ widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus gui network phonon4 printsupport widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_LDCONFIG= yes diff --git a/audio/bambootracker/Makefile b/audio/bambootracker/Makefile index f13f84856058f..1c84ee082b078 100644 --- a/audio/bambootracker/Makefile +++ b/audio/bambootracker/Makefile @@ -20,7 +20,7 @@ USES= compiler:c++14-lang desktop-file-utils gl qmake qt:5 \ USE_GL= gl USE_QT= buildtools core gui multimedia network widgets \ - linguisttools_build + linguisttools:build DATADIR= ${PREFIX}/share/BambooTracker DOCSDIR= ${PREFIX}/share/doc/BambooTracker diff --git a/audio/cadence/Makefile b/audio/cadence/Makefile index a9e38cb78ef6d..3d0778836d15f 100644 --- a/audio/cadence/Makefile +++ b/audio/cadence/Makefile @@ -18,7 +18,7 @@ SHEBANG_FILES= src/*.py USE_GITHUB= yes GH_ACCOUNT= falkTX GH_PROJECT= Cadence -USE_QT= core gui widgets buildtools_build +USE_QT= core gui widgets buildtools:build USE_PYQT= pyqt5 sip CXXFLAGS+= -DJACKBRIDGE_PROPER_CPP11_SUPPORT=yes diff --git a/audio/cantata/Makefile b/audio/cantata/Makefile index 2783ae3387383..a6bc571512771 100644 --- a/audio/cantata/Makefile +++ b/audio/cantata/Makefile @@ -14,8 +14,8 @@ USES= cmake compiler:c++11-lang cpe pkgconfig qt:5 shebangfix USE_GITHUB= yes GH_ACCOUNT= CDrummond -USE_QT= buildtools_build concurrent core dbus gui network \ - qmake_build sql sql-sqlite3_run svg widgets xml +USE_QT= buildtools:build concurrent core dbus gui network \ + qmake:build sql sql-sqlite3:run svg widgets xml CMAKE_ON= CMAKE_DISABLE_FIND_PACKAGE_UDev CMAKE_OFF= ENABLE_CDIOPARANOIA @@ -72,7 +72,7 @@ MUSICBRAINZ_IMPLIES= CDPARANOIA MUSICBRAINZ_LIB_DEPENDS=libmusicbrainz5.so:audio/libmusicbrainz5 MUSICBRAINZ_CMAKE_BOOL= ENABLE_MUSICBRAINZ -NLS_USE= QT=linguisttools_build +NLS_USE= QT=linguisttools:build NLS_CMAKE_ON= -DLCONVERT_EXECUTABLE:STRING=${QT_BINDIR}/lconvert \ -DLRELEASE_EXECUTABLE:STRING=${QT_BINDIR}/lrelease NLS_CMAKE_OFF= -DLCONVERT_EXECUTABLE:BOOL=FALSE \ diff --git a/audio/carla/Makefile b/audio/carla/Makefile index daaf7f1a95e59..b8f21318a7c06 100644 --- a/audio/carla/Makefile +++ b/audio/carla/Makefile @@ -22,7 +22,7 @@ USES= compiler:c++11-lib desktop-file-utils gl gmake gnome localbase \ tar:bz2 xorg USE_PYQT= pyqt5 sip USE_GNOME= gtk20 gtk30 -USE_QT= core gui widgets buildtools_build +USE_QT= core gui widgets buildtools:build USE_GL= gl USE_XORG= x11 USE_SDL= sdl2 diff --git a/audio/csoundqt/Makefile b/audio/csoundqt/Makefile index 5f7f91b13324e..e3e604b1cfa08 100644 --- a/audio/csoundqt/Makefile +++ b/audio/csoundqt/Makefile @@ -15,7 +15,7 @@ LIB_DEPENDS= libcsound64.so:audio/csound USES= compiler:c++11-lib desktop-file-utils gl gmake qmake qt:5 shared-mime-info USE_GITHUB= yes -USE_QT= concurrent core declarative gui network printsupport webchannel webkit widgets xml buildtools_build +USE_QT= concurrent core declarative gui network printsupport webchannel webkit widgets xml buildtools:build USE_GL= gl QMAKE_ARGS= CONFIG+="CSOUND_API_INCLUDE_DIR=${LOCALBASE}/include/csound CSOUND_LIBRARY_DIR=${LOCALBASE}/lib build64" \ diff --git a/audio/dgedit/Makefile b/audio/dgedit/Makefile index 2b8323c1b61fe..68b7315e41f70 100644 --- a/audio/dgedit/Makefile +++ b/audio/dgedit/Makefile @@ -14,7 +14,7 @@ LIB_DEPENDS= libao.so:audio/libao \ libsndfile.so:audio/libsndfile USES= autoreconf compiler:c++14-lang gmake libtool localbase pkgconfig qt:5 -USE_QT= buildtools_build core gui linguisttools_build widgets xml +USE_QT= buildtools:build core gui linguisttools:build widgets xml GNU_CONFIGURE= yes diff --git a/audio/dmidiplayer/Makefile b/audio/dmidiplayer/Makefile index 05b5ed3fefeed..91859a6188f82 100644 --- a/audio/dmidiplayer/Makefile +++ b/audio/dmidiplayer/Makefile @@ -15,7 +15,7 @@ LIB_DEPENDS= libdrumstick-widgets.so:audio/drumstick \ libuchardet.so:textproc/uchardet USES= compiler:c++17-lang cmake desktop-file-utils pkgconfig qt:6 tar:bz2 -USE_QT= base tools_build +USE_QT= base tools:build CMAKE_ARGS= -DUSE_QT=6 CMAKE_ON= EMBED_TRANSLATIONS diff --git a/audio/drumkv1-lv2/Makefile b/audio/drumkv1-lv2/Makefile index 224b232ea2c5d..29e1f876600ad 100644 --- a/audio/drumkv1-lv2/Makefile +++ b/audio/drumkv1-lv2/Makefile @@ -17,7 +17,7 @@ LIB_DEPENDS= libjack.so:audio/jack \ liblo.so:audio/liblo USES= cmake compiler:c++17-lang desktop-file-utils gl localbase:ldflags pkgconfig qt:5 shared-mime-info -USE_QT= core gui svg widgets xml buildtools_build linguisttools_build qmake_build +USE_QT= core gui svg widgets xml buildtools:build linguisttools:build qmake:build USE_GL= gl CMAKE_OFF= CONFIG_ALSA_MIDI diff --git a/audio/drumstick/Makefile b/audio/drumstick/Makefile index cb331e2d7685d..f467d957b6dda 100644 --- a/audio/drumstick/Makefile +++ b/audio/drumstick/Makefile @@ -12,7 +12,7 @@ LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/COPYING USES= compiler:c++11-lang cmake desktop-file-utils pkgconfig qt:6 shared-mime-info tar:bz2 -USE_QT= base svg 5compat tools_build +USE_QT= base svg 5compat tools:build USE_LDCONFIG= yes CMAKE_ARGS= -DUSE_QT=6 diff --git a/audio/dsbmixer/Makefile b/audio/dsbmixer/Makefile index 3b70d75f95ea2..e0a559c63b14b 100644 --- a/audio/dsbmixer/Makefile +++ b/audio/dsbmixer/Makefile @@ -14,7 +14,7 @@ RUN_DEPENDS= dsbwrtsysctl:sysutils/dsbwrtsysctl USES= compiler:c++11-lang gl qmake qt:5 tar:tgz USE_GL= gl -USE_QT= buildtools_build core gui linguisttools_build widgets +USE_QT= buildtools:build core gui linguisttools:build widgets USE_GITHUB= yes GH_ACCOUNT= mrclksr diff --git a/audio/elisa/Makefile b/audio/elisa/Makefile index 212f2b536632c..477a7f22ac462 100644 --- a/audio/elisa/Makefile +++ b/audio/elisa/Makefile @@ -17,7 +17,7 @@ USE_KDE= auth baloo5 bookmarks codecs completion config configwidgets \ service solid widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus declarative gui multimedia network \ quickcontrols2 sql svg widgets xml \ - buildtools_build declarative-test_build qmake_build testlib_build + buildtools:build declarative-test:build qmake:build testlib:build USE_XORG= x11 OPTIONS_DEFINE= DOCS VLC diff --git a/audio/faustlive/Makefile b/audio/faustlive/Makefile index 3e7eefc3ad778..25cd83b3090f2 100644 --- a/audio/faustlive/Makefile +++ b/audio/faustlive/Makefile @@ -20,7 +20,7 @@ LIB_DEPENDS= libLLVM-${LLVM_VERSION}.so:devel/llvm${LLVM_VERSION} \ libsndfile.so:audio/libsndfile # audio/alsa-lib isn't really needed: https://github.com/grame-cncm/faustlive/issues/3 USES= compiler:c++11-lang gl pkgconfig qmake qt:5 shebangfix -USE_QT= core gui network widgets buildtools_build +USE_QT= core gui network widgets buildtools:build USE_GL= gl USE_GITHUB= yes diff --git a/audio/flacon/Makefile b/audio/flacon/Makefile index 81bdf72142c0c..5413c30d1a6f1 100644 --- a/audio/flacon/Makefile +++ b/audio/flacon/Makefile @@ -21,8 +21,8 @@ TEST_DEPENDS= alacenc:audio/alacenc \ USES= cmake compiler:c++11-lang desktop-file-utils pkgconfig qt:5 USE_GITHUB= yes -USE_QT= buildtools_build concurrent_build qmake_build testlib_build \ - linguisttools_build core gui network widgets +USE_QT= buildtools:build concurrent:build qmake:build testlib:build \ + linguisttools:build core gui network widgets CMAKE_ARGS= -DBUILD_TESTS:BOOL=YES do-test: diff --git a/audio/fmit/Makefile b/audio/fmit/Makefile index 0430cabe51d48..ff4430224dad2 100644 --- a/audio/fmit/Makefile +++ b/audio/fmit/Makefile @@ -17,7 +17,7 @@ LIB_DEPENDS= libfftw3.so:math/fftw3 USES= compiler:c++11-lang gl gnome pkgconfig qmake qt:5 tar:bzip2 xorg -USE_QT= buildtools_build core gui opengl qmake_build multimedia network svg widgets +USE_QT= buildtools:build core gui opengl qmake:build multimedia network svg widgets USE_GL= gl glut USE_GITHUB= yes diff --git a/audio/guidolib/Makefile b/audio/guidolib/Makefile index a6f80aca6b41d..2faf190a82c0c 100644 --- a/audio/guidolib/Makefile +++ b/audio/guidolib/Makefile @@ -13,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libmidisharelight.so:audio/midisharelight USES= compiler:c++11-lang gl cmake gnome localbase:ldflags pkgconfig qt:5 xorg -USE_QT= core gui widgets printsupport xml buildtools_build qmake_build +USE_QT= core gui widgets printsupport xml buildtools:build qmake:build USE_GL= gl USE_GNOME= cairo USE_LDCONFIG= yes diff --git a/audio/hpsjam/Makefile b/audio/hpsjam/Makefile index af153ada51864..273554d9e9600 100644 --- a/audio/hpsjam/Makefile +++ b/audio/hpsjam/Makefile @@ -15,7 +15,7 @@ LIB_DEPENDS= \ USES= compiler:c++11-lang gl qmake qt:5 tar:bzip2 USE_GL= gl -USE_QT= buildtools_build core gui widgets svg +USE_QT= buildtools:build core gui widgets svg USE_GITHUB= yes GH_ACCOUNT= hselasky diff --git a/audio/hydrogen/Makefile b/audio/hydrogen/Makefile index 7f0d74d1fbce8..21d7996e31ed2 100644 --- a/audio/hydrogen/Makefile +++ b/audio/hydrogen/Makefile @@ -15,8 +15,8 @@ LIB_DEPENDS= libsndfile.so:audio/libsndfile \ USES= cmake compiler:c++11-lang desktop-file-utils pkgconfig \ localbase qt:5 -USE_QT= core gui network widgets xml xmlpatterns buildtools_build \ - linguisttools_build qmake_build testlib_build +USE_QT= core gui network widgets xml xmlpatterns buildtools:build \ + linguisttools:build qmake:build testlib:build USE_LDCONFIG= yes USE_GITHUB= yes diff --git a/audio/inscore/Makefile b/audio/inscore/Makefile index d8e80a2df8b23..19aadc0391a77 100644 --- a/audio/inscore/Makefile +++ b/audio/inscore/Makefile @@ -16,7 +16,7 @@ LIB_DEPENDS= libGUIDOEngine.so:audio/guidolib \ USES= cmake gnome qt:5 USE_QT= core declarative gui network multimedia opengl printsupport sensors svg widgets websockets \ - qmake_build buildtools_build + qmake:build buildtools:build USE_LDCONFIG= yes USE_GITHUB= yes diff --git a/audio/jacktrip/Makefile b/audio/jacktrip/Makefile index fdc3822e077e5..a2ad278092509 100644 --- a/audio/jacktrip/Makefile +++ b/audio/jacktrip/Makefile @@ -14,7 +14,7 @@ LIB_DEPENDS= libjack.so:audio/jack \ librtaudio.so:audio/rtaudio USES= meson compiler:c++17-lang gl pkgconfig qt:5 -USE_QT= core gui network networkauth quickcontrols2 svg websockets widgets buildtools_build +USE_QT= core gui network networkauth quickcontrols2 svg websockets widgets buildtools:build USE_GL= gl USE_GITHUB= yes diff --git a/audio/jalv/Makefile b/audio/jalv/Makefile index 17860685ea8b7..f60bb619ebe0b 100644 --- a/audio/jalv/Makefile +++ b/audio/jalv/Makefile @@ -25,7 +25,7 @@ USES= compiler:c++11-lang gnome pkgconfig python:build qmake:no_configure,no_en qt:5 tar:bz2 waf CONFIGURE_ARGS= --no-qt4 USE_CXXSTD= c++11 -USE_QT= core gui widgets buildtools_build +USE_QT= core gui widgets buildtools:build USE_GNOME= atk atkmm cairo cairomm pango pangomm libsigc++20 \ gdkpixbuf2 glib20 glibmm gtk20 gtk30 gtkmm24 diff --git a/audio/jamulus/Makefile b/audio/jamulus/Makefile index 1ceb92a6f2143..d7cdb43af325b 100644 --- a/audio/jamulus/Makefile +++ b/audio/jamulus/Makefile @@ -17,7 +17,7 @@ FLAVOR?= ${FLAVORS:[1]} server_PKGNAMESUFFIX= -server USES= compiler:c++11-lang gl pkgconfig qmake qt:5 -USE_QT= concurrent core multimedia network xml buildtools_build linguisttools_build +USE_QT= concurrent core multimedia network xml buildtools:build linguisttools:build USE_GL= gl USE_GITHUB= yes diff --git a/audio/juk/Makefile b/audio/juk/Makefile index 522a885b4de80..db1247e646f04 100644 --- a/audio/juk/Makefile +++ b/audio/juk/Makefile @@ -15,9 +15,9 @@ USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons globalaccel i18n iconthemes itemviews \ jobwidgets kio notifications service solid sonnet textwidgets \ wallet widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus gui network phonon4 svg widgets xml \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build USE_XORG= x11 OPTIONS_DEFINE= DOCS diff --git a/audio/kid3-qt5/Makefile b/audio/kid3-qt5/Makefile index 0650c5b55f1dd..198789ae738b5 100644 --- a/audio/kid3-qt5/Makefile +++ b/audio/kid3-qt5/Makefile @@ -19,7 +19,7 @@ USES= cmake compiler:c++11-lang desktop-file-utils gnome \ USE_GNOME= libxslt:build USE_LDCONFIG= yes USE_QT= core dbus gui multimedia network xml widgets \ - buildtools_build linguisttools_build qmake_build + buildtools:build linguisttools:build qmake:build CMAKE_ARGS= -DWITH_DOCBOOKDIR="${LOCALBASE}/share/xsl/docbook" \ -DWITH_LIBDIR=lib \ @@ -39,7 +39,7 @@ KID3_APPS+= QT # KF5 USES+= kde:5 USE_KDE+= auth codecs config configwidgets coreaddons kio \ - service widgetsaddons xmlgui doctools_build ecm_build + service widgetsaddons xmlgui doctools:build ecm:build USE_QT+= concurrent PLIST_SUB+= KF5="" QT="@comment " QT_SUFX="" KID3_APPS+= KDE @@ -78,7 +78,7 @@ TAGLIB_DESC= Various audio formats support via Taglib TAGLIB_LIB_DEPENDS= libtag.so:audio/taglib TAGLIB_CMAKE_BOOL= WITH_TAGLIB -TEST_USE= LOCALE=en_US.UTF-8 QT=testlib_build +TEST_USE= LOCALE=en_US.UTF-8 QT=testlib:build TEST_CMAKE_BOOL= BUILD_TESTING TEST_TARGET= # define to override CMAKE_ARGS from Uses/kde.mk TEST_WRKSRC= ${BUILD_WRKSRC}/src/test diff --git a/audio/kmix/Makefile b/audio/kmix/Makefile index f4a911d7975d0..f74c773efbd9b 100644 --- a/audio/kmix/Makefile +++ b/audio/kmix/Makefile @@ -15,9 +15,9 @@ USE_KDE= auth codecs config configwidgets coreaddons dbusaddons \ emoticons globalaccel i18n iconthemes init itemmodels \ itemviews kcmutils kdelibs4support notifications package \ plasma-framework service solid widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= core dbus gui widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 # we want the KF5 version of kmix diff --git a/audio/kwave/Makefile b/audio/kwave/Makefile index 5647e0575aa7a..5f48bf855815a 100644 --- a/audio/kwave/Makefile +++ b/audio/kwave/Makefile @@ -22,9 +22,9 @@ USE_KDE= archive auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons i18n iconthemes itemviews \ jobwidgets kio service solid sonnet textwidgets widgetsaddons \ windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus gui multimedia network widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 OPTIONS_GROUP= AUDIOPLUGIN diff --git a/audio/libechonest/Makefile b/audio/libechonest/Makefile index 5fa9c41b66a1f..e8b0b68b648f7 100644 --- a/audio/libechonest/Makefile +++ b/audio/libechonest/Makefile @@ -17,14 +17,14 @@ USE_LDCONFIG= yes USE_GITHUB= yes GH_ACCOUNT= lfranchi -USE_QT= core buildtools_build qmake_build network xml +USE_QT= core buildtools:build qmake:build network xml CMAKE_OFF+= BUILD_WITH_QT4 PLIST_SUB= PORTVERSION=${PORTVERSION} OPTIONS_DEFINE= TEST -TEST_USE= QT=testlib_build +TEST_USE= QT=testlib:build TEST_CMAKE_BOOL=ECHONEST_BUILD_TESTS .include diff --git a/audio/libkcddb/Makefile b/audio/libkcddb/Makefile index 90a6c7d9d82ed..2ec706186beda 100644 --- a/audio/libkcddb/Makefile +++ b/audio/libkcddb/Makefile @@ -12,9 +12,9 @@ USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz xorg USE_KDE= auth codecs completion config configwidgets \ coreaddons i18n jobwidgets kio service solid \ widgetsaddons windowsystem \ - ecm_build + ecm:build USE_QT= concurrent core dbus gui network widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 USE_LDCONFIG= yes diff --git a/audio/libkcompactdisc/Makefile b/audio/libkcompactdisc/Makefile index 1055a8bbc0133..2655e9c2093f5 100644 --- a/audio/libkcompactdisc/Makefile +++ b/audio/libkcompactdisc/Makefile @@ -9,9 +9,9 @@ WWW= https://www.kde.org/ USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= coreaddons emoticons i18n itemmodels itemviews \ kdelibs4support solid \ - ecm_build + ecm:build USE_QT= core dbus gui phonon4 widgets \ - buildtools_build qmake_build + buildtools:build qmake:build USE_LDCONFIG= yes OPTIONS_DEFINE= ALSA DOCS diff --git a/audio/liblastfm-qt5/Makefile b/audio/liblastfm-qt5/Makefile index b3f0decd3f09c..8aaeff3efa739 100644 --- a/audio/liblastfm-qt5/Makefile +++ b/audio/liblastfm-qt5/Makefile @@ -17,7 +17,7 @@ USE_GITHUB= yes GH_ACCOUNT= lastfm USE_LDCONFIG= yes USE_QT= core dbus network sql xml \ - buildtools_build qmake_build + buildtools:build qmake:build CMAKE_OFF= BUILD_WITH_QT4 QTVER_SUFFIX= 5 @@ -35,7 +35,7 @@ FINGERPRINT_CMAKE_BOOL= BUILD_FINGERPRINT FINGERPRINT_BUILD_DEPENDS= ${NONEXISTENT}:math/fftw3:patch FINGERPRINT_CMAKE_ON= -DLIBFFTW3_INCLUDE_DIR:PATH=`${MAKE} -C ${PORTSDIR}/math/fftw3 -VWRKSRC`/api -TEST_USE= QT=testlib_build +TEST_USE= QT=testlib:build TEST_CMAKE_BOOL= BUILD_TESTS TEST_TEST_TARGET= test diff --git a/audio/lmms/Makefile b/audio/lmms/Makefile index 410480e802b43..2861a40bf25a7 100644 --- a/audio/lmms/Makefile +++ b/audio/lmms/Makefile @@ -38,7 +38,7 @@ GH_ACCOUNT= LMMS GH_TUPLE= mjansson:rpmalloc:1.4.0:rpmalloc/src/3rdparty/rpmalloc/rpmalloc \ lukas-w:qt5-x11embed:ec77d4ba40bebc0c53a016adb646b6fa65dd5faf:qt5x11embed/src/3rdparty/qt5-x11embed USE_LDCONFIG= yes -USE_QT= core gui widgets x11extras xml buildtools_build linguisttools_build qmake_build +USE_QT= core gui widgets x11extras xml buildtools:build linguisttools:build qmake:build USE_XORG= xcursor xext xfixes xft xinerama xrender CMAKE_OFF= WANT_ALSA WANT_CALF WANT_CAPS WANT_CMT WANT_SWH WANT_STK \ diff --git a/audio/midipp/Makefile b/audio/midipp/Makefile index 102c9d2367878..76b2e91931b9d 100644 --- a/audio/midipp/Makefile +++ b/audio/midipp/Makefile @@ -14,7 +14,7 @@ LIB_DEPENDS= libumidi20.so:audio/libumidi USES= compiler:c++11-lang gl qmake qt:5 tar:bzip2 USE_GL= gl -USE_QT= buildtools_build core gui network printsupport widgets +USE_QT= buildtools:build core gui network printsupport widgets USE_GITHUB= yes GH_ACCOUNT= hselasky diff --git a/audio/mixxx/Makefile b/audio/mixxx/Makefile index 88f8da8549068..2bba909a2b295 100644 --- a/audio/mixxx/Makefile +++ b/audio/mixxx/Makefile @@ -39,8 +39,8 @@ USE_XORG= ice sm x11 xext USE_GL= gl glu USE_GITHUB= yes GH_ACCOUNT= mixxxdj -USE_QT= buildtools concurrent core dbus gui linguisttools_build network \ - opengl qmake_build script scripttools sql sql-sqlite3 svg \ +USE_QT= buildtools concurrent core dbus gui linguisttools:build network \ + opengl qmake:build script scripttools sql sql-sqlite3 svg \ testlib x11extras xml xmlpatterns widgets CONFLICTS= mixxx22* diff --git a/audio/mixxx22/Makefile b/audio/mixxx22/Makefile index 6736eb855b72a..c6733d52a7d8f 100644 --- a/audio/mixxx22/Makefile +++ b/audio/mixxx22/Makefile @@ -40,8 +40,8 @@ USE_GL= gl glu USE_GITHUB= yes GH_ACCOUNT= mixxxdj USE_QT= buildtools concurrent core dbus gui network opengl script scripttools \ - sql sql-sqlite3 svg testlib xml xmlpatterns linguisttools_build \ - qmake_build widgets + sql sql-sqlite3 svg testlib xml xmlpatterns linguisttools:build \ + qmake:build widgets CONFLICTS= mixxx diff --git a/audio/mous/Makefile b/audio/mous/Makefile index c1122989f6705..34bd074575372 100644 --- a/audio/mous/Makefile +++ b/audio/mous/Makefile @@ -72,7 +72,7 @@ OSS_CMAKE_BOOL= WITH_PLUGIN_OSS QT5_CMAKE_BOOL= WITH_APP_QT5 QT5_USES= qt:5 -QT5_USE= qt=buildtools,core,gui,widgets,qmake_build +QT5_USE= qt=buildtools,core,gui,widgets,qmake:build SNDIO_CMAKE_BOOL= WITH_PLUGIN_SNDIO SNDIO_LIB_DEPENDS= libsndio.so:audio/sndio diff --git a/audio/mpz/Makefile b/audio/mpz/Makefile index 25c7e25622668..0eead51bd70c3 100644 --- a/audio/mpz/Makefile +++ b/audio/mpz/Makefile @@ -16,7 +16,7 @@ GH_ACCOUNT= olegantonyan USES= compiler:c++11-lang desktop-file-utils gstreamer qmake qt:5 USE_GSTREAMER= flac libav mpg123 ogg opus vorbis -USE_QT= buildtools_build concurrent core dbus gui multimedia \ +USE_QT= buildtools:build concurrent core dbus gui multimedia \ network widgets x11extras QMAKE_ARGS= DEFINES+=USE_SYSTEM_TAGLIB DEFINES+=USE_SYSTEM_YAMLCPP diff --git a/audio/mumble/Makefile b/audio/mumble/Makefile index 9cc6c472d60ad..47b6c90d7f007 100644 --- a/audio/mumble/Makefile +++ b/audio/mumble/Makefile @@ -38,7 +38,7 @@ GH_TUPLE= mumble-voip:mumble:${DISTVERSION} \ mumble-voip:sbcelt:045493d:mumble_sbcelt/3rdparty/sbcelt-src \ mumble-voip:mumble-theme:9467fe8:mumble_theme/themes/Mumble -USE_QT= buildtools_build core gui l10n linguist_build network opengl sql sql-sqlite3_run svg widgets xml +USE_QT= buildtools:build core gui l10n linguist:build network opengl sql sql-sqlite3:run svg widgets xml USE_LDCONFIG= yes USE_XORG= ice xi x11 diff --git a/audio/murmur/Makefile b/audio/murmur/Makefile index 625465dfb8e8f..6fa53bb26b556 100644 --- a/audio/murmur/Makefile +++ b/audio/murmur/Makefile @@ -15,7 +15,7 @@ LIB_DEPENDS= libprotobuf.so:devel/protobuf USES= compiler:c++11-lang qmake pkgconfig python:build qt:5 ssl USE_CXXSTD= c++11 -USE_QT= buildtools_build core network sql xml +USE_QT= buildtools:build core network sql xml USE_GITHUB= YES GH_ACCOUNT= mumble-voip @@ -48,7 +48,7 @@ MYSQL_VARS_OFF= CONFIG+=no-sql-mysql MYSQL_USE= QT=sql-mysql SQLITE_VARS_OFF= CONFIG+=no-sqlite3_run -SQLITE_USE= QT=sql-sqlite3_run +SQLITE_USE= QT=sql-sqlite3:run USERS= murmur GROUPS= murmur diff --git a/audio/muse-sequencer/Makefile b/audio/muse-sequencer/Makefile index bf1867827639c..fcee1a6080fe1 100644 --- a/audio/muse-sequencer/Makefile +++ b/audio/muse-sequencer/Makefile @@ -29,7 +29,7 @@ LIB_DEPENDS= libharfbuzz.so:print/harfbuzz \ USES= cmake compiler:c++11-lib desktop-file-utils gl gnome localbase:ldflags qt:5 pkgconfig python shared-mime-info shebangfix USE_GL= gl -USE_QT= core gui svg xml widgets buildtools_build linguisttools_build qmake_build uitools_build +USE_QT= core gui svg xml widgets buildtools:build linguisttools:build qmake:build uitools:build USE_GNOME= atk atkmm cairo cairomm gdkpixbuf2 glib20 glibmm gtk20 gtkmm24 libsigc++20 pango pangomm USE_LDCONFIG= yes diff --git a/audio/musescore/Makefile b/audio/musescore/Makefile index cd91a495feccb..a18e2ed4f1054 100644 --- a/audio/musescore/Makefile +++ b/audio/musescore/Makefile @@ -23,7 +23,7 @@ USE_QT= concurrent core declarative designer graphicaleffects gui \ help location network opengl printsupport \ quickcontrols2 scripttools sql svg testlib \ webchannel widgets xml xmlpatterns \ - buildtools_build linguisttools_build qmake_build uitools_build + buildtools:build linguisttools:build qmake:build uitools:build USE_GITHUB= yes GH_PROJECT= MuseScore diff --git a/audio/mythplugin-mythmusic/Makefile b/audio/mythplugin-mythmusic/Makefile index 36563ef2d25cf..12997c4ef3554 100644 --- a/audio/mythplugin-mythmusic/Makefile +++ b/audio/mythplugin-mythmusic/Makefile @@ -22,7 +22,7 @@ USE_GITHUB= yes GH_ACCOUNT= MythTV GH_PROJECT= mythtv USE_LDCONFIG= yes -USE_QT= buildtools_build core gui qmake_build sql widgets xml +USE_QT= buildtools:build core gui qmake:build sql widgets xml HAS_CONFIGURE= yes CONFIGURE_ARGS= --prefix="${PREFIX}" --cc="${CC}" --cxx="${CXX}" \ diff --git a/audio/noson-app/Makefile b/audio/noson-app/Makefile index fb2c4d65a1a23..c2ea80b3874da 100644 --- a/audio/noson-app/Makefile +++ b/audio/noson-app/Makefile @@ -13,7 +13,7 @@ LIB_DEPENDS= libFLAC.so:audio/flac USES= cmake compiler:c++11-lang qt:5 ssl USE_QT= core dbus declarative graphicaleffects gui network \ - quickcontrols2 svg widgets xml buildtools_build qmake_build + quickcontrols2 svg widgets xml buildtools:build qmake:build USE_GITHUB= yes GH_ACCOUNT= janbar diff --git a/audio/openal-soft/Makefile b/audio/openal-soft/Makefile index 8ec5b6ffa8b90..61c9c48644bda 100644 --- a/audio/openal-soft/Makefile +++ b/audio/openal-soft/Makefile @@ -34,7 +34,7 @@ CONFIG_DESC= Install configuration utility (needs Qt 5) UTILS_DESC= Build and install utility programs CONFIG_USES= qt:5 -CONFIG_USE= QT=core,gui,widgets,buildtools_build,qmake_build +CONFIG_USE= QT=core,gui,widgets,buildtools:build,qmake:build CONFIG_CMAKE_BOOL_OFF= ALSOFT_NO_CONFIG_UTIL CONFIG_CMAKE_ON= -DALSOFT_NO_QT5:BOOL=OFF diff --git a/audio/padthv1-lv2/Makefile b/audio/padthv1-lv2/Makefile index f761c88483597..535e3c124b428 100644 --- a/audio/padthv1-lv2/Makefile +++ b/audio/padthv1-lv2/Makefile @@ -20,7 +20,7 @@ LIB_DEPENDS= libfftw3.so:math/fftw3 \ USES= cmake compiler:c++17-lang desktop-file-utils gl pkgconfig qt:5 \ shared-mime-info USE_GL= gl -USE_QT= core gui svg widgets xml buildtools_build linguisttools_build qmake_build +USE_QT= core gui svg widgets xml buildtools:build linguisttools:build qmake:build USE_GITHUB= yes GH_ACCOUNT= rncbc diff --git a/audio/pavucontrol-qt/Makefile b/audio/pavucontrol-qt/Makefile index febf7f5d79780..3505a62bd8a80 100644 --- a/audio/pavucontrol-qt/Makefile +++ b/audio/pavucontrol-qt/Makefile @@ -13,7 +13,7 @@ LIB_DEPENDS= libpulse.so:audio/pulseaudio USES= cmake compiler:c++14-lang gettext-runtime localbase:ldflags qt:5 \ lxqt pkgconfig tar:xz gnome -USE_QT= buildtools_build qmake_build core dbus gui linguisttools \ +USE_QT= buildtools:build qmake:build core dbus gui linguisttools \ widgets USE_LXQT= buildtools USE_GNOME= glib20 diff --git a/audio/pianobooster/Makefile b/audio/pianobooster/Makefile index 50c3a229fe959..8cf7073eb76f1 100644 --- a/audio/pianobooster/Makefile +++ b/audio/pianobooster/Makefile @@ -19,7 +19,7 @@ USES= cmake compiler:c++11-lang desktop-file-utils gl pkgconfig qt:5 USE_GITHUB= yes GH_ACCOUNT= captnfab GH_PROJECT= PianoBooster -USE_QT= core gui opengl widgets xml buildtools_build linguisttools_build qmake_build +USE_QT= core gui opengl widgets xml buildtools:build linguisttools:build qmake:build USE_GL= gl glu CMAKE_ON= USE_JACK diff --git a/audio/picard/Makefile b/audio/picard/Makefile index e5c5a6c1953a1..2683eef687e9a 100644 --- a/audio/picard/Makefile +++ b/audio/picard/Makefile @@ -22,7 +22,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}discid>=1.0:audio/py-discid@${PY_FLAVOR} \ USES= gettext pyqt:5 python:3.7+ desktop-file-utils USE_LOCALE= en_US.UTF-8 -USE_PYQT= pyqt5_run sip +USE_PYQT= pyqt5:run sip USE_PYTHON= autoplist distutils noflavors CONFLICTS_INSTALL= picard-tools py*-python-picard # bin/picard diff --git a/audio/plasma5-plasma-pa/Makefile b/audio/plasma5-plasma-pa/Makefile index 9327b55dab7de..fed8caddb0c74 100644 --- a/audio/plasma5-plasma-pa/Makefile +++ b/audio/plasma5-plasma-pa/Makefile @@ -14,9 +14,9 @@ USES= cmake compiler:c++11-lib gettext gnome kde:5 pkgconfig qt:5 \ USE_GNOME= glib20 USE_KDE= config configwidgets coreaddons ecm globalaccel i18n \ kdeclarative notifications package plasma-framework \ - doctools_build + doctools:build USE_QT= core dbus declarative gui network widgets \ - buildtools_build qmake_build + buildtools:build qmake:build SHEBANG_FILES= data/plasmaVolumeDisableKMixAutostart.pl CMAKE_OFF= USE_GCONF diff --git a/audio/polyphone/Makefile b/audio/polyphone/Makefile index 27428a5a16a79..4bb7471759e85 100644 --- a/audio/polyphone/Makefile +++ b/audio/polyphone/Makefile @@ -23,7 +23,7 @@ DOS2UNIX_FILES= polyphone.pro \ editor/graphics/graphiquefourier.cpp \ editor/tree/treeitemdelegate.cpp USE_GL= gl -USE_QT= core concurrent gui network printsupport svg widgets buildtools_build linguisttools_build qmake_build +USE_QT= core concurrent gui network printsupport svg widgets buildtools:build linguisttools:build qmake:build USE_GNOME= glib20 USE_CXXSTD= c++11 diff --git a/audio/pulseaudio-qt/Makefile b/audio/pulseaudio-qt/Makefile index b772c83d09fe0..f8f009fec071c 100644 --- a/audio/pulseaudio-qt/Makefile +++ b/audio/pulseaudio-qt/Makefile @@ -12,8 +12,8 @@ LIB_DEPENDS= libcanberra.so:audio/libcanberra \ USES= cmake compiler:c++11-lib gettext kde:5 \ pkgconfig qt:5 shebangfix tar:xz -USE_KDE= ecm_build +USE_KDE= ecm:build USE_QT= core dbus gui \ - buildtools_build qmake_build + buildtools:build qmake:build .include diff --git a/audio/qaudiosonar/Makefile b/audio/qaudiosonar/Makefile index 9e818caeb6352..36b85a342b023 100644 --- a/audio/qaudiosonar/Makefile +++ b/audio/qaudiosonar/Makefile @@ -14,7 +14,7 @@ LIB_DEPENDS= libjack.so:audio/jack USES= compiler:c++11-lang gl qmake qt:5 tar:bzip2 USE_GL= gl -USE_QT= buildtools_build core gui widgets +USE_QT= buildtools:build core gui widgets USE_GITHUB= yes GH_ACCOUNT= hselasky diff --git a/audio/qjackctl/Makefile b/audio/qjackctl/Makefile index f8677ee3f6a8d..d27d4497cd285 100644 --- a/audio/qjackctl/Makefile +++ b/audio/qjackctl/Makefile @@ -13,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libjack.so:audio/jack USES= cmake compiler:c++11-lib gl localbase:ldflags pkgconfig qt:5 -USE_QT= core gui network widgets x11extras xml buildtools_build linguisttools_build qmake_build +USE_QT= core gui network widgets x11extras xml buildtools:build linguisttools:build qmake:build USE_GL= gl USE_CXXSTD= c++11 diff --git a/audio/qmidiarp/Makefile b/audio/qmidiarp/Makefile index 98ecbe4582cdb..6e99ff0ab86ec 100644 --- a/audio/qmidiarp/Makefile +++ b/audio/qmidiarp/Makefile @@ -22,8 +22,8 @@ USES= autoreconf compiler:c++11-lib desktop-file-utils \ gmake gnome localbase libtool pkgconfig qt:5 USE_GITHUB= yes GH_ACCOUNT= emuse -USE_QT= core gui network widgets buildtools_build \ - linguisttools_build +USE_QT= core gui network widgets buildtools:build \ + linguisttools:build USE_CXXSTD= c++11 GNU_CONFIGURE= yes CONFIGURE_ARGS= --enable-qt5 --enable-translations=yes diff --git a/audio/qmidictl/Makefile b/audio/qmidictl/Makefile index 0ced650fbec3b..f8989271ca999 100644 --- a/audio/qmidictl/Makefile +++ b/audio/qmidictl/Makefile @@ -12,7 +12,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= cmake compiler:c++11-lang gl localbase pkgconfig qt:5 GNU_CONFIGURE= yes -USE_QT= core gui network widgets qmake_build buildtools_build linguisttools_build +USE_QT= core gui network widgets qmake:build buildtools:build linguisttools:build USE_GL= gl BINARY_ALIAS= qmake=${QMAKE} diff --git a/audio/qmidinet/Makefile b/audio/qmidinet/Makefile index 946158f9785db..58f0486c0cfd3 100644 --- a/audio/qmidinet/Makefile +++ b/audio/qmidinet/Makefile @@ -13,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libjack.so:audio/jack USES= cmake compiler:c++17-lang pkgconfig qt:5 -USE_QT= core gui network widgets buildtools_build qmake_build +USE_QT= core gui network widgets buildtools:build qmake:build CMAKE_OFF= CONFIG_ALSA_MIDI # libalsa doesn't have MIDI functionality on FreeBSD diff --git a/audio/qsampler/Makefile b/audio/qsampler/Makefile index fcee19f168df7..feaf5ec8ce688 100644 --- a/audio/qsampler/Makefile +++ b/audio/qsampler/Makefile @@ -18,7 +18,7 @@ USES= cmake compiler:c++17-lang desktop-file-utils gl localbase:ldflags pkgconf shared-mime-info qmake:no_env qt:5 xorg USE_GL= gl USE_QT= core gui network widgets x11extras \ - buildtools_build linguisttools_build qmake_build + buildtools:build linguisttools:build qmake:build USE_GITHUB= yes GH_ACCOUNT= rncbc diff --git a/audio/qsynth/Makefile b/audio/qsynth/Makefile index b755a75c41dd4..5b2072e056de2 100644 --- a/audio/qsynth/Makefile +++ b/audio/qsynth/Makefile @@ -14,8 +14,8 @@ LIB_DEPENDS= libfluidsynth.so:audio/fluidsynth USES= cmake compiler:c++11-lang pkgconfig qt:5 USE_CXXSTD= c++11 -USE_QT= core gui network widgets x11extras buildtools_build \ - linguisttools_build qmake_build +USE_QT= core gui network widgets x11extras buildtools:build \ + linguisttools:build qmake:build # cf. PR 224488 LDFLAGS+= -Wl,--as-needed diff --git a/audio/qtractor/Makefile b/audio/qtractor/Makefile index 3d761bdb84d80..e8e29f133e26a 100644 --- a/audio/qtractor/Makefile +++ b/audio/qtractor/Makefile @@ -41,8 +41,8 @@ LIB_DEPENDS= libasound.so:audio/alsa-lib \ USES= cmake compiler:c++17-lang desktop-file-utils gettext-runtime gnome localbase:ldflags pkgconfig qt:5 shared-mime-info USE_GNOME= atk cairo gdkpixbuf2 gtk20 gtkmm24 pango -USE_QT= core gui svg widgets x11extras xml buildtools_build linguisttools_build qmake_build -#USE_QT= base svg tools_build # for Qt6 +USE_QT= core gui svg widgets x11extras xml buildtools:build linguisttools:build qmake:build +#USE_QT= base svg tools:build # for Qt6 WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTNAME}_${DISTVERSION} diff --git a/audio/quimup/Makefile b/audio/quimup/Makefile index 9665a0897b1d5..92fcb91efa714 100644 --- a/audio/quimup/Makefile +++ b/audio/quimup/Makefile @@ -16,7 +16,7 @@ LIB_DEPENDS= libmpdclient.so:audio/libmpdclient \ libtag.so:audio/taglib USES= compiler:c++11-lang gl pkgconfig qmake qt:5 -USE_QT= core gui network widgets buildtools_build +USE_QT= core gui network widgets buildtools:build USE_GL= gl WRKSRC= ${WRKDIR}/Quimup_${PORTVERSION}_source diff --git a/audio/qxgedit/Makefile b/audio/qxgedit/Makefile index da5af7e43e8cd..2df6c3f64d1ec 100644 --- a/audio/qxgedit/Makefile +++ b/audio/qxgedit/Makefile @@ -13,6 +13,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libasound.so:audio/alsa-lib USES= cmake compiler:c++17-lang pkgconfig qt:5 -USE_QT= core gui network widgets buildtools_build qmake_build +USE_QT= core gui network widgets buildtools:build qmake:build .include diff --git a/audio/rosegarden/Makefile b/audio/rosegarden/Makefile index 3b9c9aabaf427..c2c3d8e6ac39d 100644 --- a/audio/rosegarden/Makefile +++ b/audio/rosegarden/Makefile @@ -30,7 +30,7 @@ USES= alias cmake compiler:c++11-lib desktop-file-utils \ localbase:ldflags pkgconfig shared-mime-info tar:bzip2 \ qt:5 xorg USE_QT= core gui network printsupport testlib widgets xml \ - buildtools_build linguisttools_build qmake_build + buildtools:build linguisttools:build qmake:build USE_XORG= ice sm x11 xext OPTIONS_DEFINE= LIRC diff --git a/audio/samplv1-lv2/Makefile b/audio/samplv1-lv2/Makefile index ee87dba2bfad0..7cb7599dad7ce 100644 --- a/audio/samplv1-lv2/Makefile +++ b/audio/samplv1-lv2/Makefile @@ -21,7 +21,7 @@ LIB_DEPENDS= libfftw3.so:math/fftw3 \ USES= cmake compiler:c++17-lang desktop-file-utils gl pkgconfig qt:5 \ shared-mime-info USE_GL= gl -USE_QT= core gui svg widgets xml buildtools_build linguisttools_build qmake_build +USE_QT= core gui svg widgets xml buildtools:build linguisttools:build qmake:build USE_GITHUB= yes GH_ACCOUNT= rncbc diff --git a/audio/sayonara/Makefile b/audio/sayonara/Makefile index 1be7b6cc50c22..f4087064ef639 100644 --- a/audio/sayonara/Makefile +++ b/audio/sayonara/Makefile @@ -16,8 +16,8 @@ USES= cmake compiler:c++11-lib desktop-file-utils gnome gstreamer pkgconfig \ qt:5 python shebangfix USE_GNOME= glib20 USE_GSTREAMER= flac libav mpg123 ogg opus vorbis -USE_QT= dbus core gui network sql sql-sqlite3_run svg widgets xml \ - buildtools_build qmake_build linguisttools_build +USE_QT= dbus core gui network sql sql-sqlite3:run svg widgets xml \ + buildtools:build qmake:build linguisttools:build USE_GITLAB= yes GL_ACCOUNT= luciocarreras diff --git a/audio/sonic-visualiser/Makefile b/audio/sonic-visualiser/Makefile index fc02dc312dd49..51c451b247c84 100644 --- a/audio/sonic-visualiser/Makefile +++ b/audio/sonic-visualiser/Makefile @@ -27,7 +27,7 @@ LIB_DEPENDS= libcapnp.so:devel/capnproto \ USES= autoreconf compiler:c++11-lang desktop-file-utils dos2unix gmake gl pkgconfig qt:5 xorg DOS2UNIX_FILES= convert.pro -USE_QT= buildtools_build core gui network qmake_build svg testlib widgets xml +USE_QT= buildtools:build core gui network qmake:build svg testlib widgets xml USE_XORG= x11 USE_GL= gl diff --git a/audio/soundkonverter/Makefile b/audio/soundkonverter/Makefile index 9f8420288c884..bffacd3e5c86c 100644 --- a/audio/soundkonverter/Makefile +++ b/audio/soundkonverter/Makefile @@ -17,14 +17,14 @@ LIB_DEPENDS= libtag.so:audio/taglib \ GH_ACCOUNT= dfaust USES= cmake compiler:c++11-lang kde:5 qt:5 xorg USE_GITHUB= yes -USE_QT= dbus concurrent core buildtools_build gui network printsupport \ - qmake_build widgets xml +USE_QT= dbus concurrent core buildtools:build gui network printsupport \ + qmake:build widgets xml USE_KDE= auth codecs config configwidgets completion coreaddons crash \ bookmarks guiaddons i18n iconthemes init itemviews jobwidgets \ kdelibs4support kio libkcddb notifications parts textwidgets \ service solid sonnet unitconversion windowsystem widgetsaddons \ xmlgui \ - doctools_build + doctools:build USE_XORG= x11 WRKSRC_SUBDIR= src diff --git a/audio/spectmorph/Makefile b/audio/spectmorph/Makefile index 6da0da43c3d95..5967ad7054a30 100644 --- a/audio/spectmorph/Makefile +++ b/audio/spectmorph/Makefile @@ -21,7 +21,7 @@ LIB_DEPENDS= libao.so:audio/libao \ libsndfile.so:audio/libsndfile USES= autoreconf desktop-file-utils gettext-runtime gl gmake gnome libtool pkgconfig python:run qt:5 shebangfix tar:bz2 xorg -USE_QT= core gui widgets buildtools_build +USE_QT= core gui widgets buildtools:build USE_GNOME= cairo glib20 USE_GL= gl USE_XORG= x11 diff --git a/audio/spotify-qt/Makefile b/audio/spotify-qt/Makefile index 8ea97e450a9b6..de1f064dda992 100644 --- a/audio/spotify-qt/Makefile +++ b/audio/spotify-qt/Makefile @@ -15,7 +15,7 @@ RUN_DEPENDS= spotifyd:audio/spotifyd USES= cmake compiler:c++11-lang qt:5 USE_GITHUB= yes GH_ACCOUNT= kraxarn -USE_QT= core dbus gui network svg widgets buildtools_build qmake_build +USE_QT= core dbus gui network svg widgets buildtools:build qmake:build PLIST_FILES= bin/spotify-qt \ share/applications/spotify-qt.desktop \ diff --git a/audio/strawberry/Makefile b/audio/strawberry/Makefile index 377a195ad6c85..ca2498afe9fef 100644 --- a/audio/strawberry/Makefile +++ b/audio/strawberry/Makefile @@ -24,7 +24,7 @@ USES= cmake compiler:c++11-lang desktop-file-utils gettext-runtime \ USE_GNOME= glib20 USE_QT= concurrent core dbus gui linguisttools network sql sql-sqlite3 \ - widgets x11extras buildtools_build qmake_build testlib_build + widgets x11extras buildtools:build qmake:build testlib:build USE_XORG= ice sm x11 xcb xext CMAKE_ARGS= -DENABLE_GSTREAMER:BOOL=true \ diff --git a/audio/supercollider/Makefile b/audio/supercollider/Makefile index 97bc36f17cb0a..207e210e3dfd9 100644 --- a/audio/supercollider/Makefile +++ b/audio/supercollider/Makefile @@ -20,8 +20,8 @@ LIB_DEPENDS= libboost_system.so:devel/boost-libs \ USES= cmake compiler:c++11-lang iconv localbase pkgconfig \ qt:5 readline shared-mime-info tar:bzip2 xorg -USE_QT= buildtools_build concurrent core declarative gui linguisttools location \ - network opengl printsupport qmake_build sensors \ +USE_QT= buildtools:build concurrent core declarative gui linguisttools location \ + network opengl printsupport qmake:build sensors \ sql widgets websockets webchannel svg USE_XORG= x11 USE_LDCONFIG= yes diff --git a/audio/synthv1-lv2/Makefile b/audio/synthv1-lv2/Makefile index 4fb8ab59aec46..7bbf0fd5ed466 100644 --- a/audio/synthv1-lv2/Makefile +++ b/audio/synthv1-lv2/Makefile @@ -18,7 +18,7 @@ LIB_DEPENDS= libjack.so:audio/jack \ USES= cmake compiler:c++17-lang desktop-file-utils gl pkgconfig qt:5 \ shared-mime-info USE_GL= gl -USE_QT= core gui svg widgets xml buildtools_build linguisttools_build qmake_build +USE_QT= core gui svg widgets xml buildtools:build linguisttools:build qmake:build USE_GITHUB= yes GH_ACCOUNT= rncbc diff --git a/audio/tiatracker/Makefile b/audio/tiatracker/Makefile index e3e651392a647..5c6fc1b2f2237 100644 --- a/audio/tiatracker/Makefile +++ b/audio/tiatracker/Makefile @@ -16,7 +16,7 @@ LICENSE_FILE= ${WRKSRC}/license.txt USES= compiler:c++11-lang dos2unix gl qmake qt:5 sdl tar:xz DOS2UNIX_GLOB= *.c *.cpp *.h *.k65 *.pro USE_GL= gl -USE_QT= core gui widgets buildtools_build +USE_QT= core gui widgets buildtools:build USE_SDL= sdl2 CFLAGS+= `sdl2-config --cflags` diff --git a/audio/traverso/Makefile b/audio/traverso/Makefile index 5fe3094ecfb89..0203424cd0c8c 100644 --- a/audio/traverso/Makefile +++ b/audio/traverso/Makefile @@ -28,7 +28,7 @@ LIB_DEPENDS= libfftw3.so:math/fftw3 \ libwavpack.so:audio/wavpack USES= cmake compiler:c++11-lang desktop-file-utils localbase:ldflags pkgconfig qt:5 -USE_QT= core gui printsupport xml widgets buildtools_build qmake_build +USE_QT= core gui printsupport xml widgets buildtools:build qmake:build CMAKE_OFF= WANT_ALSA diff --git a/audio/virtual_oss_ctl/Makefile b/audio/virtual_oss_ctl/Makefile index f9291dc7a3392..a41ba4c02b0b6 100644 --- a/audio/virtual_oss_ctl/Makefile +++ b/audio/virtual_oss_ctl/Makefile @@ -14,7 +14,7 @@ LIB_DEPENDS= libfftw3.so:math/fftw3 USES= compiler:c++11-lang gl qmake qt:5 tar:bzip2 USE_GL= gl -USE_QT= buildtools_build core gui widgets +USE_QT= buildtools:build core gui widgets USE_GITHUB= yes GH_ACCOUNT= hselasky diff --git a/audio/vmpk/Makefile b/audio/vmpk/Makefile index 75ebfe377281e..0086de86fdab9 100644 --- a/audio/vmpk/Makefile +++ b/audio/vmpk/Makefile @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libdrumstick-rt.so:audio/drumstick USES= compiler:c++11-lang cmake localbase:ldflags pkgconfig qt:6 tar:bz2 xorg -USE_QT= base svg tools_build +USE_QT= base svg tools:build USE_XORG= xcb CMAKE_ON= EMBED_TRANSLATIONS diff --git a/audio/welle.io/Makefile b/audio/welle.io/Makefile index f67f572176fb1..cfe4788e527c4 100644 --- a/audio/welle.io/Makefile +++ b/audio/welle.io/Makefile @@ -20,7 +20,7 @@ USE_GITHUB= yes GH_ACCOUNT= AlbrechtL GH_TAGNAME= 0aacf578d77d79212483cd6fce436fb66523f63f USE_QT= charts core dbus declarative gui multimedia network \ - quickcontrols2 widgets buildtools_build qmake_build + quickcontrols2 widgets buildtools:build qmake:build OPTIONS_DEFINE= AIRSPY CLI FFTW RTLSDR SOAPY OPTIONS_DEFAULT= FFTW RTLSDR diff --git a/benchmarks/kdiskmark/Makefile b/benchmarks/kdiskmark/Makefile index 4f4dd425d9408..810d123924543 100644 --- a/benchmarks/kdiskmark/Makefile +++ b/benchmarks/kdiskmark/Makefile @@ -15,9 +15,9 @@ GH_ACCOUNT= JonMagon GH_PROJECT= KDiskMark USES= cmake compiler:c++11-lang kde:5 qt:5 -USE_QT= buildtools_build linguisttools_build qmake_build \ +USE_QT= buildtools:build linguisttools:build qmake:build \ dbus core gui widgets -USE_KDE= ecm_build auth coreaddons +USE_KDE= ecm:build auth coreaddons post-patch: @${REINPLACE_CMD} -e '/--ioengine=/s,libaio,posixaio,' \ diff --git a/biology/sigviewer/Makefile b/biology/sigviewer/Makefile index ebea657a89694..915dd10649cae 100644 --- a/biology/sigviewer/Makefile +++ b/biology/sigviewer/Makefile @@ -16,7 +16,7 @@ LIB_DEPENDS= libbiosig.so:biology/biosig \ libxdf.so:misc/libxdf USES= gl qmake qt:5 -USE_QT= core gui widgets xml qmake_build buildtools_build +USE_QT= core gui widgets xml qmake:build buildtools:build USE_GL= gl USE_GITHUB= yes diff --git a/biology/ugene/Makefile b/biology/ugene/Makefile index e3122d99ed814..561b1c334eb1e 100644 --- a/biology/ugene/Makefile +++ b/biology/ugene/Makefile @@ -20,10 +20,10 @@ GH_ACCOUNT= ugeneunipro USES= desktop-file-utils gl qmake qt:5 shared-mime-info sqlite xorg USE_GL= gl glu -USE_QT= buildtools_build linguisttools_build \ +USE_QT= buildtools:build linguisttools:build \ core gui network opengl printsupport scripttools script \ sql svg testlib widgets xml \ - imageformats_run + imageformats:run USE_XORG= x11 xtst QMAKE_ARGS= INSTALL_PREFIX="${PREFIX}" UGENE_INSTALL_DATA="${DATADIR}" \ diff --git a/cad/appcsxcad/Makefile b/cad/appcsxcad/Makefile index 616a31d791057..eeacd1ff5ed40 100644 --- a/cad/appcsxcad/Makefile +++ b/cad/appcsxcad/Makefile @@ -23,7 +23,7 @@ LIB_DEPENDS= libCSXCAD.so:cad/csxcad \ libvtkCommonCore-9.1.so:math/vtk9 USES= cmake jpeg pkgconfig qt:5 xorg -USE_QT= core gui sql widgets xml buildtools_build qmake_build +USE_QT= core gui sql widgets xml buildtools:build qmake:build USE_XORG= ice sm x11 xext xt USE_LDCONFIG= yes diff --git a/cad/caneda/Makefile b/cad/caneda/Makefile index 94e7942177e78..6f1303bbfb8b8 100644 --- a/cad/caneda/Makefile +++ b/cad/caneda/Makefile @@ -17,7 +17,7 @@ USES= cmake compiler:c++11-lang desktop-file-utils qt:5 \ USE_GITHUB= yes GH_ACCOUNT= Caneda GH_PROJECT= Caneda -USE_QT= core gui printsupport svg widgets buildtools_build linguisttools_build qmake_build +USE_QT= core gui printsupport svg widgets buildtools:build linguisttools:build qmake:build CMAKE_ARGS= -DQWT_INCLUDE_DIR=${LOCALBASE}/include/qt5/qwt6 -DQWT_LIBRARY=${LOCALBASE}/lib/qt5/libqwt6.so diff --git a/cad/freecad/Makefile b/cad/freecad/Makefile index e31e81f925002..ed6b37266a62f 100644 --- a/cad/freecad/Makefile +++ b/cad/freecad/Makefile @@ -41,7 +41,7 @@ USE_GITHUB= yes USE_XORG= ice sm x11 xext xt USE_GL= gl glu USE_QT= buildtools concurrent core declarative gui location network \ - opengl printsupport qmake_build svg webchannel webengine \ + opengl printsupport qmake:build svg webchannel webengine \ widgets xml xmlpatterns USE_LDCONFIG= yes diff --git a/cad/ktechlab/Makefile b/cad/ktechlab/Makefile index fefbecc51cd9f..64df803002096 100644 --- a/cad/ktechlab/Makefile +++ b/cad/ktechlab/Makefile @@ -17,13 +17,13 @@ USES= cmake compiler:c++11-lang desktop-file-utils gnome kde:5 \ localbase qt:5 shared-mime-info xorg USE_GITHUB= yes USE_QT= concurrent core dbus gui network printsupport widgets xml \ - qmake_build buildtools_build + qmake:build buildtools:build USE_KDE= auth bookmarks codecs completion config configwidgets coreaddons \ crash guiaddons i18n iconthemes init itemviews jobwidgets js \ kdelibs4support khtml kio notifications parts service solid \ sonnet syntaxhighlighting texteditor textwidgets unitconversion \ widgetsaddons windowsystem xmlgui \ - doctools_build + doctools:build USE_GNOME= glib20 USE_XORG= x11 diff --git a/cad/ldview/Makefile b/cad/ldview/Makefile index 9d2cd2bf353a0..cc59884a84d18 100644 --- a/cad/ldview/Makefile +++ b/cad/ldview/Makefile @@ -19,7 +19,7 @@ RUN_DEPENDS= bash:shells/bash \ ldraw>0:cad/ldraw USES= desktop-file-utils gl gmake jpeg qmake qt:5 shared-mime-info shebangfix xorg -USE_QT= core gui linguist opengl printsupport widgets buildtools_build qmake_build +USE_QT= core gui linguist opengl printsupport widgets buildtools:build qmake:build USE_GL= gl glu USE_XORG= x11 diff --git a/cad/leocad/Makefile b/cad/leocad/Makefile index db31f4cca4fe6..0d268b466615a 100644 --- a/cad/leocad/Makefile +++ b/cad/leocad/Makefile @@ -16,7 +16,7 @@ RUN_DEPENDS= ldraw>0:cad/ldraw USES= compiler:c++11-lang cpe desktop-file-utils gl qmake qt:5 shared-mime-info xorg USE_GITHUB= yes GH_ACCOUNT= leozide -USE_QT= core gui concurrent network opengl printsupport widgets xml buildtools_build linguisttools_build +USE_QT= core gui concurrent network opengl printsupport widgets xml buildtools:build linguisttools:build USE_GL= gl QMAKE_ARGS= INSTALL_PREFIX=${PREFIX} MAN_DIR=${PREFIX}/man/man1 LDRAW_LIBRARY_PATH=${PREFIX}/share/ldraw diff --git a/cad/librecad/Makefile b/cad/librecad/Makefile index 4eeef0830510c..ead37ec9f9421 100644 --- a/cad/librecad/Makefile +++ b/cad/librecad/Makefile @@ -23,7 +23,7 @@ GH_ACCOUNT= LibreCAD GH_PROJECT= LibreCAD USE_GL= gl USE_QT= core gui printsupport svg widgets \ - buildtools_build linguisttools_build + buildtools:build linguisttools:build QMAKE_ARGS+= BOOST_DIR="${LOCALBASE}" diff --git a/cad/librepcb/Makefile b/cad/librepcb/Makefile index 338293b21e4e8..efc3c7edc2c74 100644 --- a/cad/librepcb/Makefile +++ b/cad/librepcb/Makefile @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= cmake compiler:c++11-lang desktop-file-utils gl qt:5 shared-mime-info zip USE_QT= concurrent core gui network opengl printsupport sql svg xml widgets \ - buildtools_build linguisttools_build testlib_build qmake_build + buildtools:build linguisttools:build testlib:build qmake:build USE_GL= gl WRKSRC= ${WRKDIR}/${PORTNAME}-${DISTVERSION} diff --git a/cad/meshlab/Makefile b/cad/meshlab/Makefile index e4f40a9c8cab1..10a66a6148831 100644 --- a/cad/meshlab/Makefile +++ b/cad/meshlab/Makefile @@ -15,7 +15,7 @@ LIB_DEPENDS= libmpirxx.so:math/mpir USES= dos2unix gl qmake:outsource qt:5 USE_GL= gl glu glew -USE_QT= buildtools_build core gui network \ +USE_QT= buildtools:build core gui network \ opengl script xml xmlpatterns widgets USE_GITHUB= yes GH_ACCOUNT= cnr-isti-vclab diff --git a/cad/openroad/Makefile b/cad/openroad/Makefile index d53b4ef050a65..e24d081da4762 100644 --- a/cad/openroad/Makefile +++ b/cad/openroad/Makefile @@ -28,7 +28,7 @@ LIB_DEPENDS= libcudd.so:math/cudd \ libspdlog.so:devel/spdlog USES= bison compiler:c++17-lang cmake eigen:3 qt:5 localbase:ldflags python:3.7+,build readline tcl:86 # the code asks for tcl-87, but build fails: https://github.com/The-OpenROAD-Project/OpenROAD/issues/508 -USE_QT= core gui widgets buildtools_build qmake_build +USE_QT= core gui widgets buildtools:build qmake:build USE_GITHUB= yes GH_ACCOUNT= The-OpenROAD-Project diff --git a/cad/openscad-devel/Makefile b/cad/openscad-devel/Makefile index 4f47578cc6984..8408023a64e77 100644 --- a/cad/openscad-devel/Makefile +++ b/cad/openscad-devel/Makefile @@ -35,7 +35,7 @@ USES= bison cmake compiler:c++14-lang cpe desktop-file-utils eigen:3 gettext \ USE_GITHUB= yes USE_GL= gl glu glew USE_GNOME= cairo glib20 libxml2 -USE_QT= buildtools_build core concurrent_build dbus gui multimedia qmake_build svg widgets +USE_QT= buildtools:build core concurrent:build dbus gui multimedia qmake:build svg widgets USE_XORG= x11 GH_ACCOUNT= microsoft:mimalloc GH_PROJECT= MCAD:mcad mimalloc:mimalloc diff --git a/cad/openscad/Makefile b/cad/openscad/Makefile index bebfb2e4ef2ca..1dbe9e9e148df 100644 --- a/cad/openscad/Makefile +++ b/cad/openscad/Makefile @@ -31,7 +31,7 @@ USES= bison compiler:c++14-lang cpe desktop-file-utils eigen:3 gettext \ USE_GITHUB= yes USE_GL= gl glu glew USE_GNOME= glib20 libxml2 -USE_QT= buildtools_build core concurrent_build dbus gui multimedia widgets +USE_QT= buildtools:build core concurrent:build dbus gui multimedia widgets USE_XORG= x11 GH_TAGNAME= 41f58fe57c03457a3a8b4dc541ef5654ec3e8c78 QMAKE_ARGS= CONFIG+="experimental" VERSION=${PORTVERSION} diff --git a/cad/py-pyfda/Makefile b/cad/py-pyfda/Makefile index 7c8dc8fe1b712..62a58cfb26587 100644 --- a/cad/py-pyfda/Makefile +++ b/cad/py-pyfda/Makefile @@ -20,7 +20,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}docutils>0:textproc/py-docutils@${PY_FLAVOR} USES= python:3.7+ pyqt:5 USE_PYTHON= distutils autoplist -USE_PYQT= pyqt5_run +USE_PYQT= pyqt5:run NO_ARCH= yes post-extract: diff --git a/cad/qcad/Makefile b/cad/qcad/Makefile index 53cf330b187ee..1b46846931d98 100644 --- a/cad/qcad/Makefile +++ b/cad/qcad/Makefile @@ -21,7 +21,7 @@ BUILD_DEPENDS= bash:shells/bash \ USES= compiler:c++11-lang gl gmake qmake qt:5 USE_GITHUB= yes USE_LDCONFIG= yes -USE_QT= buildtools qmake_build \ +USE_QT= buildtools qmake:build \ designer gui help imageformats network opengl script \ scripttools sql svg uitools xml xmlpatterns webkit USE_GL= glu diff --git a/cad/qcsxcad/Makefile b/cad/qcsxcad/Makefile index 9874742a7c82a..8fc5665071782 100644 --- a/cad/qcsxcad/Makefile +++ b/cad/qcsxcad/Makefile @@ -21,7 +21,7 @@ LIB_DEPENDS= libCSXCAD.so:cad/csxcad \ libvtkCommonCore-9.1.so:math/vtk9 USES= cmake gl jpeg pkgconfig qt:5 xorg -USE_QT= core gui opengl sql widgets xml buildtools_build qmake_build +USE_QT= core gui opengl sql widgets xml buildtools:build qmake:build USE_XORG= ice sm x11 xext xt USE_GL= gl opengl USE_LDCONFIG= yes diff --git a/cad/qelectrotech/Makefile b/cad/qelectrotech/Makefile index b38c32b655928..30c195a899758 100644 --- a/cad/qelectrotech/Makefile +++ b/cad/qelectrotech/Makefile @@ -18,7 +18,7 @@ USES= compiler:c++11-lib desktop-file-utils gl kde:5 qmake qt:5 \ USE_GL= gl USE_QT= concurrent core gui network printsupport sql sql-sqlite3 \ svg widgets xml \ - buildtools_build + buildtools:build USE_KDE= coreaddons widgetsaddons OPTIONS_DEFINE= DEBUG DOCS diff --git a/cad/qucs-s/Makefile b/cad/qucs-s/Makefile index 52cb64ae6d3fa..a4f1940900498 100644 --- a/cad/qucs-s/Makefile +++ b/cad/qucs-s/Makefile @@ -11,7 +11,7 @@ LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING USES= cmake qt:5 -USE_QT= core gui printsupport svg widgets buildtools_build linguisttools_build qmake_build +USE_QT= core gui printsupport svg widgets buildtools:build linguisttools:build qmake:build USE_GITHUB= yes GH_ACCOUNT= ra3xdh diff --git a/cad/veroroute/Makefile b/cad/veroroute/Makefile index f0a15efcdb13b..8e27bd706edc2 100644 --- a/cad/veroroute/Makefile +++ b/cad/veroroute/Makefile @@ -12,7 +12,7 @@ LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/../licenses/license_GPLv3.txt USES= compiler:c++11-lang gl qmake qt:5 -USE_QT= core gui network widgets buildtools_build +USE_QT= core gui network widgets buildtools:build USE_GL= gl WRKSRC= ${WRKDIR}/VeroRoute diff --git a/chinese/fcitx-libpinyin/Makefile b/chinese/fcitx-libpinyin/Makefile index 47ba82dab65e6..a4e0570830b60 100644 --- a/chinese/fcitx-libpinyin/Makefile +++ b/chinese/fcitx-libpinyin/Makefile @@ -33,7 +33,7 @@ QT5_DESC= Enable Qtr for dictmanager .if ${PORT_OPTIONS:MQT5} USES+= qt:5 -USE_QT= qmake_build gui webengine buildtools_build +USE_QT= qmake:build gui webengine buildtools:build USE_LDCONFIG= ${PREFIX}/lib/fcitx/qt PLIST_SUB+= QT5="" .else diff --git a/chinese/fcitx5-chinese-addons/Makefile b/chinese/fcitx5-chinese-addons/Makefile index 82fb09bce79ce..a47792788e23e 100644 --- a/chinese/fcitx5-chinese-addons/Makefile +++ b/chinese/fcitx5-chinese-addons/Makefile @@ -32,7 +32,7 @@ USE_LDCONFIG= yes GUI_DESC= Configuration GUI GUI_USES= qt:5 -GUI_USE= qt=dbus,concurrent,webkit,buildtools_build,qmake_build +GUI_USE= qt=dbus,concurrent,webkit,buildtools:build,qmake:build GUI_LIB_DEPENDS= libFcitx5Qt5DBusAddons.so:textproc/fcitx5-qt GUI_CMAKE_ON= -DUSE_WEBKIT:BOOL=true diff --git a/chinese/gcin-qt5/Makefile b/chinese/gcin-qt5/Makefile index ee49850d008bd..281f8ebe5b030 100644 --- a/chinese/gcin-qt5/Makefile +++ b/chinese/gcin-qt5/Makefile @@ -15,7 +15,7 @@ LIB_DEPENDS= libgcin-im-client.so:chinese/gcin WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}/qt5-im USES= compiler:c++11-lang gmake pkgconfig qt:5 tar:xz -USE_QT= qdbus qmake_build buildtools_build core gui +USE_QT= qdbus qmake:build buildtools:build core gui USE_CXXSTD= c++11 MAKE_ENV= INSTALL_PROGRAM="${INSTALL_PROGRAM}" \ MKDIR="${MKDIR}" diff --git a/comms/cutecom/Makefile b/comms/cutecom/Makefile index 4e39a2fadaa49..ec86b886d79bf 100644 --- a/comms/cutecom/Makefile +++ b/comms/cutecom/Makefile @@ -13,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= lsz:comms/lrzsz USES= cmake compiler:c++11-lang qt:5 -USE_QT= buildtools_build core gui network qmake_build serialport widgets +USE_QT= buildtools:build core gui network qmake:build serialport widgets USE_GITLAB= yes GL_COMMIT= cce2e5ec01df09ca4b05f055f21942e0de7eb7dd diff --git a/comms/inspectrum/Makefile b/comms/inspectrum/Makefile index 7291ff622b514..9d393194f1957 100644 --- a/comms/inspectrum/Makefile +++ b/comms/inspectrum/Makefile @@ -20,7 +20,7 @@ USE_GITHUB= yes GH_ACCOUNT= miek GH_TAGNAME= d6115cb458068fa64c7bbd9020bcbab3373fee0e -USE_QT= core buildtools_build concurrent widgets +USE_QT= core buildtools:build concurrent widgets USE_LDCONFIG= yes .include diff --git a/comms/klog/Makefile b/comms/klog/Makefile index 59d1b293cf3f5..0e7477765b69e 100644 --- a/comms/klog/Makefile +++ b/comms/klog/Makefile @@ -13,9 +13,9 @@ LIB_DEPENDS= libhamlib.so:comms/hamlib USES= compiler:c++11-lang gl qmake qt:5 xorg USE_GITHUB= yes USE_GL= gl -USE_QT= buildtools_build charts core declarative gui \ - linguisttools_build location multimedia network \ - printsupport sql sql-sqlite3_run serialport widgets +USE_QT= buildtools:build charts core declarative gui \ + linguisttools:build location multimedia network \ + printsupport sql sql-sqlite3:run serialport widgets GH_ACCOUNT= ea4k GH_PROJECT= klog diff --git a/comms/libsdr-gui/Makefile b/comms/libsdr-gui/Makefile index e82474819a3a5..8f80a498fb79c 100644 --- a/comms/libsdr-gui/Makefile +++ b/comms/libsdr-gui/Makefile @@ -17,7 +17,7 @@ LIB_DEPENDS= libfftw3.so:math/fftw3 \ USE_GITHUB= yes GH_ACCOUNT= hmatuschek -USE_QT= core buildtools_build qmake widgets +USE_QT= core buildtools:build qmake widgets USES= cmake compiler:c++11-lang pkgconfig qt:5 USE_LDCONFIG= yes diff --git a/comms/nanovna-saver/Makefile b/comms/nanovna-saver/Makefile index 146e2ed494175..ae260ac026304 100644 --- a/comms/nanovna-saver/Makefile +++ b/comms/nanovna-saver/Makefile @@ -18,7 +18,7 @@ RUN_DEPENDS= ${PY_DEPENDS} USES= python:3.3+ pyqt:5 USE_PYTHON= distutils autoplist noflavors -USE_PYQT= pyqt5_run +USE_PYQT= pyqt5:run USE_GITHUB= yes GH_ACCOUNT= NanoVNA-Saver diff --git a/comms/qt5-connectivity/Makefile b/comms/qt5-connectivity/Makefile index e0d37eed3eab1..2db1641dbb035 100644 --- a/comms/qt5-connectivity/Makefile +++ b/comms/qt5-connectivity/Makefile @@ -7,6 +7,6 @@ MAINTAINER= kde@FreeBSD.org COMMENT= Qt connectivity (Bluetooth/NFC) module USES= compiler:c++11-lang qmake qt-dist:5,connectivity -USE_QT= concurrent core declarative buildtools_build +USE_QT= concurrent core declarative buildtools:build .include diff --git a/comms/qt5-sensors/Makefile b/comms/qt5-sensors/Makefile index 41c9e62151b69..8215c3d5c6782 100644 --- a/comms/qt5-sensors/Makefile +++ b/comms/qt5-sensors/Makefile @@ -7,6 +7,6 @@ MAINTAINER= kde@FreeBSD.org COMMENT= Qt sensors module USES= compiler:c++11-lang qmake:norecursive qt-dist:5,sensors -USE_QT= core declarative buildtools_build +USE_QT= core declarative buildtools:build .include diff --git a/comms/qt5-serialbus/Makefile b/comms/qt5-serialbus/Makefile index ba8702ac3a8b2..8d6383b666f73 100644 --- a/comms/qt5-serialbus/Makefile +++ b/comms/qt5-serialbus/Makefile @@ -8,7 +8,7 @@ COMMENT= Qt functions to access industrial bus systems USES= compiler:c++11-lib perl5 qmake qt-dist:5,serialbus USE_PERL5= extract -USE_QT= core network serialport buildtools_build +USE_QT= core network serialport buildtools:build QT_BINARIES= yes .include diff --git a/comms/qt5-serialport/Makefile b/comms/qt5-serialport/Makefile index 59b1509c09601..6d146d533fc4a 100644 --- a/comms/qt5-serialport/Makefile +++ b/comms/qt5-serialport/Makefile @@ -8,6 +8,6 @@ COMMENT= Qt functions to access serial ports USES= compiler:c++11-lang libtool perl5 qmake qt-dist:5,serialport USE_PERL5= extract -USE_QT= core buildtools_build +USE_QT= core buildtools:build .include diff --git a/comms/sdr-wspr/Makefile b/comms/sdr-wspr/Makefile index 84564afa0bb41..12ce7f1f928a3 100644 --- a/comms/sdr-wspr/Makefile +++ b/comms/sdr-wspr/Makefile @@ -15,7 +15,7 @@ LIB_DEPENDS= libsdr-gui.so:comms/libsdr-gui USES= cmake compiler:gcc-c++11-lib fortran pkgconfig qt:5 USE_GITHUB= yes GH_ACCOUNT= hmatuschek -USE_QT= core buildtools_build qmake webkit widgets +USE_QT= core buildtools:build qmake webkit widgets PLIST_FILES= bin/sdr-wspr share/applications/sdr-wspr.desktop \ share/icons/sdr-wspr.svg diff --git a/comms/wsjtx/Makefile b/comms/wsjtx/Makefile index 4771dcd324279..3a1f85ba416d1 100644 --- a/comms/wsjtx/Makefile +++ b/comms/wsjtx/Makefile @@ -24,7 +24,7 @@ USES= cmake:noninja compiler:c++11-lang fortran gl libedit \ USE_GL= glu USE_QT= core gui network widgets \ multimedia concurrent printsupport serialport sql sql-sqlite3 \ - buildtools_build linguisttools_build qmake_build testlib + buildtools:build linguisttools:build qmake:build testlib CONFLICTS_INSTALL= wsjtz diff --git a/comms/wsjtz/Makefile b/comms/wsjtz/Makefile index 0c70ca400fe36..161ecd714ebb6 100644 --- a/comms/wsjtz/Makefile +++ b/comms/wsjtz/Makefile @@ -31,7 +31,7 @@ USES= cmake compiler:c++11-lib fortran gl \ USE_GL= glu USE_QT= core gui network widgets \ multimedia concurrent printsupport serialport sql sql-sqlite3 \ - testlib buildtools_build linguisttools_build qmake_build + testlib buildtools:build linguisttools:build qmake:build CMAKE_ARGS+= -DCMAKE_PREFIX_PATH+=${LOCALBASE}/wsjtx/lib \ -DLOCALBASE::STRING="${LOCALBASE}" diff --git a/comms/xcwcp/Makefile b/comms/xcwcp/Makefile index 47ca142d892a9..0af1aff59b126 100644 --- a/comms/xcwcp/Makefile +++ b/comms/xcwcp/Makefile @@ -12,7 +12,7 @@ LIB_DEPENDS= libcw.so:comms/unixcw MASTERDIR= ${.CURDIR}/../unixcw USES= compiler:c++11-lang gettext qt:5 -USE_QT= gui widgets buildtools_build qmake_build +USE_QT= gui widgets buildtools:build qmake:build USE_CXXSTD= c++11 GNU_CONFIGURE= yes CONFIGURE_ARGS= --enable-xcwcp diff --git a/databases/akonadi/Makefile b/databases/akonadi/Makefile index 407721504445d..dbcd0057c2155 100644 --- a/databases/akonadi/Makefile +++ b/databases/akonadi/Makefile @@ -20,10 +20,10 @@ USE_GNOME= libxml2 USE_KDE= auth codecs completion config configwidgets coreaddons crash \ dbusaddons guiaddons i18n iconthemes itemmodels itemviews \ kio service windowsystem widgetsaddons xmlgui \ - designerplugin_build ecm_build \ - designerplugin_run + designerplugin:build ecm:build \ + designerplugin:run USE_QT= concurrent core dbus designer gui network sql testlib widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 CMAKE_ARGS+= -DCMAKE_REQUIRED_INCLUDES:STRING="${LOCALBASE}/include" @@ -37,7 +37,7 @@ OPTIONS_DEFAULT= MYSQL MYSQL_DESC= Install MySQL Qt plugin and server MYSQL_USES= mysql:server qt:5 -MYSQL_USE= QT=sql-mysql_run +MYSQL_USE= QT=sql-mysql:run MYSQL_CMAKE_BOOL= AKONADI_BUILD_MYSQL PGSQL_DESC= Install PostgreSQL Qt plugin @@ -46,12 +46,12 @@ PGSQL_DESC= Install PostgreSQL Qt plugin # remote server. #PGSQL_USE= PGSQL=server PGSQL_USES= qt:5 -PGSQL_USE= QT=sql-pgsql_run +PGSQL_USE= QT=sql-pgsql:run PGSQL_CMAKE_BOOL= AKONADI_BUILD_PGSQL SQLITE_DESC= Enable SQLite backend SQLITE_USES= qt:5 sqlite:3 -SQLITE_USE= QT=sql-sqlite3_run +SQLITE_USE= QT=sql-sqlite3:run SQLITE_CMAKE_BOOL= AKONADI_BUILD_QSQLITE .include diff --git a/databases/cutelyst-asql/Makefile b/databases/cutelyst-asql/Makefile index 097577bd7423f..35fc6c1b8758f 100644 --- a/databases/cutelyst-asql/Makefile +++ b/databases/cutelyst-asql/Makefile @@ -16,7 +16,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= cmake compiler:c++11-lang localbase pgsql qt:5 USE_GITHUB= yes USE_LDCONFIG= yes -USE_QT= qmake_build buildtools_build \ +USE_QT= qmake:build buildtools:build \ core GH_ACCOUNT= cutelyst diff --git a/databases/kbibtex/Makefile b/databases/kbibtex/Makefile index 8d9c8cdbfefec..cccd0ab634d0b 100644 --- a/databases/kbibtex/Makefile +++ b/databases/kbibtex/Makefile @@ -20,10 +20,10 @@ USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash ecm i18n iconthemes itemviews jobwidgets \ kio parts service solid sonnet syntaxhighlighting texteditor \ textwidgets wallet widgetsaddons windowsystem xmlgui \ - doctools_build + doctools:build USE_QT= concurrent core dbus declarative gui location network \ printsupport webchannel widgets xml xmlpatterns \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 USE_LDCONFIG= yes diff --git a/databases/kdb/Makefile b/databases/kdb/Makefile index ef6f8a6727c54..cb0a4f575dbef 100644 --- a/databases/kdb/Makefile +++ b/databases/kdb/Makefile @@ -18,7 +18,7 @@ USES= cmake compiler:c++11-lang kde:5 \ python qt:5 tar:xz USE_KDE= coreaddons ecm i18n USE_QT= core gui network widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build # In the future, these options will be moved into slave ports OPTIONS_DEFINE= SQLITE MYSQL PGSQL diff --git a/databases/kexi/Makefile b/databases/kexi/Makefile index 79b39db612399..1f6bdb34a7df9 100644 --- a/databases/kexi/Makefile +++ b/databases/kexi/Makefile @@ -21,9 +21,9 @@ USE_KDE= auth bookmarks codecs completion config \ configwidgets coreaddons crash ecm guiaddons i18n \ iconthemes itemviews jobwidgets kio parts service \ solid sonnet syntaxhighlighting texteditor textwidgets \ - widgetsaddons windowsystem xmlgui breeze-icons_build + widgetsaddons windowsystem xmlgui breeze-icons:build USE_QT= concurrent core dbus declarative gui network printsupport webkit widgets xml \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build USE_XORG= x11 CONFLICTS_INSTALL= calligra-2* diff --git a/databases/opendbviewer/Makefile b/databases/opendbviewer/Makefile index fb4b019ec9698..1ac6954af6717 100644 --- a/databases/opendbviewer/Makefile +++ b/databases/opendbviewer/Makefile @@ -14,7 +14,7 @@ USES= cmake compiler:c++11-lang magick:6,build qt:5 USE_GITHUB= yes GH_ACCOUNT= Jet1oeil USE_QT= core gui network sql sql-sqlite3 testlib widgets \ - buildtools_build linguisttools_build qmake_build + buildtools:build linguisttools:build qmake:build OPTIONS_DEFINE= DOCS PGSQL MYSQL OPTIONS_DEFAULT= PGSQL diff --git a/databases/pgmodeler/Makefile b/databases/pgmodeler/Makefile index 34ad425ee924b..076f4d856447b 100644 --- a/databases/pgmodeler/Makefile +++ b/databases/pgmodeler/Makefile @@ -17,7 +17,7 @@ USE_GITHUB= yes USE_GNOME= libxml2 USE_GL= gl USE_QT= core gui network printsupport sql svg widgets testlib uitools \ - buildtools_build + buildtools:build USE_XORG= x11 xext USE_LDCONFIG= yes diff --git a/databases/qt5-sql/Makefile b/databases/qt5-sql/Makefile index 673754c7b302a..fa1f1ed8cbffe 100644 --- a/databases/qt5-sql/Makefile +++ b/databases/qt5-sql/Makefile @@ -8,7 +8,7 @@ COMMENT= Qt SQL database integration module USES= compiler:c++11-lang perl5 qmake:no_env qt-dist:5,base USE_PERL5= extract -USE_QT= core qmake_build buildtools_build +USE_QT= core qmake:build buildtools:build HAS_CONFIGURE= yes CONFIGURE_ARGS= -no-gui -no-xcb diff --git a/databases/redisdesktopmanager/Makefile b/databases/redisdesktopmanager/Makefile index 1152369be8e56..7ab1b1e04230b 100644 --- a/databases/redisdesktopmanager/Makefile +++ b/databases/redisdesktopmanager/Makefile @@ -40,7 +40,7 @@ GH_TUPLE= uglide:RedisDesktopManager:${PORTVERSION}:DEFAULT/RedisDesktopManager redis:hiredis:6850306:hiredis/3rdparty/qredisclient/3rdparty/hiredis \ simdjson:simdjson:3bd8b0b:simdjson/3rdparty/simdjson USE_QT= charts concurrent core declarative gui network \ - quickcontrols svg widgets buildtools_build qmake_build + quickcontrols svg widgets buildtools:build qmake:build QMAKE_ARGS+= SYSTEM_BROTLI=1 SYSTEM_LZ4=1 SYSTEM_SNAPPY=1 \ SYSTEM_ZSTD=1 VERSION=${PORTVERSION} BINARY_ALIAS= python3-config=${PYTHON_CMD}-config \ diff --git a/databases/sqlitebrowser/Makefile b/databases/sqlitebrowser/Makefile index 3d359272b6fcc..a4a07ac9f4092 100644 --- a/databases/sqlitebrowser/Makefile +++ b/databases/sqlitebrowser/Makefile @@ -18,7 +18,7 @@ LIB_DEPENDS= libqscintilla2_qt5.so:devel/qscintilla2-qt5 USES= compiler:c++11-lang cmake desktop-file-utils gnome qt:5 sqlite CMAKE_ARGS+= -DQT_INCLUDE_DIR=${QT_INCDIR} -DQT_LIBRARY_DIR=${QT_LIBDIR} USE_QT= core concurrent gui network printsupport testlib widgets \ - buildtools_build linguisttools_build qmake_build xml + buildtools:build linguisttools:build qmake:build xml USE_GITHUB= yes PORTSCOUT= ignore:1 diff --git a/databases/sqlitestudio/Makefile b/databases/sqlitestudio/Makefile index bf3eed5625b72..e60e1e9cb178f 100644 --- a/databases/sqlitestudio/Makefile +++ b/databases/sqlitestudio/Makefile @@ -29,8 +29,8 @@ PLUGIN_PRINTING_USE= QT=printsupport USES= compiler:c++17-lang gl gmake ncurses qmake qt:5 readline sqlite USE_GITHUB= yes GH_ACCOUNT= pawelsalawa -USE_QT= core concurrent gui network script sql sql-sqlite3_run svg widgets xml \ - uitools buildtools_build linguisttools_build +USE_QT= core concurrent gui network script sql sql-sqlite3:run svg widgets xml \ + uitools buildtools:build linguisttools:build USE_GL= gl WRKSRC_SUBDIR= SQLiteStudio3 diff --git a/databases/symphytum/Makefile b/databases/symphytum/Makefile index 780ce640077f3..ca1c0f9a8b554 100644 --- a/databases/symphytum/Makefile +++ b/databases/symphytum/Makefile @@ -11,7 +11,7 @@ LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE USES= qmake qt:5 -USE_QT= buildtools_build \ +USE_QT= buildtools:build \ core gui network printsupport sql svg widgets USE_GITHUB= yes GH_ACCOUNT= giowck diff --git a/deskutils/akonadi-calendar-tools/Makefile b/deskutils/akonadi-calendar-tools/Makefile index 1c4e428a06eab..416c6813da3fc 100644 --- a/deskutils/akonadi-calendar-tools/Makefile +++ b/deskutils/akonadi-calendar-tools/Makefile @@ -13,12 +13,12 @@ USE_KDE= auth bookmarks codecs completion config configwidgets \ itemviews jobwidgets kdelibs4support kio notifications parts \ service solid sonnet textwidgets unitconversion widgetsaddons \ windowsystem xmlgui \ - ecm_build + ecm:build # pim components USE_KDE+= akonadi akonadicalendar calendarsupport calendarcore calendarutils \ identitymanagement libkdepim mime pimtextedit USE_QT= core dbus gui network printsupport widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr diff --git a/deskutils/akonadi-import-wizard/Makefile b/deskutils/akonadi-import-wizard/Makefile index 20a9693fe51fe..c259a7be9fbdc 100644 --- a/deskutils/akonadi-import-wizard/Makefile +++ b/deskutils/akonadi-import-wizard/Makefile @@ -16,13 +16,13 @@ USES= cmake compiler:c++11-lib gettext grantlee:5 kde:5 qt:5 tar:xz USE_KDE= archive auth codecs completion config configwidgets coreaddons \ crash dbusaddons i18n itemmodels kio service wallet \ widgetsaddons xmlgui \ - ecm_build + ecm:build # pim components USE_KDE+= akonadi akonadicontacts akonadimime contacts grantleetheme \ identitymanagement imap libkdepim libkleo mailcommon mailimporter \ mailtransport messagelib mime pimcommon pimtextedit USE_QT= concurrent core dbus gui network widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr diff --git a/deskutils/akonadiconsole/Makefile b/deskutils/akonadiconsole/Makefile index 14d44e617479d..6a5312e91a137 100644 --- a/deskutils/akonadiconsole/Makefile +++ b/deskutils/akonadiconsole/Makefile @@ -21,14 +21,14 @@ USE_KDE= auth bookmarks codecs completion config configwidgets \ itemmodels itemviews jobwidgets kdelibs4support kio \ notifications parts service solid sonnet textwidgets \ unitconversion widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build # pim components USE_KDE+= akonadi akonadicalendar akonadicontacts akonadimime \ akonadisearch calendarcore calendarsupport contacts \ grantleetheme identitymanagement libkdepim libkleo messagelib mime \ pimcommon pimtextedit USE_QT= concurrent core dbus gui network printsupport sql widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr diff --git a/deskutils/akregator/Makefile b/deskutils/akregator/Makefile index b9de3f1264c65..2c4633ed6b797 100644 --- a/deskutils/akregator/Makefile +++ b/deskutils/akregator/Makefile @@ -19,13 +19,13 @@ USE_KDE= auth codecs completion config configwidgets coreaddons crash \ i18n iconthemes itemmodels jobwidgets kcmutils kio \ notifications notifyconfig parts service solid sonnet texteditor\ textwidgets widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build # pim components USE_KDE+= akonadi akonadimime contacts grantleetheme kontactinterface \ libkdepim libkleo messagelib mime pimcommon pimtextedit syndication USE_QT= concurrent core dbus declarative gui location network printsupport \ webchannel webengine widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 USE_LDCONFIG= yes diff --git a/deskutils/ausweisapp2/Makefile b/deskutils/ausweisapp2/Makefile index 8a8e5870edb1b..6f51eaa46a924 100644 --- a/deskutils/ausweisapp2/Makefile +++ b/deskutils/ausweisapp2/Makefile @@ -22,7 +22,7 @@ GH_ACCOUNT= Governikus GH_PROJECT= AusweisApp2 USE_QT= concurrent core declarative graphicaleffects gui network \ quickcontrols2 svg websockets widgets \ - buildtools_build linguisttools_build + buildtools:build linguisttools:build # The VENDOR variable controls the name of the directory in ${PREFIX}/share. CMAKE_ARGS= -DVENDOR=${PORTNAME} diff --git a/deskutils/basket/Makefile b/deskutils/basket/Makefile index 7406679b1fd8a..1bb9b38243ada 100644 --- a/deskutils/basket/Makefile +++ b/deskutils/basket/Makefile @@ -24,7 +24,7 @@ USE_KDE= ecm archive auth codecs completion config configwidgets \ notifications parts service solid sonnet textwidgets \ widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus gui network phonon4 testlib widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 USE_GITHUB= yes diff --git a/deskutils/birdtray/Makefile b/deskutils/birdtray/Makefile index bd342e826de2a..de73190ea2ceb 100644 --- a/deskutils/birdtray/Makefile +++ b/deskutils/birdtray/Makefile @@ -14,8 +14,8 @@ USES= cmake compiler:c++11-lib gettext kde:5 localbase qt:5 tar:xz \ xorg USE_XORG= x11 USE_KDE= i18n -USE_QT= core gui network svg widgets x11extras buildtools_build \ - linguisttools_build qmake_build +USE_QT= core gui network svg widgets x11extras buildtools:build \ + linguisttools:build qmake:build USE_GITHUB= yes GH_ACCOUNT= gyunaev diff --git a/deskutils/calibre/Makefile b/deskutils/calibre/Makefile index 5988afcf66052..8317a23551e48 100644 --- a/deskutils/calibre/Makefile +++ b/deskutils/calibre/Makefile @@ -61,7 +61,7 @@ USES= desktop-file-utils gettext-runtime gl gnome localbase:ldflags \ USE_RC_SUBR= calibre SUB_LIST+= PYTHON_VERSION=${PYTHON_VERSION} USE_PYQT= pyqt5 pysip qtbuilder sip webengine -USE_QT= buildtools_build core dbus gui qmake_build widgets +USE_QT= buildtools:build core dbus gui qmake:build widgets USE_GL= egl gl USE_GNOME= glib20 USE_XORG= xrender xext x11 diff --git a/deskutils/calindori/Makefile b/deskutils/calindori/Makefile index bc7a9fe24cac0..c3c9c75627153 100644 --- a/deskutils/calindori/Makefile +++ b/deskutils/calindori/Makefile @@ -16,10 +16,10 @@ USE_GL= gl USE_QT= core dbus declarative gui \ network quickcontrols quickcontrols2 \ svg widgets \ - buildtools_build linguist_build qmake_build + buildtools:build linguist:build qmake:build USE_KDE= calendarcore config coreaddons dbusaddons i18n kirigami2 \ notifications people service \ - ecm_build + ecm:build CMAKE_OFF= BUILD_TESTING diff --git a/deskutils/charmtimetracker/Makefile b/deskutils/charmtimetracker/Makefile index 60ca76db8cc39..4289d6169aa12 100644 --- a/deskutils/charmtimetracker/Makefile +++ b/deskutils/charmtimetracker/Makefile @@ -26,7 +26,7 @@ GH_PROJECT= Charm USE_QT= core dbus gui \ network printsupport script sql sql-sqlite3 \ widgets xml \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build USE_XORG= ice x11 xcb xext xscrnsaver .include diff --git a/deskutils/coolreader/Makefile b/deskutils/coolreader/Makefile index 2344d16e9ab60..46c7a51ff9475 100644 --- a/deskutils/coolreader/Makefile +++ b/deskutils/coolreader/Makefile @@ -23,7 +23,7 @@ USES= qt:5 cmake:noninja pkgconfig desktop-file-utils jpeg USE_GITHUB= yes GH_ACCOUNT= buggins -USE_QT= core buildtools_build gui qmake_build widgets linguisttools_build +USE_QT= core buildtools:build gui qmake:build widgets linguisttools:build CMAKE_ARGS= -D GUI=QT5 -D MAX_IMAGE_SCALE_MUL=2 \ -D DOC_DATA_COMPRESSION_LEVEL=3 -D DOC_BUFFER_SIZE=0x1400000 diff --git a/deskutils/copyq/Makefile b/deskutils/copyq/Makefile index 48ace9801037d..7e6ef86cee8c1 100644 --- a/deskutils/copyq/Makefile +++ b/deskutils/copyq/Makefile @@ -33,8 +33,8 @@ USE_KDE= notifications USE_LDCONFIG= yes USE_QT= core declarative gui network script svg wayland widgets \ - x11extras buildtools_build linguisttools_build qmake_build \ - imageformats_run + x11extras buildtools:build linguisttools:build qmake:build \ + imageformats:run USE_XORG= x11 xau xcb xdmcp xtst LDFLAGS+= -Wl,--as-needed diff --git a/deskutils/coregarage/Makefile b/deskutils/coregarage/Makefile index a63db8c4191a0..b41419660a145 100644 --- a/deskutils/coregarage/Makefile +++ b/deskutils/coregarage/Makefile @@ -14,7 +14,7 @@ LIB_DEPENDS= libarchiveqt5.so:archivers/libarchive-qt \ libcprime-core.so:deskutils/libcprime USES= cmake localbase:ldflags qt:5 -USE_QT= buildtools_build core gui network qmake_build widgets +USE_QT= buildtools:build core gui network qmake:build widgets USE_GITLAB= yes GL_ACCOUNT= CuboCore diff --git a/deskutils/fet/Makefile b/deskutils/fet/Makefile index 177f05a981962..1e916bb4f89de 100644 --- a/deskutils/fet/Makefile +++ b/deskutils/fet/Makefile @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING USES= compiler:c++14-lang gl qmake qt:5 tar:bzip2 USE_GL= gl -USE_QT= core printsupport widgets buildtools_build +USE_QT= core printsupport widgets buildtools:build INSTALL_TARGET= ${WRKSRC}/fet-cl diff --git a/deskutils/flameshot/Makefile b/deskutils/flameshot/Makefile index 0d2d4af61444b..c4ed0bbb5c471 100644 --- a/deskutils/flameshot/Makefile +++ b/deskutils/flameshot/Makefile @@ -19,7 +19,7 @@ GH_ACCOUNT= flameshot-org USE_GITHUB= yes USE_GL= gl USE_QT= core dbus gui linguist network svg widgets \ - buildtools_build + buildtools:build post-patch: @${REINPLACE_CMD} -e 's,$${CMAKE_INSTALL_FULL_BINDIR},${LOCALBASE}/bin,1' \ diff --git a/deskutils/grantlee-editor/Makefile b/deskutils/grantlee-editor/Makefile index 656b744f63070..2699ba81451ca 100644 --- a/deskutils/grantlee-editor/Makefile +++ b/deskutils/grantlee-editor/Makefile @@ -19,13 +19,13 @@ USE_KDE= archive attica auth codecs completion config configwidgets \ coreaddons crash dbusaddons i18n itemmodels jobwidgets \ kio newstuff service solid syntaxhighlighting texteditor \ widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build # pim components USE_KDE+= akonadi akonadicontacts akonadimime contacts grantleetheme \ libkleo messagelib mime pimcommon pimtextedit USE_QT= concurrent core dbus declarative gui location network \ printsupport webchannel webengine widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 USE_LDCONFIG= yes diff --git a/deskutils/grantleetheme/Makefile b/deskutils/grantleetheme/Makefile index 301ea33a09cbd..c8c4317fe1ad4 100644 --- a/deskutils/grantleetheme/Makefile +++ b/deskutils/grantleetheme/Makefile @@ -11,9 +11,9 @@ USES= cmake compiler:c++11-lib gettext grantlee:5 kde:5 \ pkgconfig qt:5 tar:xz USE_KDE= attica auth codecs config configwidgets coreaddons guiaddons \ i18n iconthemes newstuff service widgetsaddons xmlgui \ - ecm_build + ecm:build USE_QT= core dbus gui network testlib widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr diff --git a/deskutils/itinerary/Makefile b/deskutils/itinerary/Makefile index 9f0b78680f286..51cb81788b579 100644 --- a/deskutils/itinerary/Makefile +++ b/deskutils/itinerary/Makefile @@ -12,11 +12,11 @@ USE_KDE= calendarcore completion config contacts coreaddons crash \ dbusaddons i18n jobwidgets kio kpkpass notifications kosm \ kitinerary kpublictransport mime qqc2-desktop-style \ service solid widgetsaddons windowsystem \ - ecm_build + ecm:build USE_QT= concurrent core dbus declarative gui location network quick3d \ quickcontrols2 \ testlib widgets \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 OPTIONS_DEFINE= DOCS diff --git a/deskutils/kaddressbook/Makefile b/deskutils/kaddressbook/Makefile index 777c9edc18195..8b5a3f4ec220b 100644 --- a/deskutils/kaddressbook/Makefile +++ b/deskutils/kaddressbook/Makefile @@ -16,13 +16,13 @@ USES= cmake compiler:c++11-lib desktop-file-utils gettext grantlee:5 kde:5 \ USE_KDE= auth codecs completion config configwidgets coreaddons crash \ i18n iconthemes itemmodels jobwidgets kcmutils kio parts pimtextedit \ prison service solid sonnet textwidgets widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build # pim components USE_KDE+= akonadi akonadicontacts akonadisearch contacts grantleetheme \ imap kontactinterface libkdepim mime pimcommon \ - kdepim-runtime5_run + kdepim-runtime5:run USE_QT= concurrent core dbus gui network printsupport widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 USE_LDCONFIG= yes diff --git a/deskutils/kalarm/Makefile b/deskutils/kalarm/Makefile index 7bc2428ef8686..904bc323cf541 100644 --- a/deskutils/kalarm/Makefile +++ b/deskutils/kalarm/Makefile @@ -14,16 +14,16 @@ USE_KDE= auth bookmarks codecs completion config configwidgets \ itemmodels itemviews jobwidgets kcmutils kdelibs4support kio \ notifications notifyconfig parts service solid sonnet textwidgets \ unitconversion wallet widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build # pim components USE_KDE+= akonadi akonadicontacts akonadimime calendarcore \ calendarutils contacts globalaccel grantleetheme holidays identitymanagement \ idletime libkdepim mailcommon mailtransport mime \ pimcommon pimtextedit imap \ - kdepim-runtime5_run + kdepim-runtime5:run USE_QT= concurrent core dbus gui network phonon4 printsupport widgets \ x11extras xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 USE_LDCONFIG= yes diff --git a/deskutils/kalendar/Makefile b/deskutils/kalendar/Makefile index d4456f270fc5f..90a753c08cef0 100644 --- a/deskutils/kalendar/Makefile +++ b/deskutils/kalendar/Makefile @@ -13,15 +13,15 @@ USES= cmake compiler:c++17-lang desktop-file-utils grantlee:5 kde:5 \ qt:5 tar:xz xorg USE_QT= concurrent core dbus declarative gui location multimedia \ network printsupport quickcontrols2 svg widgets xml \ - buildtools_build declarative-test_build linguist_build \ - qmake_build testlib_build + buildtools:build declarative-test:build linguist:build \ + qmake:build testlib:build USE_KDE= akonadi akonadicalendar akonadicontacts auth calendarcore \ calendarsupport calendarutils codecs config configwidgets \ contacts coreaddons dbusaddons eventviews grantleetheme i18n \ identitymanagement itemmodels kio kirigami2 mime notifications \ people pimtextedit qqc2-desktop-style service sonnet \ textwidgets widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build USE_XORG= x11 .include diff --git a/deskutils/kcharselect/Makefile b/deskutils/kcharselect/Makefile index d623c3893ce20..e71d2f523692e 100644 --- a/deskutils/kcharselect/Makefile +++ b/deskutils/kcharselect/Makefile @@ -12,9 +12,9 @@ BUILD_DEPENDS= ${LOCALBASE}/share/xsl/docbook/html/docbook.xsl:textproc/docbook- USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons crash bookmarks \ doctools i18n widgetsaddons xmlgui \ - ecm_build + ecm:build USE_QT= core dbus gui widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build OPTIONS_DEFINE= DOCS diff --git a/deskutils/kchmviewer/Makefile b/deskutils/kchmviewer/Makefile index b4ba07db64af4..24b8f40f41b54 100644 --- a/deskutils/kchmviewer/Makefile +++ b/deskutils/kchmviewer/Makefile @@ -15,7 +15,7 @@ USES= compiler:c++11-lang desktop-file-utils dos2unix gl \ qmake:outsource qt:5 xorg USE_GL= gl USE_QT= core dbus gui network printsupport webkit widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 USE_GITHUB= yes diff --git a/deskutils/kdeconnect-kde/Makefile b/deskutils/kdeconnect-kde/Makefile index 1af36c53a9bac..c38a9db941743 100644 --- a/deskutils/kdeconnect-kde/Makefile +++ b/deskutils/kdeconnect-kde/Makefile @@ -24,10 +24,10 @@ USE_KDE= auth bookmarks codecs completion config configwidgets \ itemviews jobwidgets kcmutils kio kirigami2 notifications \ people qqc2-desktop-style service solid wayland widgetsaddons \ windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus declarative gui multimedia network \ quickcontrols2 testlib wayland widgets x11extras xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= ice sm x11 xext xtst USE_LDCONFIG= ${QT_QMLDIR}/org/kde/kdeconnect diff --git a/deskutils/kdepim-addons/Makefile b/deskutils/kdepim-addons/Makefile index 1bc7302bac13a..f63664a095663 100644 --- a/deskutils/kdepim-addons/Makefile +++ b/deskutils/kdepim-addons/Makefile @@ -22,7 +22,7 @@ USE_KDE= archive auth codecs completion config configwidgets coreaddons \ dbusaddons guiaddons i18n iconthemes itemmodels itemviews jobwidgets \ kdeclarative khtml kio parts prison service solid sonnet syntaxhighlighting \ textwidgets wallet widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build # pim components USE_KDE+= akonadi akonadicalendar akonadicontacts akonadiimportwizard \ akonadimime akonadinotes calendarcore calendarsupport \ @@ -33,7 +33,7 @@ USE_KDE+= akonadi akonadicalendar akonadicontacts akonadiimportwizard \ messagelib mime pimcommon pimtextedit tnef USE_QT= concurrent core dbus declarative gui location network printsupport testlib \ webchannel webengine widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 USE_LDCONFIG= yes diff --git a/deskutils/kdepim-runtime/Makefile b/deskutils/kdepim-runtime/Makefile index b0d700a8c49f5..e933ac7c71f50 100644 --- a/deskutils/kdepim-runtime/Makefile +++ b/deskutils/kdepim-runtime/Makefile @@ -31,7 +31,7 @@ USE_KDE+= akonadi akonadicontacts akonadimime akonadinotes \ pimtextedit syndication USE_QT= concurrent core dbus declarative gui location network networkauth printsupport speech \ script webchannel webengine widgets xml xmlpatterns \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 USE_LDCONFIG= yes diff --git a/deskutils/keditbookmarks/Makefile b/deskutils/keditbookmarks/Makefile index ab21ada49292a..c415e0f02d5e0 100644 --- a/deskutils/keditbookmarks/Makefile +++ b/deskutils/keditbookmarks/Makefile @@ -10,9 +10,9 @@ USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz xorg USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons i18n iconthemes jobwidgets kio parts service \ solid sonnet textwidgets widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus gui network widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 OPTIONS_DEFINE= DOCS diff --git a/deskutils/kfind/Makefile b/deskutils/kfind/Makefile index 4b59f2a35aa8e..19ec271b1a649 100644 --- a/deskutils/kfind/Makefile +++ b/deskutils/kfind/Makefile @@ -12,9 +12,9 @@ USE_KDE= archive auth bookmarks codecs completion config configwidgets \ jobwidgets kdelibs4support kio notifications parts service \ solid sonnet textwidgets unitconversion widgetsaddons \ windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus gui network printsupport widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 OPTIONS_DEFINE= DOCS diff --git a/deskutils/kmail-account-wizard/Makefile b/deskutils/kmail-account-wizard/Makefile index e78e90930f929..14ebbd1c72c75 100644 --- a/deskutils/kmail-account-wizard/Makefile +++ b/deskutils/kmail-account-wizard/Makefile @@ -18,12 +18,12 @@ USE_KDE= attica auth codecs config configwidgets coreaddons crash \ dbusaddons i18n itemmodels itemviews kcmutils kio kross \ newstuff notifications notifyconfig service texteditor wallet \ widgetsaddons xmlgui \ - ecm_build + ecm:build # pim components USE_KDE+= akonadi akonadimime identitymanagement ldap libkdepim libkleo \ mailtransport mime pimcommon pimtextedit USE_QT= concurrent core dbus gui network script widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr diff --git a/deskutils/kmail/Makefile b/deskutils/kmail/Makefile index cba842f7bf0f3..46392126f2a96 100644 --- a/deskutils/kmail/Makefile +++ b/deskutils/kmail/Makefile @@ -28,17 +28,17 @@ USE_KDE= auth bookmarks codecs completion config configwidgets \ notifications notifyconfig parts service solid sonnet \ syntaxhighlighting texteditor textwidgets unitconversion wallet \ widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build # pim components USE_KDE+= akonadi akonadicontacts akonadimime akonadisearch calendarcore \ calendarutils contacts gravatar grantleetheme \ identitymanagement libkdepim libkleo libksieve \ kontactinterface ldap mailcommon mailtransport messagelib \ mime pimcommon pimtextedit tnef \ - kdepim-runtime5_run + kdepim-runtime5:run USE_QT= concurrent core dbus declarative gui location network printsupport \ webchannel webengine widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 USE_LDCONFIG= yes diff --git a/deskutils/knotes/Makefile b/deskutils/knotes/Makefile index 46f4eb58ec907..1f948d2b4094b 100644 --- a/deskutils/knotes/Makefile +++ b/deskutils/knotes/Makefile @@ -20,9 +20,9 @@ USE_KDE= attica auth bookmarks codecs completion config configwidgets \ USE_KDE+= akonadi akonadicontacts akonadinotes akonadisearch \ calendarcore calendarutils contacts grantleetheme imap kontactinterface libkdepim \ mime pimcommon pimtextedit \ - kdepim-runtime5_run + kdepim-runtime5:run USE_QT= concurrent core dbus gui network printsupport widgets x11extras xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= ice sm x11 xext USE_LDCONFIG= yes diff --git a/deskutils/kodaskanna/Makefile b/deskutils/kodaskanna/Makefile index 4e52529050596..7ac0951748bc5 100644 --- a/deskutils/kodaskanna/Makefile +++ b/deskutils/kodaskanna/Makefile @@ -19,9 +19,9 @@ USE_XORG= x11 USE_QT= concurrent core dbus declarative gui \ multimedia network quickcontrols quickcontrols2 \ widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_KDE= auth codecs config configwidgets coreaddons i18n \ kio purpose service widgetsaddons windowsystem \ - ecm_build + ecm:build .include diff --git a/deskutils/kongress/Makefile b/deskutils/kongress/Makefile index 28b768ef1bf0d..1867dc215cf28 100644 --- a/deskutils/kongress/Makefile +++ b/deskutils/kongress/Makefile @@ -16,9 +16,9 @@ USE_GL= gl USE_QT= core dbus declarative gui \ network quickcontrols quickcontrols2 \ svg widgets \ - buildtools_build linguist_build qmake_build + buildtools:build linguist:build qmake:build USE_KDE= calendarcore config coreaddons dbusaddons i18n kirigami2 notifications service \ - ecm_build + ecm:build CMAKE_ON= REMINDERS_ENABLED CMAKE_OFF= BUILD_TESTING diff --git a/deskutils/kontact/Makefile b/deskutils/kontact/Makefile index b8a44f6adda01..26d903fbd2551 100644 --- a/deskutils/kontact/Makefile +++ b/deskutils/kontact/Makefile @@ -11,13 +11,13 @@ USES= cmake compiler:c++11-lib gettext grantlee:5 kde:5 qt:5 tar:xz xorg USE_KDE= auth codecs completion config configwidgets coreaddons crash \ guiaddons i18n iconthemes itemmodels jobwidgets kcmutils kio parts \ service solid sonnet textwidgets widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build # pim components USE_KDE+= akonadi grantleetheme kontactinterface libkdepim pimcommon \ pimtextedit USE_QT= concurrent core dbus declarative gui location network \ printsupport webchannel webengine widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 USE_LDCONFIG= yes diff --git a/deskutils/korganizer/Makefile b/deskutils/korganizer/Makefile index d874be825c14a..ad908ab36aad4 100644 --- a/deskutils/korganizer/Makefile +++ b/deskutils/korganizer/Makefile @@ -15,16 +15,16 @@ USE_KDE= attica auth bookmarks codecs completion config configwidgets \ itemmodels itemviews jobwidgets kcmutils kdelibs4support kio \ newstuff notifications parts service solid sonnet textwidgets \ unitconversion wallet widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build # pim components USE_KDE+= akonadi akonadicalendar akonadicontacts akonadimime \ akonadinotes akonadisearch calendarcore calendarsupport \ calendarutils contacts eventviews grantleetheme holidays identitymanagement \ imap incidenceeditor kontactinterface ldap \ libkdepim mailtransport mime pimcommon pimtextedit \ - kdepim-runtime5_run + kdepim-runtime5:run USE_QT= concurrent core dbus gui multimedia network phonon4 printsupport widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 USE_LDCONFIG= yes diff --git a/deskutils/kruler/Makefile b/deskutils/kruler/Makefile index 8ebc5fdae0c42..dc0113dca3105 100644 --- a/deskutils/kruler/Makefile +++ b/deskutils/kruler/Makefile @@ -9,9 +9,9 @@ WWW= https://www.kde.org/applications/graphics/kruler USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz xorg USE_KDE= auth codecs config configwidgets coreaddons doctools i18n \ notifications widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= core dbus gui widgets x11extras xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 xcb OPTIONS_DEFINE= DOCS diff --git a/deskutils/ktimetracker/Makefile b/deskutils/ktimetracker/Makefile index 4052ae0655c9f..3e21413fccffe 100644 --- a/deskutils/ktimetracker/Makefile +++ b/deskutils/ktimetracker/Makefile @@ -16,9 +16,9 @@ USE_KDE= kio sonnet auth calendarcore codecs config configwidgets \ coreaddons dbusaddons i18n idletime jobwidgets \ notifications service textwidgets widgetsaddons \ windowsystem xmlgui \ - doctools_build + doctools:build USE_QT= concurrent core dbus gui network widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 .include diff --git a/deskutils/kuserfeedback/Makefile b/deskutils/kuserfeedback/Makefile index 0c5d32cbbfbe3..4ee6d0cc3165f 100644 --- a/deskutils/kuserfeedback/Makefile +++ b/deskutils/kuserfeedback/Makefile @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING.LIB USES= bison cmake compiler:c++11-lang kde:5 qt:5 tar:xz USE_KDE= ecm USE_QT= charts core declarative gui network printsupport svg widgets \ - buildtools_build help_build qdoc_build qmake_build + buildtools:build help:build qdoc:build qmake:build OPTIONS_DEFINE= SERVER diff --git a/deskutils/latte-dock/Makefile b/deskutils/latte-dock/Makefile index cdcd77d7d4051..81f0740ed3e89 100644 --- a/deskutils/latte-dock/Makefile +++ b/deskutils/latte-dock/Makefile @@ -18,10 +18,10 @@ USE_KDE= activities archive attica auth codecs completion config \ guiaddons i18n iconthemes jobwidgets kdeclarative kio \ libksysguard newstuff notifications package plasma-framework \ service solid wayland widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus declarative gui network widgets \ x11extras xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= ice sm x11 xcb xext .include diff --git a/deskutils/libcprime/Makefile b/deskutils/libcprime/Makefile index d1fdd584ad7cc..e5b2eb37f151a 100644 --- a/deskutils/libcprime/Makefile +++ b/deskutils/libcprime/Makefile @@ -11,7 +11,7 @@ LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE USES= cmake qt:5 -USE_QT= buildtools_build core dbus gui network qmake_build widgets +USE_QT= buildtools:build core dbus gui network qmake:build widgets USE_LDCONFIG= yes USE_GITLAB= yes diff --git a/deskutils/libkdepim/Makefile b/deskutils/libkdepim/Makefile index 337c9dd29c015..d684792a8adbb 100644 --- a/deskutils/libkdepim/Makefile +++ b/deskutils/libkdepim/Makefile @@ -14,12 +14,12 @@ USES= cmake gettext compiler:c++11-lib kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons \ i18n iconthemes itemmodels itemviews jobwidgets kcmutils \ kio service wallet widgetsaddons \ - ecm_build + ecm:build # pim components USE_KDE+= akonadi akonadicontacts akonadisearch contacts ldap mime USE_QT= concurrent core dbus designer gui network uiplugin uitools \ widgets xml \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build USE_LDCONFIG= yes diff --git a/deskutils/libportal/Makefile b/deskutils/libportal/Makefile index ae0ee72fee626..217f39ed7071c 100644 --- a/deskutils/libportal/Makefile +++ b/deskutils/libportal/Makefile @@ -13,7 +13,7 @@ BUILD_DEPENDS= gtkdoc-scan:textproc/gtk-doc USES= gnome meson pkgconfig qt:5 USE_GNOME= glib20 gtk30 introspection:build -USE_QT= buildtools core gui qmake_build testlib widgets x11extras +USE_QT= buildtools core gui qmake:build testlib widgets x11extras USE_LDCONFIG= yes USE_GITHUB= yes diff --git a/deskutils/lumina-archiver/Makefile b/deskutils/lumina-archiver/Makefile index c7ec23f9e0a5c..da395a39daa59 100644 --- a/deskutils/lumina-archiver/Makefile +++ b/deskutils/lumina-archiver/Makefile @@ -11,7 +11,7 @@ LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/../../../LICENSE USES= compiler:c++11-lang desktop-file-utils gl qmake qt:5 -USE_QT= buildtools_build concurrent core gui \ +USE_QT= buildtools:build concurrent core gui \ multimedia network svg widgets x11extras USE_GL= gl USE_GITHUB= yes @@ -21,7 +21,7 @@ GH_PROJECT= lumina OPTIONS_DEFINE= NLS OPTIONS_SUB= yes -NLS_USE= qt=linguist_build +NLS_USE= qt=linguist:build NLS_QMAKE_ON= CONFIG+=WITH_I18N CONFLICTS_INSTALL= lumina-1.2.* diff --git a/deskutils/lumina-calculator/Makefile b/deskutils/lumina-calculator/Makefile index c078758254ec1..48b900527bf27 100644 --- a/deskutils/lumina-calculator/Makefile +++ b/deskutils/lumina-calculator/Makefile @@ -11,7 +11,7 @@ LICENSE= BSD3CLAUSE USES= compiler:c++11-lang gl qmake qt:5 xorg USE_GL= gl USE_XORG= x11 -USE_QT= buildtools_build core gui svg widgets +USE_QT= buildtools:build core gui svg widgets USE_GITHUB= yes GH_ACCOUNT= lumina-desktop GH_TAGNAME= 159fc375 @@ -19,7 +19,7 @@ GH_TAGNAME= 159fc375 OPTIONS_DEFINE= NLS OPTIONS_SUB= yes -NLS_USE= qt=linguist_build +NLS_USE= qt=linguist:build NLS_QMAKE_ON= CONFIG+=WITH_I18N CONFLICTS_INSTALL= lumina-1.2.* diff --git a/deskutils/lumina-fileinfo/Makefile b/deskutils/lumina-fileinfo/Makefile index 26e4e6dbb5cd7..35e50b7b7c6c2 100644 --- a/deskutils/lumina-fileinfo/Makefile +++ b/deskutils/lumina-fileinfo/Makefile @@ -11,7 +11,7 @@ LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/../../../LICENSE USES= compiler:c++11-lang gl qmake qt:5 -USE_QT= buildtools_build concurrent core gui \ +USE_QT= buildtools:build concurrent core gui \ multimedia network svg widgets x11extras USE_GL= gl USE_GITHUB= yes @@ -22,7 +22,7 @@ OPTIONS_DEFINE= NLS OPTIONS_SUB= yes NLS_QMAKE_ON= CONFIG+=WITH_I18N -NLS_USE= QT=linguist_build +NLS_USE= QT=linguist:build CONFLICTS_INSTALL= lumina-1.2.* diff --git a/deskutils/lumina-fm/Makefile b/deskutils/lumina-fm/Makefile index de94254a71759..8cfb2eac90e60 100644 --- a/deskutils/lumina-fm/Makefile +++ b/deskutils/lumina-fm/Makefile @@ -10,7 +10,7 @@ WWW= https://lumina-desktop.org/ LICENSE= BSD3CLAUSE USES= compiler:c++11-lang desktop-file-utils gl qmake qt:5 -USE_QT= buildtools_build concurrent core gui imageformats \ +USE_QT= buildtools:build concurrent core gui imageformats \ multimedia network svg widgets x11extras USE_GL= gl USE_GITHUB= yes @@ -20,7 +20,7 @@ GH_PROJECT= lumina OPTIONS_DEFINE= NLS OPTIONS_SUB= yes -NLS_USE= QT=linguist_build +NLS_USE= QT=linguist:build NLS_QMAKE_ON= CONFIG+=WITH_I18N CONFLICTS_INSTALL= lumina-1.2.* diff --git a/deskutils/lumina-mediaplayer/Makefile b/deskutils/lumina-mediaplayer/Makefile index c89d8d1efe6f4..e74567b25791c 100644 --- a/deskutils/lumina-mediaplayer/Makefile +++ b/deskutils/lumina-mediaplayer/Makefile @@ -13,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/../../../LICENSE USES= compiler:c++11-lang desktop-file-utils gl gstreamer qmake qt:5 USE_GL= gl USE_GSTREAMER= gl -USE_QT= buildtools_build core concurrent gui \ +USE_QT= buildtools:build core concurrent gui \ multimedia network svg widgets x11extras USE_GITHUB= yes GH_ACCOUNT= lumina-desktop @@ -22,7 +22,7 @@ GH_PROJECT= lumina OPTIONS_DEFINE= NLS OPTIONS_SUB= yes -NLS_USE= qt=linguist_build +NLS_USE= qt=linguist:build NLS_QMAKE_ON= CONFIG+=WITH_I18N WRKSRC_SUBDIR= src-qt5/desktop-utils/${PORTNAME} diff --git a/deskutils/lumina-pdf/Makefile b/deskutils/lumina-pdf/Makefile index 836f64851ccd4..9bf9e4edf8fb5 100644 --- a/deskutils/lumina-pdf/Makefile +++ b/deskutils/lumina-pdf/Makefile @@ -10,7 +10,7 @@ WWW= https://lumina-desktop.org LICENSE= BSD3CLAUSE USES= compiler:c++11-lang desktop-file-utils gl qmake qt:5 -USE_QT= buildtools_build concurrent core gui \ +USE_QT= buildtools:build concurrent core gui \ multimedia network printsupport \ svg widgets x11extras USE_GL= gl @@ -34,7 +34,7 @@ MUPDF_QMAKE_ON= USE_MUPDF=true MUPDF_LIB_DEPENDS= libmupdf.so:graphics/mupdf NLS_QMAKE_ON= CONFIG+=WITH_I18N -NLS_USE= qt=linguist_build +NLS_USE= qt=linguist:build POPPLER_QMAKE_ON= USE_POPPLER=true POPPLER_LIB_DEPENDS= libpoppler-qt5.so:graphics/poppler-qt5 diff --git a/deskutils/lumina-photo/Makefile b/deskutils/lumina-photo/Makefile index a10bb78e14c35..e69fb7ce07961 100644 --- a/deskutils/lumina-photo/Makefile +++ b/deskutils/lumina-photo/Makefile @@ -10,7 +10,7 @@ WWW= https://lumina-desktop.org LICENSE= BSD3CLAUSE USES= compiler:c++11-lang desktop-file-utils gl qmake qt:5 -USE_QT= buildtools_build concurrent core gui multimedia \ +USE_QT= buildtools:build concurrent core gui multimedia \ printsupport network svg widgets x11extras USE_GL= gl USE_GITHUB= yes @@ -20,7 +20,7 @@ GH_PROJECT= lumina OPTIONS_DEFINE= NLS OPTIONS_SUB= yes -NLS_USE= QT=linguist_build +NLS_USE= QT=linguist:build NLS_QMAKE_ON= CONFIG+=WITH_I18N WRKSRC_SUBDIR= src-qt5/desktop-utils/${PORTNAME} diff --git a/deskutils/lumina-screenshot/Makefile b/deskutils/lumina-screenshot/Makefile index 939bda511c84b..98339af6304cd 100644 --- a/deskutils/lumina-screenshot/Makefile +++ b/deskutils/lumina-screenshot/Makefile @@ -16,7 +16,7 @@ LIB_DEPENDS= libxcb-ewmh.so:x11/xcb-util-wm \ libxcb-util.so:x11/xcb-util USES= compiler:c++11-lang gl qmake qt:5 xorg -USE_QT= buildtools_build concurrent core gui \ +USE_QT= buildtools:build concurrent core gui \ multimedia network svg x11extras widgets USE_XORG= xcb xdamage USE_GL= gl @@ -27,7 +27,7 @@ GH_PROJECT= lumina OPTIONS_DEFINE= NLS OPTIONS_SUB= yes -NLS_USE= QT=linguist_build +NLS_USE= QT=linguist:build NLS_QMAKE_ON= CONFIG+=WITH_I18N CONFLICTS_INSTALL= lumina-1.2.* diff --git a/deskutils/lumina-textedit/Makefile b/deskutils/lumina-textedit/Makefile index 4faee2c97bfab..fc57f31ee8c29 100644 --- a/deskutils/lumina-textedit/Makefile +++ b/deskutils/lumina-textedit/Makefile @@ -11,7 +11,7 @@ LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/../../../LICENSE USES= compiler:c++11-lang desktop-file-utils gl qmake qt:5 -USE_QT= buildtools_build concurrent core gui multimedia \ +USE_QT= buildtools:build concurrent core gui multimedia \ network printsupport svg widgets x11extras USE_GL= gl USE_GITHUB= yes @@ -21,7 +21,7 @@ GH_PROJECT= lumina OPTIONS_DEFINE= NLS OPTIONS_SUB= yes -NLS_USE= QT=linguist_build +NLS_USE= QT=linguist:build NLS_QMAKE_ON= CONFIG+=WITH_I18N CONFLICTS_INSTALL= lumina-1.2.* diff --git a/deskutils/lxqt-notificationd/Makefile b/deskutils/lxqt-notificationd/Makefile index 86302842ed870..82ba3d3766012 100644 --- a/deskutils/lxqt-notificationd/Makefile +++ b/deskutils/lxqt-notificationd/Makefile @@ -11,7 +11,7 @@ LICENSE= LGPL21+ USES= cmake compiler:c++14-lang gettext kde:5 lxqt qt:5 \ pkgconfig tar:xz gnome xorg -USE_QT= buildtools_build qmake_build dbus core gui \ +USE_QT= buildtools:build qmake:build dbus core gui \ linguisttools svg widgets x11extras xml USE_KDE= windowsystem USE_LXQT= buildtools lxqt diff --git a/deskutils/maliit-framework/Makefile b/deskutils/maliit-framework/Makefile index 71e1e6b780d3b..421ac7166794d 100644 --- a/deskutils/maliit-framework/Makefile +++ b/deskutils/maliit-framework/Makefile @@ -19,7 +19,7 @@ USE_GITHUB= yes GH_ACCOUNT= maliit USE_GNOME= atk cairo gdkpixbuf2 glib20 gtk30 pango USE_QT= core dbus declarative gui network wayland widgets \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= xcb CMAKE_ON= enable-dbus-activation \ diff --git a/deskutils/maliit-keyboard/Makefile b/deskutils/maliit-keyboard/Makefile index 7723b827d7675..b680083dad91b 100644 --- a/deskutils/maliit-keyboard/Makefile +++ b/deskutils/maliit-keyboard/Makefile @@ -19,7 +19,7 @@ GH_ACCOUNT= maliit USE_GNOME= glib20 GLIB_SCHEMAS= org.maliit.keyboard.maliit.gschema.xml USE_QT= core dbus declarative gui multimedia network quickcontrols2 \ - buildtools_build qmake_build + buildtools:build qmake:build CMAKE_OFF= enable-tests CMAKE_ARGS= -DHUNSPELL_DICT_PATH=${PREFIX}/share/hunspell diff --git a/deskutils/mbox-importer/Makefile b/deskutils/mbox-importer/Makefile index 6b375f9c777e2..a9130ccc0dcb1 100644 --- a/deskutils/mbox-importer/Makefile +++ b/deskutils/mbox-importer/Makefile @@ -14,13 +14,13 @@ LIB_DEPENDS= libassuan.so:security/libassuan \ USES= cmake compiler:c++11-lib desktop-file-utils gettext kde:5 qt:5 tar:xz USE_KDE= archive auth codecs completion config configwidgets coreaddons \ crash i18n itemmodels kio service widgetsaddons \ - ecm_build + ecm:build # pim components USE_KDE+= akonadi akonadicontacts akonadimime contacts \ grantleetheme identitymanagement imap libkdepim libkleo mailcommon \ mailimporter messagelib mime pimcommon pimtextedit USE_QT= concurrent core dbus gui network widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr diff --git a/deskutils/mindforger/Makefile b/deskutils/mindforger/Makefile index cc9cdbb64927b..9e5ee4563b984 100644 --- a/deskutils/mindforger/Makefile +++ b/deskutils/mindforger/Makefile @@ -11,7 +11,7 @@ LICENSE= GPLv2+ LIB_DEPENDS= libhunspell-1.7.so:textproc/hunspell USES= pkgconfig qmake qt:5 -USE_QT= buildtools_build core declarative gui location network \ +USE_QT= buildtools:build core declarative gui location network \ printsupport webchannel widgets USE_GITHUB= yes GH_ACCOUNT= dvorka diff --git a/deskutils/nextcloudclient/Makefile b/deskutils/nextcloudclient/Makefile index 8053e4b925fec..e547fc12e1db9 100644 --- a/deskutils/nextcloudclient/Makefile +++ b/deskutils/nextcloudclient/Makefile @@ -17,8 +17,8 @@ LIB_DEPENDS= libinotify.so:devel/libinotify \ USES= cmake:noninja compiler:c++14-lang desktop-file-utils gmake \ gnome iconv localbase:ldflags pkgconfig qt:5 shared-mime-info \ sqlite ssl -USE_QT= buildtools_build concurrent core dbus declarative graphicaleffects \ - gui linguist_build location network printsupport qmake_build \ +USE_QT= buildtools:build concurrent core dbus declarative graphicaleffects \ + gui linguist:build location network printsupport qmake:build \ quickcontrols2 sql svg testlib webchannel websockets \ widgets xml CMAKE_ARGS= -DBUILD_UPDATER:BOOL=OFF \ diff --git a/deskutils/owncloudclient/Makefile b/deskutils/owncloudclient/Makefile index ceaa57869032b..5fcde6938096c 100644 --- a/deskutils/owncloudclient/Makefile +++ b/deskutils/owncloudclient/Makefile @@ -26,7 +26,7 @@ USE_KDE= completion config coreaddons jobwidgets kio service \ widgetsaddons windowsystem USE_LDCONFIG= yes USE_QT= concurrent core dbus gui network sql webkit widgets xml \ - buildtools_build linguist_build qmake_build + buildtools:build linguist:build qmake:build CMAKE_ARGS= -DCMAKE_INSTALL_MANDIR:STRING=man \ -DSYSCONF_INSTALL_DIR="${PREFIX}/etc" diff --git a/deskutils/pim-data-exporter/Makefile b/deskutils/pim-data-exporter/Makefile index f7eaad5c84e52..9add0b05c9de8 100644 --- a/deskutils/pim-data-exporter/Makefile +++ b/deskutils/pim-data-exporter/Makefile @@ -17,13 +17,13 @@ USE_KDE= archive auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons i18n itemmodels itemviews \ jobwidgets kio notifications service solid wallet \ widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build # pim components USE_KDE+= akonadi akonadicontacts akonadimime akonadinotes calendarcore contacts \ grantleetheme identitymanagement imap libkdepim libkleo mailcommon \ mailtransport messagelib mime pimcommon pimtextedit USE_QT= concurrent core dbus gui network widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 USE_LDCONFIG= yes diff --git a/deskutils/pim-sieve-editor/Makefile b/deskutils/pim-sieve-editor/Makefile index a05678c49b426..7033806579a1d 100644 --- a/deskutils/pim-sieve-editor/Makefile +++ b/deskutils/pim-sieve-editor/Makefile @@ -11,11 +11,11 @@ USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= auth bookmarks codecs config configwidgets coreaddons crash \ dbusaddons i18n iconthemes kio service wallet \ widgetsaddons xmlgui \ - ecm_build + ecm:build # pim components USE_KDE+= libksieve mailtransport pimcommon pimtextedit USE_QT= concurrent core dbus gui network widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr diff --git a/deskutils/plasma5-milou/Makefile b/deskutils/plasma5-milou/Makefile index 6707d180c2e76..bc1d7513f1ffa 100644 --- a/deskutils/plasma5-milou/Makefile +++ b/deskutils/plasma5-milou/Makefile @@ -10,6 +10,6 @@ USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config coreaddons i18n itemmodels kdeclarative \ package plasma-framework runner service USE_QT= core declarative gui network script widgets \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build .include diff --git a/deskutils/plasma5-sddm-kcm/Makefile b/deskutils/plasma5-sddm-kcm/Makefile index 3f9a978624b54..40b7565d50600 100644 --- a/deskutils/plasma5-sddm-kcm/Makefile +++ b/deskutils/plasma5-sddm-kcm/Makefile @@ -14,7 +14,7 @@ USE_KDE= archive attica auth codecs completion config configwidgets \ newstuff service widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus declarative designer gui network uiplugin \ widgets x11extras xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= ice sm x11 xcb xcursor xext xfixes .include diff --git a/deskutils/plasma5-xdg-desktop-portal-kde/Makefile b/deskutils/plasma5-xdg-desktop-portal-kde/Makefile index 020c3bc8daee3..6a83d8f36c6e8 100644 --- a/deskutils/plasma5-xdg-desktop-portal-kde/Makefile +++ b/deskutils/plasma5-xdg-desktop-portal-kde/Makefile @@ -14,10 +14,10 @@ USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons i18n itemviews jobwidgets kdeclarative kio \ kirigami2 notifications package plasma-framework service solid \ wayland widgetsaddons windowsystem xmlgui \ - ecm_build plasma-wayland-protocols_build + ecm:build plasma-wayland-protocols:build USE_QT= concurrent core dbus declarative gui network printsupport \ widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 .include diff --git a/deskutils/qlipper/Makefile b/deskutils/qlipper/Makefile index 2152a1c460a0d..26f99e0c57a3c 100644 --- a/deskutils/qlipper/Makefile +++ b/deskutils/qlipper/Makefile @@ -21,7 +21,7 @@ LXQTAUTOSTART_DESC= Create autostart entry for LXQt LXQTAUTOSTART_BUILD_DEPENDS= ${LOCALBASE}/share/cmake/lxqt-build-tools/lxqt-build-tools-config.cmake:devel/lxqt-build-tools LXQTAUTOSTART_CMAKE_BOOL= ENABLE_LXQT_AUTOSTART -USE_QT= buildtools_build qmake_build core gui linguisttools \ +USE_QT= buildtools:build qmake:build core gui linguisttools \ network widgets USE_XORG= x11 diff --git a/deskutils/qownnotes/Makefile b/deskutils/qownnotes/Makefile index d581b478b47dc..41075169e8eac 100644 --- a/deskutils/qownnotes/Makefile +++ b/deskutils/qownnotes/Makefile @@ -14,7 +14,7 @@ RUN_DEPENDS= git:devel/git USES= gl gmake pkgconfig qmake qt:5 tar:xz xorg USE_GL= gl -USE_QT= buildtools_build linguisttools_build \ +USE_QT= buildtools:build linguisttools:build \ concurrent core declarative gui network printsupport \ sql svg websockets widgets x11extras xml xmlpatterns USE_XORG= x11 diff --git a/deskutils/qtfeedback/Makefile b/deskutils/qtfeedback/Makefile index ab94e48c7de41..917fd90381821 100644 --- a/deskutils/qtfeedback/Makefile +++ b/deskutils/qtfeedback/Makefile @@ -13,7 +13,7 @@ USE_GITHUB= yes GH_ACCOUNT= qtproject USE_GL= gl USE_QT= core declarative gui multimedia network \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build pre-configure: cd ${CONFIGURE_WRKSRC} && ${QT_BINDIR}/syncqt.pl -version ${QT5_VERSION} -module QtFeedback diff --git a/deskutils/recoll/Makefile b/deskutils/recoll/Makefile index 34f70f2e3a856..f2d7aca1be155 100644 --- a/deskutils/recoll/Makefile +++ b/deskutils/recoll/Makefile @@ -26,7 +26,7 @@ USE_LDCONFIG= yes USE_PYTHON= py3kplist PYDISTUTILS_PKGNAME= Recoll PYDISTUTILS_PKGVERSION= 1.0 -USE_QT= core gui printsupport widgets xml buildtools_build qmake_build +USE_QT= core gui printsupport widgets xml buildtools:build qmake:build SHEBANG_FILES= desktop/hotrecoll.py filters/*.py filters/rcl7z \ filters/rclaudio filters/rclchm filters/rcldia filters/rclepub \ diff --git a/deskutils/semantik/Makefile b/deskutils/semantik/Makefile index 378dfab829a29..dad2f0493adbf 100644 --- a/deskutils/semantik/Makefile +++ b/deskutils/semantik/Makefile @@ -17,7 +17,7 @@ USE_KDE= auth config configwidgets coreaddons i18n iconthemes \ USE_LDCONFIG= yes USE_QT= core dbus declarative gui location network printsupport \ svg webchannel webengine widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build SHEBANG_FILES= src/templates/beamer/wscript \ src/templates/pdflatex/wscript \ diff --git a/deskutils/syncthingtray/Makefile b/deskutils/syncthingtray/Makefile index 50b81f4931edb..fb453a8731540 100644 --- a/deskutils/syncthingtray/Makefile +++ b/deskutils/syncthingtray/Makefile @@ -27,8 +27,8 @@ GH_TUPLE= Martchus:${PORTNAME}:${DISTVERSIONPREFIX}${DISTVERSION}:syncthingtray/ USE_KDE= plasma-framework USE_QT= concurrent core dbus declarative gui location network \ printsupport qdbus quickcontrols2 svg webchannel \ - widgets x11extras buildtools_build doc_build linguist_build \ - qmake_build testlib_build + widgets x11extras buildtools:build doc:build linguist:build \ + qmake:build testlib:build CMAKE_OFF= USE_STANDARD_FILESYSTEM SYSTEMD_SUPPORT diff --git a/deskutils/todour/Makefile b/deskutils/todour/Makefile index 3584a2680dc1d..9859d8a9c7424 100644 --- a/deskutils/todour/Makefile +++ b/deskutils/todour/Makefile @@ -10,7 +10,7 @@ WWW= https://nerdur.com/todour-pl/ LICENSE= GPLv2 USES= qmake qt:5 -USE_QT= buildtools_build core gui network widgets +USE_QT= buildtools:build core gui network widgets USE_GITHUB= yes GH_ACCOUNT= SverrirValgeirsson GH_PROJECT= Todour diff --git a/deskutils/zanshin/Makefile b/deskutils/zanshin/Makefile index adbbc6bfa854e..fa8ab8f73b1a1 100644 --- a/deskutils/zanshin/Makefile +++ b/deskutils/zanshin/Makefile @@ -18,10 +18,10 @@ USE_KDE= akonadi auth bookmarks codecs completion config configwidgets \ USE_KDE+= akonadicalendar akonadicontacts akonadinotes akonadisearch \ calendarcore contacts identitymanagement kontactinterface ldap \ mime pimtextedit \ - kdepim-runtime5_run + kdepim-runtime5:run USE_QT= concurrent core dbus declarative gui network printsupport testlib \ widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 .include diff --git a/deskutils/znotes/Makefile b/deskutils/znotes/Makefile index 1f5163dfbe382..122bee97ddb80 100644 --- a/deskutils/znotes/Makefile +++ b/deskutils/znotes/Makefile @@ -11,7 +11,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= compiler:c++11-lang gl qmake qt:5 USE_GL= gl -USE_QT= buildtools_build linguisttools_build core gui network \ +USE_QT= buildtools:build linguisttools:build core gui network \ printsupport widgets xml USE_GITHUB= yes diff --git a/devel/RStudio/Makefile b/devel/RStudio/Makefile index 66dc59dbb4f3e..29d2e38be81fc 100644 --- a/devel/RStudio/Makefile +++ b/devel/RStudio/Makefile @@ -70,7 +70,7 @@ GIN_VERSION= 2.1.2 COMMENT+= (desktop UI version) USES+= desktop-file-utils qt:5 shared-mime-info USE_QT= core dbus declarative gui location network opengl printsupport quickcontrols sensors \ - sql svg webchannel webengine webkit widgets xml xmlpatterns buildtools_build qmake_build + sql svg webchannel webengine webkit widgets xml xmlpatterns buildtools:build qmake:build CMAKE_ARGS+= -DRSTUDIO_TARGET=Desktop INSTALL_SUBDIR= ${PORTNAME:tl} EXECUTABLE= ${PORTNAME:tl} diff --git a/devel/apitrace/Makefile b/devel/apitrace/Makefile index def3ca012595d..98a43a2965e79 100644 --- a/devel/apitrace/Makefile +++ b/devel/apitrace/Makefile @@ -33,7 +33,7 @@ OPTIONS_SUB= yes WAFFLE_DESC= Use Waffle library to allow retrace on Wayland, headless etc. QT5_USES= qt:5 -QT5_USE= QT=core,gui,network,widgets,buildtools_build,qmake_build +QT5_USE= QT=core,gui,network,widgets,buildtools:build,qmake:build QT5_CMAKE_BOOL= ENABLE_GUI WAFFLE_LIB_DEPENDS= libwaffle-1.so:graphics/waffle diff --git a/devel/cervisia/Makefile b/devel/cervisia/Makefile index a93d22e1f432d..921945c2f8046 100644 --- a/devel/cervisia/Makefile +++ b/devel/cervisia/Makefile @@ -11,9 +11,9 @@ USE_KDE= auth codecs completion config configwidgets coreaddons \ dbusaddons doctools i18n iconthemes init itemviews \ jobwidgets kdesu kio notifications parts pty service solid \ sonnet textwidgets widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus gui network widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 OPTIONS_DEFINE= DOCS diff --git a/devel/cmake-doc/Makefile b/devel/cmake-doc/Makefile index 0d6b46a36a053..22559aed417cd 100644 --- a/devel/cmake-doc/Makefile +++ b/devel/cmake-doc/Makefile @@ -17,7 +17,7 @@ DISTINFO_FILE= ${.CURDIR}/../cmake-core/distinfo NO_ARCH= yes USES= cmake qt:5 -USE_QT= help_build +USE_QT= help:build USE_LOCALE= en_US.UTF-8 CMAKE_OFF= SPHINX_MAN diff --git a/devel/cmake-gui/Makefile b/devel/cmake-gui/Makefile index 28d901083fa33..0f71a590f5fac 100644 --- a/devel/cmake-gui/Makefile +++ b/devel/cmake-gui/Makefile @@ -27,7 +27,7 @@ qt6_CONFLICTS_INSTALL= cmake-gui-qt5 USES= cmake:run,insource compiler:c++11-lang desktop-file-utils libarchive \ shared-mime-info qt:${FLAVOR:S/qt//} -_USE_QT5= core gui widgets buildtools_build qmake_build +_USE_QT5= core gui widgets buildtools:build qmake:build _USE_QT6= base USE_QT= ${_USE_QT${FLAVOR:S/qt//}} CMAKE_ARGS= -DCMAKE_DATA_DIR:STRING="/${DATADIR_REL}" \ diff --git a/devel/codequery/Makefile b/devel/codequery/Makefile index b92cd5f5ad3dc..7d595b3bd3721 100644 --- a/devel/codequery/Makefile +++ b/devel/codequery/Makefile @@ -19,7 +19,7 @@ USE_GITHUB= yes GH_ACCOUNT= ruben2020 USE_QT= concurrent core gui widgets xml \ - buildtools_build linguisttools_build qmake_build + buildtools:build linguisttools:build qmake:build CMAKE_ON= BUILD_QT5 diff --git a/devel/cppcheck/Makefile b/devel/cppcheck/Makefile index b0c18b6176007..80d376a2abfbb 100644 --- a/devel/cppcheck/Makefile +++ b/devel/cppcheck/Makefile @@ -24,7 +24,7 @@ RUN_DEPENDS= cppcheck:devel/cppcheck CMAKE_ON+= BUILD_GUI USES+= qt:5 -USE_QT= core gui widgets printsupport help qmake_build buildtools_build linguisttools_build +USE_QT= core gui widgets printsupport help qmake:build buildtools:build linguisttools:build BUILD_WRKSRC= ${WRKSRC}/gui INSTALL_WRKSRC= ${WRKSRC}/gui diff --git a/devel/dolphin-plugins/Makefile b/devel/dolphin-plugins/Makefile index b0a936a3f64b4..4b8f067068b13 100644 --- a/devel/dolphin-plugins/Makefile +++ b/devel/dolphin-plugins/Makefile @@ -17,7 +17,7 @@ USE_KDE= auth bookmarks codecs completion config configwidgets \ syntaxhighlighting texteditor textwidgets unitconversion widgetsaddons \ windowsystem xmlgui USE_QT= concurrent core dbus gui network printsupport widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 OPTIONS_DEFINE= DOCS diff --git a/devel/doxygen/Makefile b/devel/doxygen/Makefile index 9bc958c802b1b..6ec8055a4458a 100644 --- a/devel/doxygen/Makefile +++ b/devel/doxygen/Makefile @@ -48,7 +48,7 @@ GRAPHVIZ_RUN_DEPENDS= dot:graphics/graphviz LATEX_USE= TEX=base,dvipsk,pdftex QT5_USES= qt:5 -QT5_USE= QT=core,widgets,gui,xml,qmake_build,buildtools_build +QT5_USE= QT=core,widgets,gui,xml,qmake:build,buildtools:build QT5_CMAKE_BOOL= build_wizard QT5_PLIST_FILES= bin/doxywizard diff --git a/devel/easy-profiler/Makefile b/devel/easy-profiler/Makefile index 786582a21828b..7cb4dc2782b70 100644 --- a/devel/easy-profiler/Makefile +++ b/devel/easy-profiler/Makefile @@ -16,7 +16,7 @@ LICENSE_FILE_MIT= ${WRKSRC}/easy_profiler_core/LICENSE.MIT BROKEN_i386= see https://github.com/yse/easy_profiler/issues/202 USES= cmake compiler:c++11-lang qt:5 -USE_QT= core gui widgets buildtools_build qmake_build +USE_QT= core gui widgets buildtools:build qmake:build USE_GITHUB= yes GH_ACCOUNT= yse diff --git a/devel/elf-dissector/Makefile b/devel/elf-dissector/Makefile index 4213c19e97b28..1ec4598ce7268 100644 --- a/devel/elf-dissector/Makefile +++ b/devel/elf-dissector/Makefile @@ -19,9 +19,9 @@ USES= cmake compiler:c++17-lang \ kde:5 pkgconfig qt:5 USE_QT= core \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build USE_KDE= itemmodels \ - doctools_build ecm_build + doctools:build ecm:build KDE_INVENT= 942274185cc89fabf74f5f1efb886ecf210ab2fb sdk diff --git a/devel/eql5/Makefile b/devel/eql5/Makefile index 81a0a322f3e2b..327e3b67265ce 100644 --- a/devel/eql5/Makefile +++ b/devel/eql5/Makefile @@ -14,7 +14,7 @@ LIB_DEPENDS= libecl.so:lang/ecl USES= gl qmake qt:5 USE_QT= core declarative gui help location multimedia network \ printsupport sql svg webchannel webengine widgets \ - buildtools_build uitools_build + buildtools:build uitools:build USE_GL= gl USE_LDCONFIG= yes diff --git a/devel/fuel/Makefile b/devel/fuel/Makefile index 8b374f1f1d6ba..1f84d17e49863 100644 --- a/devel/fuel/Makefile +++ b/devel/fuel/Makefile @@ -15,7 +15,7 @@ RUN_DEPENDS= fossil:devel/fossil USES= compiler:c++11-lang gmake qmake qt:5 shebangfix USE_QT= core gui network webkit widgets \ - buildtools_build linguisttools_build + buildtools:build linguisttools:build SHEBANG_FILES= intl/convert.sh PLIST_FILES= bin/fuel share/applications/fuel.desktop \ diff --git a/devel/gammaray/Makefile b/devel/gammaray/Makefile index 478e18fc7b23c..73a2140d8f107 100644 --- a/devel/gammaray/Makefile +++ b/devel/gammaray/Makefile @@ -20,7 +20,7 @@ USES= cmake kde:5 pkgconfig qt:5 USE_QT= 3d concurrent core declarative designer gui help linguisttools \ location network printsupport script scripttools svg uiplugin \ - webchannel widgets xml buildtools_build qdoc_build qmake_build + webchannel widgets xml buildtools:build qdoc:build qmake:build USE_KDE= coreaddons syntaxhighlighting USE_GITHUB= yes diff --git a/devel/gitklient/Makefile b/devel/gitklient/Makefile index 0a3c6818b8ec6..982981885214b 100644 --- a/devel/gitklient/Makefile +++ b/devel/gitklient/Makefile @@ -19,7 +19,7 @@ USE_KDE= auth bookmarks codecs completion config configwidgets \ jobwidgets kio parts service solid sonnet syntaxhighlighting \ texteditor textwidgets widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus gui network testlib widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 .include diff --git a/devel/gitqlient/Makefile b/devel/gitqlient/Makefile index b711ee900d31f..9679ffbb8f9a5 100644 --- a/devel/gitqlient/Makefile +++ b/devel/gitqlient/Makefile @@ -13,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= compiler:c++11-lang cpe qmake:outsource qt:5 USE_GL+= gl USE_QT= core gui widgets \ - buildtools_build + buildtools:build USE_GITHUB= yes GH_ACCOUNT= francescmm diff --git a/devel/grantlee5/Makefile b/devel/grantlee5/Makefile index af42da457cdd3..d7f9f8b672fba 100644 --- a/devel/grantlee5/Makefile +++ b/devel/grantlee5/Makefile @@ -14,7 +14,7 @@ LICENSE= LGPL21 PORTSCOUT= limit:^5\. USE_QT= core declarative gui network script \ - buildtools_build qmake_build + buildtools:build qmake:build USES= cmake compiler:c++11-lib grantlee:5,selfbuild qt:5 USE_CXXSTD= c++11 CMAKE_ARGS+= -DBUILD_TESTS:BOOL=FALSE diff --git a/devel/gwenhywfar/Makefile b/devel/gwenhywfar/Makefile index b9fbaf43c6b37..d300af58d223f 100644 --- a/devel/gwenhywfar/Makefile +++ b/devel/gwenhywfar/Makefile @@ -76,7 +76,7 @@ USE_GNOME+= cairo gdkpixbuf2 gtk30 USES+= compiler:c++11-lang gl qmake:no_env qt:5 USE_GL= gl USE_QT= core gui widgets \ - buildtools_build qmake_build + buildtools:build qmake:build CONFIGURE_ARGS+=--with-qt5-qmake=${QMAKE} \ --with-qt5-moc=${MOC} \ --with-qt5-uic=${UIC} diff --git a/devel/heaptrack/Makefile b/devel/heaptrack/Makefile index 3d38e2a9b043c..56bbf774de482 100644 --- a/devel/heaptrack/Makefile +++ b/devel/heaptrack/Makefile @@ -23,7 +23,7 @@ USE_KDE= auth auth codecs completion config config \ jobwidgets kio kio service solid threadweaver \ widgetsaddons windowsystem USE_QT= concurrent core dbus gui network widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 .include diff --git a/devel/heimdall/Makefile b/devel/heimdall/Makefile index c8373cd5891fa..86decd498ceff 100644 --- a/devel/heimdall/Makefile +++ b/devel/heimdall/Makefile @@ -19,7 +19,7 @@ OPTIONS_DEFAULT=GUI OPTIONS_SUB= yes GUI_USES= qt:5 -GUI_USE= QT=buildtools_build,core,gui,qmake_build,widgets +GUI_USE= QT=buildtools:build,core,gui,qmake:build,widgets GUI_CMAKE_OFF= -DDISABLE_FRONTEND=YES GH_ACCOUNT= Benjamin-Dobell diff --git a/devel/injeqt/Makefile b/devel/injeqt/Makefile index 3f65d8ae256ee..3f328a28efda5 100644 --- a/devel/injeqt/Makefile +++ b/devel/injeqt/Makefile @@ -14,7 +14,7 @@ USE_GITHUB= yes GH_ACCOUNT= vogel USES= cmake compiler:c++11-lib pathfix qt:5 -USE_QT= core buildtools_build qmake_build testlib_build +USE_QT= core buildtools:build qmake:build testlib:build USE_LDCONFIG= yes CMAKE_ON= DISABLE_EXAMPLES \ diff --git a/devel/kapptemplate/Makefile b/devel/kapptemplate/Makefile index b543925ab069f..2a797340ba81e 100644 --- a/devel/kapptemplate/Makefile +++ b/devel/kapptemplate/Makefile @@ -12,9 +12,9 @@ USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz xorg USE_KDE= auth archive codecs completion config configwidgets coreaddons \ doctools i18n jobwidgets kio newstuff service solid \ widgetsaddons windowsystem \ - ecm_build + ecm:build USE_QT= concurrent core dbus gui network testlib widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 OPTIONS_DEFINE= DOCS diff --git a/devel/kcachegrind/Makefile b/devel/kcachegrind/Makefile index 29701e571315f..ecbbb65b5d38c 100644 --- a/devel/kcachegrind/Makefile +++ b/devel/kcachegrind/Makefile @@ -11,9 +11,9 @@ USES= cmake compiler:c++11-lang desktop-file-utils kde:5 python:run qt:5 \ USE_KDE= archive auth bookmarks codecs completion config configwidgets \ coreaddons dbusaddons i18n itemviews jobwidgets kio service solid \ widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus gui network widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 SHEBANG_FILES= converters/dprof2calltree \ diff --git a/devel/kdbg/Makefile b/devel/kdbg/Makefile index 31478eb55cc9b..ca282bcdf932c 100644 --- a/devel/kdbg/Makefile +++ b/devel/kdbg/Makefile @@ -14,7 +14,7 @@ USES= cmake compiler:c++11-lang kde:5 qt:5 xorg USE_KDE= auth codecs config configwidgets coreaddons ecm \ i18n iconthemes widgetsaddons windowsystem xmlgui USE_QT= core dbus gui widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 USE_GITHUB= yes GH_ACCOUNT= j6t diff --git a/devel/kde-dev-scripts/Makefile b/devel/kde-dev-scripts/Makefile index b73aa1aa9538c..d18fcb9b6c445 100644 --- a/devel/kde-dev-scripts/Makefile +++ b/devel/kde-dev-scripts/Makefile @@ -7,7 +7,7 @@ COMMENT= KDE development scripts USES= cmake kde:5 perl5 python:run qt:5 shebangfix tar:xz USE_KDE= doctools ecm -USE_QT= buildtools_build qmake_build +USE_QT= buildtools:build qmake:build SHEBANG_FILES= cxxmetric \ draw_lib_dependencies \ diff --git a/devel/kde-dev-utils/Makefile b/devel/kde-dev-utils/Makefile index 2f00a8c6372f0..63c624e4f64f7 100644 --- a/devel/kde-dev-utils/Makefile +++ b/devel/kde-dev-utils/Makefile @@ -11,9 +11,9 @@ USE_GL= gl USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons i18n itemviews jobwidgets kio parts service \ solid sonnet textwidgets widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus designer gui network widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 OPTIONS_DEFINE= DOCS diff --git a/devel/kdesdk-kio/Makefile b/devel/kdesdk-kio/Makefile index 3891b5fc14e68..eb4547dac289c 100644 --- a/devel/kdesdk-kio/Makefile +++ b/devel/kdesdk-kio/Makefile @@ -8,9 +8,9 @@ WWW= https://kde.org/ USES= cmake compiler:c++11-lang gettext kde:5 qt:5 shebangfix tar:xz USE_KDE= config coreaddons i18n kio service \ - ecm_build + ecm:build USE_QT= concurrent core dbus network \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build SHEBANG_FILES= perldoc/pod2html.pl diff --git a/devel/kdesdk-thumbnailers/Makefile b/devel/kdesdk-thumbnailers/Makefile index 3ba2a7397832e..85d34b01fd943 100644 --- a/devel/kdesdk-thumbnailers/Makefile +++ b/devel/kdesdk-thumbnailers/Makefile @@ -11,9 +11,9 @@ LIB_DEPENDS= libgettextpo.so:devel/gettext-tools USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz xorg USE_KDE= completion config coreaddons i18n jobwidgets \ kio service solid widgetsaddons windowsystem \ - ecm_build + ecm:build USE_QT= concurrent core dbus gui network widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 OPTIONS_DEFINE= DOCS diff --git a/devel/kdesdk/Makefile b/devel/kdesdk/Makefile index 4d920d857a6a0..51e6508c488cc 100644 --- a/devel/kdesdk/Makefile +++ b/devel/kdesdk/Makefile @@ -38,7 +38,7 @@ KAPPTEMPLATE_DESC= Template generator KAPPTEMPLATE_RUN_DEPENDS= kapptemplate>=${KDE_APPLICATIONS_VERSION}:devel/kapptemplate KATE_DESC= KDE advanced text editor -KATE_USE= KDE=kate_run +KATE_USE= KDE=kate:run KCACHEGRIND_DESC= Profiler frontend KCACHEGRIND_RUN_DEPENDS= kcachegrind>=${KDE_APPLICATIONS_VERSION}:devel/kcachegrind diff --git a/devel/kdesvn/Makefile b/devel/kdesvn/Makefile index 1fffe120dc2da..a2d6f648277fc 100644 --- a/devel/kdesvn/Makefile +++ b/devel/kdesvn/Makefile @@ -23,9 +23,9 @@ USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons dbusaddons ecm i18n iconthemes itemviews jobwidgets \ kio notifications parts service sonnet solid texteditor \ textwidgets wallet widgetsaddons windowsystem xmlgui \ - doctools_build + doctools:build USE_QT= concurrent core dbus gui network sql widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 PORTSCOUT= ignore:1 diff --git a/devel/kdev-php/Makefile b/devel/kdev-php/Makefile index 98d5676d76456..1dbd7b3f9c757 100644 --- a/devel/kdev-php/Makefile +++ b/devel/kdev-php/Makefile @@ -17,7 +17,7 @@ USE_KDE= auth codecs completion config configwidgets coreaddons ecm \ sonnet syntaxhighlighting texteditor textwidgets threadweaver \ widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus gui network webkit widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 # Versioning values, to reduce plist churn (match with devel/kdevelop) diff --git a/devel/kdev-python/Makefile b/devel/kdev-python/Makefile index c3f5dc24ea147..f78ffe267648c 100644 --- a/devel/kdev-python/Makefile +++ b/devel/kdev-python/Makefile @@ -17,7 +17,7 @@ USE_KDE= attica auth codecs completion config configwidgets coreaddons \ solid sonnet syntaxhighlighting texteditor textwidgets \ threadweaver widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus gui network widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 # Versioning values, to reduce plist churn (match with devel/kdevelop) diff --git a/devel/kdevelop-pg-qt/Makefile b/devel/kdevelop-pg-qt/Makefile index 14db1bbe7b1e1..b80ee83041bc0 100644 --- a/devel/kdevelop-pg-qt/Makefile +++ b/devel/kdevelop-pg-qt/Makefile @@ -16,7 +16,7 @@ BUILD_DEPENDS= ${LOCALBASE}/bin/flex:textproc/flex USES= bison cmake compiler:c++11-lib kde:5 qt:5 tar:xz USE_KDE= ecm USE_QT= core testlib \ - buildtools_build qmake_build + buildtools:build qmake:build CONFLICTS= kdevelop-pg-qt-1.0* diff --git a/devel/kdevelop/Makefile b/devel/kdevelop/Makefile index 4c9888eee02ae..0bf966f8223e3 100644 --- a/devel/kdevelop/Makefile +++ b/devel/kdevelop/Makefile @@ -33,11 +33,11 @@ USE_KDE= archive attica auth bookmarks codecs completion config configwidgets \ textwidgets threadweaver \ widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus declarative gui help network printsupport \ - script sql widgets xml buildtools_build qmake_build + script sql widgets xml buildtools:build qmake:build USE_XORG= x11 SHEBANG_FILES= kdevplatform/util/kdevplatform_shell_environment.sh \ kdevplatform/util/.zshrc -# Most ports have ecm_build, testlib_build, but because this is an +# Most ports have ecm:build, testlib:build, but because this is an # IDE, which **probably** is used for Qt / KDE development (also # other things, but let's guess a target market), pull in some # additional development things that are otherwise build-dep-only. diff --git a/devel/kf5-extra-cmake-modules/Makefile b/devel/kf5-extra-cmake-modules/Makefile index 06c5f591e041e..b0af99ec97ba9 100644 --- a/devel/kf5-extra-cmake-modules/Makefile +++ b/devel/kf5-extra-cmake-modules/Makefile @@ -9,9 +9,9 @@ LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/COPYING-CMAKE-SCRIPTS USES= cmake kde:5 qt:5 tar:xz -USE_QT= linguisttools buildtools_build qmake_build +USE_QT= linguisttools buildtools:build qmake:build -HELP_USE= QT=help_build # qt5-help is only used to build a .qch file. +HELP_USE= QT=help:build # qt5-help is only used to build a .qch file. NO_ARCH= yes PORTDOCS= html/* diff --git a/devel/kf5-kauth/Makefile b/devel/kf5-kauth/Makefile index 99a0476e0b411..9a232a2646013 100644 --- a/devel/kf5-kauth/Makefile +++ b/devel/kf5-kauth/Makefile @@ -10,8 +10,8 @@ LIB_DEPENDS= libpolkit-qt5-core-1.so:sysutils/polkit-qt USES= cmake compiler:c++11-lib cpe kde:5 qt:5 tar:xz CPE_VENDOR= kde USE_KDE= coreaddons \ - ecm_build + ecm:build USE_QT= core dbus gui linguisttools widgets \ - buildtools_build qmake_build + buildtools:build qmake:build .include diff --git a/devel/kf5-kbookmarks/Makefile b/devel/kf5-kbookmarks/Makefile index 74fdc619c9359..9f465f6b76540 100644 --- a/devel/kf5-kbookmarks/Makefile +++ b/devel/kf5-kbookmarks/Makefile @@ -8,8 +8,8 @@ COMMENT= KF5 library for bookmarks and the XBEL format USES= cmake compiler:c++11-lib kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons \ widgetsaddons xmlgui \ - ecm_build + ecm:build USE_QT= core dbus gui linguisttools widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build .include diff --git a/devel/kf5-kcmutils/Makefile b/devel/kf5-kcmutils/Makefile index 083f94959e25a..c177cf1f2a37f 100644 --- a/devel/kf5-kcmutils/Makefile +++ b/devel/kf5-kcmutils/Makefile @@ -9,8 +9,8 @@ USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons guiaddons i18n \ itemviews kdeclarative package service \ widgetsaddons xmlgui \ - ecm_build + ecm:build USE_QT= core dbus declarative gui network widgets xml \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build .include diff --git a/devel/kf5-kconfig/Makefile b/devel/kf5-kconfig/Makefile index f851adf23f47a..8a12ba5034081 100644 --- a/devel/kf5-kconfig/Makefile +++ b/devel/kf5-kconfig/Makefile @@ -11,8 +11,8 @@ LICENSE= LGPL21+ USES= cmake compiler:c++11-lib cpe kde:5 qt:5 tar:xz CPE_VENDOR= kde -USE_KDE= ecm_build +USE_KDE= ecm:build USE_QT= core dbus declarative gui linguisttools network xml \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build .include diff --git a/devel/kf5-kcoreaddons/Makefile b/devel/kf5-kcoreaddons/Makefile index cd7bded7cd610..d32c1109fd193 100644 --- a/devel/kf5-kcoreaddons/Makefile +++ b/devel/kf5-kcoreaddons/Makefile @@ -9,9 +9,9 @@ LICENSE= LGPL21+ BSD3CLAUSE LICENSE_COMB= multi USES= cmake compiler:c++11-lib kde:5 qt:5 shared-mime-info tar:xz -USE_KDE= ecm_build +USE_KDE= ecm:build USE_QT= core linguisttools \ - buildtools_build qmake_build + buildtools:build qmake:build OPTIONS_DEFINE= FAM INOTIFY OPTIONS_DEFAULT= INOTIFY diff --git a/devel/kf5-kcrash/Makefile b/devel/kf5-kcrash/Makefile index 154d2ebb79dac..9ac7b309316e6 100644 --- a/devel/kf5-kcrash/Makefile +++ b/devel/kf5-kcrash/Makefile @@ -7,9 +7,9 @@ COMMENT= KF5 library to handle crash analysis and bug report from apps USES= cmake compiler:c++11-lib kde:5 qt:5 tar:xz xorg USE_KDE= coreaddons windowsystem \ - ecm_build + ecm:build USE_QT= core gui widgets x11extras \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build USE_XORG= ice sm x11 xext .include diff --git a/devel/kf5-kdbusaddons/Makefile b/devel/kf5-kdbusaddons/Makefile index 792b2c521fa0c..98734a4f1cb25 100644 --- a/devel/kf5-kdbusaddons/Makefile +++ b/devel/kf5-kdbusaddons/Makefile @@ -9,8 +9,8 @@ COMMENT= KF5 addons to QtDBus LICENSE= LGPL21+ USES= cmake compiler:c++11-lib kde:5 qt:5 tar:xz -USE_KDE= ecm_build +USE_KDE= ecm:build USE_QT= core dbus gui x11extras \ - buildtools_build linguisttools_build qmake_build testlib_build + buildtools:build linguisttools:build qmake:build testlib:build .include diff --git a/devel/kf5-kdeclarative/Makefile b/devel/kf5-kdeclarative/Makefile index 3965510f54383..870a895e94107 100644 --- a/devel/kf5-kdeclarative/Makefile +++ b/devel/kf5-kdeclarative/Makefile @@ -13,9 +13,9 @@ USES= cmake compiler:c++11-lib gettext kde:5 pkgconfig \ USE_KDE= completion config coreaddons globalaccel guiaddons i18n \ iconthemes jobwidgets kio notifications package service \ solid widgetsaddons windowsystem \ - ecm_build + ecm:build USE_QT= concurrent core dbus declarative gui network widgets xml \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build USE_XORG= x11 .include diff --git a/devel/kf5-kdoctools/Makefile b/devel/kf5-kdoctools/Makefile index 408fc0d363d05..b579018aa45ad 100644 --- a/devel/kf5-kdoctools/Makefile +++ b/devel/kf5-kdoctools/Makefile @@ -14,8 +14,8 @@ RUN_DEPENDS= ${LOCALBASE}/share/xsl/docbook/html/docbook.xsl:textproc/docbook-xs USES= cmake compiler:c++11-lib gettext gnome kde:5 qt:5 tar:xz USE_GNOME= libxml2 libxslt USE_KDE= archive i18n \ - ecm_build + ecm:build USE_QT= core \ - buildtools_build qmake_build + buildtools:build qmake:build .include diff --git a/devel/kf5-kfilemetadata/Makefile b/devel/kf5-kfilemetadata/Makefile index 3b08672b78bfa..565d904365edb 100644 --- a/devel/kf5-kfilemetadata/Makefile +++ b/devel/kf5-kfilemetadata/Makefile @@ -17,8 +17,8 @@ LIB_DEPENDS= libavutil.so:multimedia/ffmpeg \ USES= cmake compiler:c++11-lib gettext kde:5 pkgconfig \ qt:5 tar:xz USE_KDE= archive config coreaddons i18n \ - ecm_build + ecm:build USE_QT= core gui xml \ - buildtools_build qmake_build + buildtools:build qmake:build .include diff --git a/devel/kf5-ki18n/Makefile b/devel/kf5-ki18n/Makefile index 3a06a3a42b43b..5bd41260ab822 100644 --- a/devel/kf5-ki18n/Makefile +++ b/devel/kf5-ki18n/Makefile @@ -7,8 +7,8 @@ COMMENT= KF5 advanced internationalization framework USES= cmake compiler:c++11-lib gettext-runtime \ gettext-tools:build,run kde:5 qt:5 tar:xz -USE_KDE= ecm_build +USE_KDE= ecm:build USE_QT= concurrent core declarative network script \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build .include diff --git a/devel/kf5-kidletime/Makefile b/devel/kf5-kidletime/Makefile index 7adb819edd8f1..5750aa6a26a6a 100644 --- a/devel/kf5-kidletime/Makefile +++ b/devel/kf5-kidletime/Makefile @@ -6,9 +6,9 @@ MAINTAINER= kde@FreeBSD.org COMMENT= KF5 library for monitoring user activity USES= cmake compiler:c++11-lib kde:5 pkgconfig qt:5 tar:xz xorg -USE_KDE= ecm_build +USE_KDE= ecm:build USE_QT= core dbus gui widgets x11extras \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= ice sm x11 xext xcb xscrnsaver .include diff --git a/devel/kf5-kio/Makefile b/devel/kf5-kio/Makefile index f02e760381541..2777136455484 100644 --- a/devel/kf5-kio/Makefile +++ b/devel/kf5-kio/Makefile @@ -14,10 +14,10 @@ USE_KDE= archive auth bookmarks codecs completion config \ i18n iconthemes itemviews jobwidgets kded \ notifications service solid sonnet textwidgets wallet \ widgetsaddons windowsystem xmlgui \ - doctools_build ecm_build + doctools:build ecm:build USE_QT= concurrent core dbus declarative gui network \ script widgets x11extras xml \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build USE_XORG= x11 .include diff --git a/devel/kf5-kitemmodels/Makefile b/devel/kf5-kitemmodels/Makefile index 32d7231a56827..3c18086c5a4ae 100644 --- a/devel/kf5-kitemmodels/Makefile +++ b/devel/kf5-kitemmodels/Makefile @@ -6,8 +6,8 @@ MAINTAINER= kde@FreeBSD.org COMMENT= KF5 models for Qt Model/View system USES= cmake compiler:c++11-lib kde:5 qt:5 tar:xz -USE_KDE= ecm_build +USE_KDE= ecm:build USE_QT= core declarative network \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build .include diff --git a/devel/kf5-knewstuff/Makefile b/devel/kf5-knewstuff/Makefile index 05652df9829c6..b83bdf6fb47cb 100644 --- a/devel/kf5-knewstuff/Makefile +++ b/devel/kf5-knewstuff/Makefile @@ -11,9 +11,9 @@ USE_KDE= archive attica5 auth codecs completion config \ configwidgets coreaddons i18n iconthemes itemviews \ jobwidgets kio kirigami2 package service solid sonnet \ textwidgets widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus declarative gui network widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 .include diff --git a/devel/kf5-knotifications/Makefile b/devel/kf5-knotifications/Makefile index 38b1d75a66e06..7c4c4ca762d99 100644 --- a/devel/kf5-knotifications/Makefile +++ b/devel/kf5-knotifications/Makefile @@ -11,9 +11,9 @@ LIB_DEPENDS= libdbusmenu-qt5.so:devel/libdbusmenu-qt@qt5 \ USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz xorg USE_KDE= codecs config coreaddons windowsystem \ - ecm_build + ecm:build USE_QT= core dbus declarative gui linguisttools network phonon4 widgets x11extras \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 xtst OPTIONS_DEFINE= AUDIO diff --git a/devel/kf5-knotifyconfig/Makefile b/devel/kf5-knotifyconfig/Makefile index 5aee62aec2048..5817f211e07c6 100644 --- a/devel/kf5-knotifyconfig/Makefile +++ b/devel/kf5-knotifyconfig/Makefile @@ -11,9 +11,9 @@ LIB_DEPENDS= libcanberra.so:audio/libcanberra USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz xorg USE_KDE= completion config coreaddons i18n jobwidgets kio \ service solid widgetsaddons windowsystem \ - ecm_build + ecm:build USE_QT= concurrent core dbus gui network phonon4 widgets \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 OPTIONS_DEFINE= AUDIO diff --git a/devel/kf5-kpackage/Makefile b/devel/kf5-kpackage/Makefile index 7eb27a901ec2d..6cf5a6d57080f 100644 --- a/devel/kf5-kpackage/Makefile +++ b/devel/kf5-kpackage/Makefile @@ -7,8 +7,8 @@ COMMENT= KF5 library to load and install packages USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= archive config coreaddons i18n \ - doctools_build ecm_build + doctools:build ecm:build USE_QT= core dbus xml \ - buildtools_build qmake_build + buildtools:build qmake:build .include diff --git a/devel/kf5-kparts/Makefile b/devel/kf5-kparts/Makefile index 1ede16677d71c..e168753b92e11 100644 --- a/devel/kf5-kparts/Makefile +++ b/devel/kf5-kparts/Makefile @@ -11,7 +11,7 @@ USE_KDE= auth codecs completion config configwidgets coreaddons \ i18n iconthemes jobwidgets kio notifications service \ solid sonnet textwidgets widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus gui network widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 .include diff --git a/devel/kf5-kpeople/Makefile b/devel/kf5-kpeople/Makefile index 1a03138212ac6..fc52c6164ff09 100644 --- a/devel/kf5-kpeople/Makefile +++ b/devel/kf5-kpeople/Makefile @@ -7,8 +7,8 @@ COMMENT= KF5 library providing access to contacts USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= config coreaddons i18n itemviews service widgetsaddons \ - ecm_build + ecm:build USE_QT= core dbus declarative gui network sql widgets \ - buildtools_build qmake_build + buildtools:build qmake:build .include diff --git a/devel/kf5-kpty/Makefile b/devel/kf5-kpty/Makefile index c556e7e0ee8fc..0430637556f13 100644 --- a/devel/kf5-kpty/Makefile +++ b/devel/kf5-kpty/Makefile @@ -7,8 +7,8 @@ COMMENT= KF5 pty abstraction USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= coreaddons i18n \ - ecm_build + ecm:build USE_QT= core \ - buildtools_build qmake_build + buildtools:build qmake:build .include diff --git a/devel/kf5-kservice/Makefile b/devel/kf5-kservice/Makefile index b15a1fe613648..781973bad0cd3 100644 --- a/devel/kf5-kservice/Makefile +++ b/devel/kf5-kservice/Makefile @@ -7,9 +7,9 @@ COMMENT= KF5 advanced plugin and service introspection USES= bison cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= archive config coreaddons crash dbusaddons i18n \ - doctools_build ecm_build + doctools:build ecm:build USE_QT= core dbus gui xml \ - buildtools_build qmake_build + buildtools:build qmake:build # Make the applications.menu file not conflict with KDE4. CMAKE_ARGS= -DAPPLICATIONS_MENU_NAME:STRING="kf5-applications.menu" diff --git a/devel/kf5-ktexteditor/Makefile b/devel/kf5-ktexteditor/Makefile index ec9a5a36fb82b..61b187b0e52fc 100644 --- a/devel/kf5-ktexteditor/Makefile +++ b/devel/kf5-ktexteditor/Makefile @@ -15,10 +15,10 @@ USE_KDE= archive auth codecs completion config configwidgets \ coreaddons guiaddons i18n iconthemes itemviews \ jobwidgets kio parts service solid sonnet syntaxhighlighting \ textwidgets widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus declarative gui network printsupport \ script widgets xml xmlpatterns \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 .include diff --git a/devel/kf5-kunitconversion/Makefile b/devel/kf5-kunitconversion/Makefile index 3b3181a0c27b7..5cb03110e283b 100644 --- a/devel/kf5-kunitconversion/Makefile +++ b/devel/kf5-kunitconversion/Makefile @@ -7,8 +7,8 @@ COMMENT= KF5 library for unit conversion USES= cmake compiler:c++11-lib gettext kde:5 pkgconfig qt:5 tar:xz USE_KDE= i18n \ - ecm_build + ecm:build USE_QT= core network xml \ - buildtools_build qmake_build + buildtools:build qmake:build .include diff --git a/devel/kf5-solid/Makefile b/devel/kf5-solid/Makefile index 91ff34a46e59d..d7e0d5793af3a 100644 --- a/devel/kf5-solid/Makefile +++ b/devel/kf5-solid/Makefile @@ -8,10 +8,10 @@ COMMENT= KF5 hardware integration and detection RUN_DEPENDS= bsdisks:sysutils/bsdisks USES= bison cmake compiler:c++11-lib kde:5 qt:5 tar:xz -USE_KDE= ecm_build +USE_KDE= ecm:build USE_QT= concurrent core dbus declarative gui linguisttools \ network widgets xml \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build OPTIONS_DEFINE= IMOBILE diff --git a/devel/kf5-threadweaver/Makefile b/devel/kf5-threadweaver/Makefile index 3b57a334c9661..7c37e82175ef3 100644 --- a/devel/kf5-threadweaver/Makefile +++ b/devel/kf5-threadweaver/Makefile @@ -6,8 +6,8 @@ MAINTAINER= kde@FreeBSD.org COMMENT= KF5 helper for multithreaded programming USES= cmake compiler:c++11-lib kde:5 qt:5 tar:xz -USE_KDE= ecm_build +USE_KDE= ecm:build USE_QT= core widgets \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build .include diff --git a/devel/kio-extras/Makefile b/devel/kio-extras/Makefile index 0e6ea23319a28..a66e23a5ef245 100644 --- a/devel/kio-extras/Makefile +++ b/devel/kio-extras/Makefile @@ -18,10 +18,10 @@ USE_KDE= activities archive auth bookmarks codecs completion config \ jobwidgets js kdelibs4support khtml kio notifications parts \ pty service solid sonnet syntaxhighlighting textwidgets unitconversion \ widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus declarative gui location network phonon4 printsupport \ sql svg testlib webchannel widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 xcursor SHEBANG_FILES= info/kde-info2html diff --git a/devel/kirigami-gallery/Makefile b/devel/kirigami-gallery/Makefile index 85ae47c7da971..09b13813ac642 100644 --- a/devel/kirigami-gallery/Makefile +++ b/devel/kirigami-gallery/Makefile @@ -11,9 +11,9 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.LGPL-2 USES= cmake compiler:c++11-lang kde:5 qt:5 tar:xz USE_KDE= itemmodels kirigami2 package \ - ecm_build + ecm:build USE_QT= core declarative gui network quickcontrols2 svg widgets \ - buildtools_build qmake_build + buildtools:build qmake:build OPTIONS_DEFINE= DOCS diff --git a/devel/kpublictransport/Makefile b/devel/kpublictransport/Makefile index ce085e7cecd9d..2f52e01194d96 100644 --- a/devel/kpublictransport/Makefile +++ b/devel/kpublictransport/Makefile @@ -10,7 +10,7 @@ LIB_DEPENDS= libprotobuf.so:devel/protobuf USES= cmake compiler:c++11-lang kde:5 qt:5 tar:xz USE_KDE= ecm USE_QT= core declarative gui network \ - buildtools_build qmake_build + buildtools:build qmake:build OPTIONS_DEFINE= DOCS diff --git a/devel/libdbusmenu-qt/Makefile b/devel/libdbusmenu-qt/Makefile index b912a4e8ad789..b6beee9cac9e7 100644 --- a/devel/libdbusmenu-qt/Makefile +++ b/devel/libdbusmenu-qt/Makefile @@ -20,7 +20,7 @@ qt6_PKGNAMESUFFIX= 6 USES= compiler:c++11-lib cmake qt:${FLAVOR:S/qt//} USE_LDCONFIG= yes _USE_QT5= core dbus gui widgets \ - buildtools_build qmake_build + buildtools:build qmake:build _USE_QT6= base USE_QT= ${_USE_QT${FLAVOR:S/qt//}} CMAKE_ON= USE_QT${FLAVOR:S/qt//} diff --git a/devel/liblxqt/Makefile b/devel/liblxqt/Makefile index 2f90accf1d2a1..310d6792932ec 100644 --- a/devel/liblxqt/Makefile +++ b/devel/liblxqt/Makefile @@ -14,7 +14,7 @@ LIB_DEPENDS= libpolkit-qt5-core-1.so:sysutils/polkit-qt USES= cmake compiler:c++14-lang gettext gnome kde:5 lxqt \ pkgconfig qt:5 tar:xz xorg USE_GNOME= glib20 -USE_QT= buildtools_build qmake_build dbus core gui linguisttools \ +USE_QT= buildtools:build qmake:build dbus core gui linguisttools \ svg widgets x11extras xml USE_KDE= windowsystem USE_LXQT= buildtools qtxdg diff --git a/devel/libqtxdg/Makefile b/devel/libqtxdg/Makefile index ec95876db30b7..93cca683f51bc 100644 --- a/devel/libqtxdg/Makefile +++ b/devel/libqtxdg/Makefile @@ -12,7 +12,7 @@ LICENSE= LGPL21+ USES= cmake compiler:c++14-lang gnome lxqt pkgconfig qt:5 tar:xz USE_LDCONFIG= yes USE_GNOME= glib20 -USE_QT= buildtools_build qmake_build core dbus gui svg widgets \ +USE_QT= buildtools:build qmake:build core dbus gui svg widgets \ xml USE_LXQT= buildtools diff --git a/devel/liteide/Makefile b/devel/liteide/Makefile index 5cb09b5ba0f3f..cd9c6f5e57342 100644 --- a/devel/liteide/Makefile +++ b/devel/liteide/Makefile @@ -34,7 +34,7 @@ GH_TUPLE= visualfc:gocode:901895f2a886:visualfc_gocode \ USE_GL= gl USE_LDCONFIG= ${PREFIX}/lib/${PORTNAME} -USE_QT= buildtools_build core gui network printsupport widgets xml +USE_QT= buildtools:build core gui network printsupport widgets xml SUB_FILES= liteide diff --git a/devel/lokalize/Makefile b/devel/lokalize/Makefile index a630de560d929..3b7e5d4fb06d1 100644 --- a/devel/lokalize/Makefile +++ b/devel/lokalize/Makefile @@ -13,9 +13,9 @@ USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons doctools i18n itemviews \ jobwidgets kio kross notifications parts service solid sonnet \ textwidgets widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus gui network script sql widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 OPTIONS_DEFINE= DOCS diff --git a/devel/lxqt-build-tools/Makefile b/devel/lxqt-build-tools/Makefile index 695292ed4d198..d1f1352b725aa 100644 --- a/devel/lxqt-build-tools/Makefile +++ b/devel/lxqt-build-tools/Makefile @@ -11,7 +11,7 @@ LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/BSD-3-Clause USES= cmake lxqt pkgconfig qt:5 tar:xz gnome -USE_QT= qmake_build buildtools_build core +USE_QT= qmake:build buildtools:build core USE_GNOME= glib20 .include diff --git a/devel/nextpnr/Makefile b/devel/nextpnr/Makefile index 02faee2e8f9fd..d3e46f4c6a80c 100644 --- a/devel/nextpnr/Makefile +++ b/devel/nextpnr/Makefile @@ -22,7 +22,7 @@ LIB_DEPENDS= libboost_thread.so:devel/boost-libs \ ${PY_BOOST} USES= compiler:c++11-lang cmake qt:5 eigen:3 python:3.5+ gl -USE_QT= buildtools_build core gui opengl qmake_build widgets +USE_QT= buildtools:build core gui opengl qmake:build widgets USE_GL= gl glu USE_GITHUB= yes GH_ACCOUNT= YosysHQ diff --git a/devel/okteta/Makefile b/devel/okteta/Makefile index 72df270f1998c..a0bb1bc17bbd4 100644 --- a/devel/okteta/Makefile +++ b/devel/okteta/Makefile @@ -18,7 +18,7 @@ USE_KDE= attica auth bookmarks codecs completion crash \ widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus declarative designer gui network printsupport \ script scripttools widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 USE_LDCONFIG= yes diff --git a/devel/plasma5-khotkeys/Makefile b/devel/plasma5-khotkeys/Makefile index 6b7970a605dbc..a8bb94d5f420e 100644 --- a/devel/plasma5-khotkeys/Makefile +++ b/devel/plasma5-khotkeys/Makefile @@ -14,10 +14,10 @@ USE_KDE= auth bookmarks codecs completion config configwidgets \ kdelibs4support kio notifications parts plasma-framework \ plasma-workspace service solid sonnet textwidgets \ unitconversion widgetsaddons windowsystem xmlgui \ - doctools_build ecm_build + doctools:build ecm:build USE_QT= concurrent core dbus gui network printsupport widgets \ x11extras xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 xtst .include diff --git a/devel/plasma5-kwrited/Makefile b/devel/plasma5-kwrited/Makefile index 59878f421bced..ebb2d30f3810c 100644 --- a/devel/plasma5-kwrited/Makefile +++ b/devel/plasma5-kwrited/Makefile @@ -9,6 +9,6 @@ WWW= https://www.kde.org/plasma-desktop USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= coreaddons dbusaddons ecm i18n notifications pty USE_QT= core dbus gui widgets \ - buildtools_build qmake_build + buildtools:build qmake:build .include diff --git a/devel/plasma5-plasma-sdk/Makefile b/devel/plasma5-plasma-sdk/Makefile index d205f6ddc8b94..138e6889cfb5e 100644 --- a/devel/plasma5-plasma-sdk/Makefile +++ b/devel/plasma5-plasma-sdk/Makefile @@ -13,10 +13,10 @@ USE_KDE= archive attica auth codecs completion config configwidgets \ jobwidgets kdeclarative kio kirigami2 newstuff package parts \ plasma-framework service solid sonnet syntaxhighlighting \ texteditor textwidgets widgetsaddons windowsystem xmlgui \ - doctools_build + doctools:build USE_QT= concurrent core dbus declarative gui network webkit widgets \ x11extras xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 .include diff --git a/devel/poxml/Makefile b/devel/poxml/Makefile index 528e34a4ccf99..3ae62120ac321 100644 --- a/devel/poxml/Makefile +++ b/devel/poxml/Makefile @@ -9,7 +9,7 @@ USES= cmake compiler:c++11-lang gettext-tools:build,run \ kde:5 qt:5 tar:xz USE_KDE= doctools ecm USE_QT= core xml \ - buildtools_build qmake_build + buildtools:build qmake:build OPTIONS_DEFINE= DOCS diff --git a/devel/py-pyface/Makefile b/devel/py-pyface/Makefile index 4fce3832995d3..3a5a69dd89fa8 100644 --- a/devel/py-pyface/Makefile +++ b/devel/py-pyface/Makefile @@ -37,7 +37,7 @@ OPTIONS_DEFAULT= QT5 QT5_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pygments>0:textproc/py-pygments@${PY_FLAVOR} QT5_USES= pyqt:5 -QT5_USE= PYQT=pyqt5_run,pyqt5_test +QT5_USE= PYQT=pyqt5:run,pyqt5:test # These tests were extracted from etstool.py and adapted to the ports test framework # Note: The occurences of "qt4" aren't typos diff --git a/devel/py-qt5-pyqt/Makefile b/devel/py-qt5-pyqt/Makefile index a5ebc9cfe3b29..2b1c2314f9562 100644 --- a/devel/py-qt5-pyqt/Makefile +++ b/devel/py-qt5-pyqt/Makefile @@ -24,7 +24,7 @@ USE_QT= connectivity core dbus declarative designer gui help imageformats locat multimedia network opengl printsupport quick3d remoteobjects \ sensors serialport speech sql svg testlib webchannel webkit websockets \ widgets x11extras xml xmlpatterns \ - buildtools_build qmake_build + buildtools:build qmake:build PORTSCOUT?= limit:^${_QT_VERSION:R} diff --git a/devel/py-qt5-qscintilla2/Makefile b/devel/py-qt5-qscintilla2/Makefile index 4a617ea9fb562..395f7b77a7845 100644 --- a/devel/py-qt5-qscintilla2/Makefile +++ b/devel/py-qt5-qscintilla2/Makefile @@ -17,9 +17,9 @@ DESTDIRNAME= INSTALL_ROOT USES= python:3.5-3.9 pyqt:5 gl qt:5 USE_GL= gl -USE_PYQT= pyqt5 sip_build qtbuilder +USE_PYQT= pyqt5 sip:build qtbuilder USE_PYTHON= concurrent flavors py3kplist -USE_QT= core gui printsupport widgets buildtools_build qmake_build +USE_QT= core gui printsupport widgets buildtools:build qmake:build OPTIONS_DEFINE= DEBUG DEBUG_CONFIGURE_ON= --debug --trace diff --git a/devel/pyotherside-qt5/Makefile b/devel/pyotherside-qt5/Makefile index ea13902c52a03..7aa1bf8f8c0e0 100644 --- a/devel/pyotherside-qt5/Makefile +++ b/devel/pyotherside-qt5/Makefile @@ -13,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= compiler:c++11-lang gettext-runtime gl python:3.4+ qmake qt:5 USE_QT= core declarative declarative-test gui network quickcontrols \ - svg testlib widgets buildtools_build + svg testlib widgets buildtools:build USE_GL= gl USE_GITHUB= yes diff --git a/devel/pyside2-tools/Makefile b/devel/pyside2-tools/Makefile index f9a1b95e67132..47aa7c2fef17b 100644 --- a/devel/pyside2-tools/Makefile +++ b/devel/pyside2-tools/Makefile @@ -23,7 +23,7 @@ USE_GL= gl USE_PYTHON= flavors USE_QT= 3d buildtools charts core datavis3d declarative \ designer gui help location multimedia network opengl \ - printsupport qmake_build script scripttools scxml sensors \ + printsupport qmake:build script scripttools scxml sensors \ speech sql svg testlib uitools webchannel \ websockets widgets x11extras xml xmlpatterns diff --git a/devel/pyside2/Makefile b/devel/pyside2/Makefile index 2a8918db602ae..f7e9c68ba1496 100644 --- a/devel/pyside2/Makefile +++ b/devel/pyside2/Makefile @@ -20,9 +20,9 @@ USES= cmake gl python:3.5+ qt:5 tar:xz USE_GL= gl USE_LDCONFIG= yes USE_PYTHON= flavors -USE_QT= 3d buildtools_build charts concurrent core datavis3d declarative \ +USE_QT= 3d buildtools:build charts concurrent core datavis3d declarative \ designer gamepad gui help location multimedia network opengl \ - printsupport qmake_build quickcontrols2 remoteobjects serialport \ + printsupport qmake:build quickcontrols2 remoteobjects serialport \ script scripttools scxml sensors speech sql svg testlib uitools \ webchannel websockets widgets x11extras xml xmlpatterns diff --git a/devel/qca/Makefile b/devel/qca/Makefile index 953e6237d01d5..0028444ef46d2 100644 --- a/devel/qca/Makefile +++ b/devel/qca/Makefile @@ -28,7 +28,7 @@ USE_LDCONFIG= yes CMAKE_ARGS+= -DQCA_SUFFIX=${FLAVOR} \ -D${FLAVOR:tu}:BOOL=TRUE -_USE_QT5= core buildtools_build qmake_build +_USE_QT5= core buildtools:build qmake:build _USE_QT6= 5compat base USE_QT= ${_USE_QT${FLAVOR:S/qt//}} diff --git a/devel/qconf/Makefile b/devel/qconf/Makefile index 12fa76373a0db..925e0e60c71b8 100644 --- a/devel/qconf/Makefile +++ b/devel/qconf/Makefile @@ -12,7 +12,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING USES= qmake:no_env qt:5 tar:bzip2 USE_QT= core gui xml \ - buildtools_build qmake_build + buildtools:build qmake:build HAS_CONFIGURE= yes MAKE_ARGS= INSTALL_ROOT="${STAGEDIR}" diff --git a/devel/qcoro/Makefile b/devel/qcoro/Makefile index 15326b8f71eed..af1eaa781c8fa 100644 --- a/devel/qcoro/Makefile +++ b/devel/qcoro/Makefile @@ -12,7 +12,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSES/MIT.txt USES= cmake compiler:c++17-lang pkgconfig qt:5 USE_QT= concurrent core dbus network testlib websockets \ - buildtools_build qmake_build + buildtools:build qmake:build USE_GITHUB= yes GH_ACCOUNT= danvratil diff --git a/devel/qgit/Makefile b/devel/qgit/Makefile index 1a13dded68ca4..33e42e33ba477 100644 --- a/devel/qgit/Makefile +++ b/devel/qgit/Makefile @@ -11,7 +11,7 @@ LICENSE= GPLv2 USES= cmake compiler:c++11-lang cpe qt:5 USE_QT= core gui widgets \ - buildtools_build qmake_build + buildtools:build qmake:build USE_GITHUB= yes GH_ACCOUNT= tibirna diff --git a/devel/qjson/Makefile b/devel/qjson/Makefile index cd41fee508789..19c4c328f8062 100644 --- a/devel/qjson/Makefile +++ b/devel/qjson/Makefile @@ -15,7 +15,7 @@ USES= cmake compiler:c++11-lang pathfix qt:5 USE_GITHUB= yes GH_ACCOUNT= flavio USE_LDCONFIG= yes -USE_QT= core buildtools_build qmake_build +USE_QT= core buildtools:build qmake:build CMAKE_OFF= QT4_BUILD QT_SUFFIX= -qt5 diff --git a/devel/qschematic/Makefile b/devel/qschematic/Makefile index 84191d543c6a0..a0d6166aaae8d 100644 --- a/devel/qschematic/Makefile +++ b/devel/qschematic/Makefile @@ -12,7 +12,7 @@ LICENSE_FILE= ${WRKSRC}/license.txt LIB_DEPENDS= libgpds.so:devel/gpds USES= cmake compiler:c++17-lang qt:5 -USE_QT= buildtools_build core gui qmake_build widgets +USE_QT= buildtools:build core gui qmake:build widgets USE_GITHUB= yes GH_ACCOUNT= simulton diff --git a/devel/qscintilla2-designerplugin-qt5/Makefile b/devel/qscintilla2-designerplugin-qt5/Makefile index 8ac07aa73f773..6ed93fbe81f4b 100644 --- a/devel/qscintilla2-designerplugin-qt5/Makefile +++ b/devel/qscintilla2-designerplugin-qt5/Makefile @@ -15,7 +15,7 @@ DISTINFO_FILE= ${.CURDIR:H}/qscintilla2-qt5/distinfo USES= compiler:c++11-lang qmake pyqt:5 qt:5 gl USE_GL= gl USE_QT= core designer printsupport gui widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build WRKSRC= ${WRKDIR}/${DISTNAME}/designer diff --git a/devel/qscintilla2-qt5/Makefile b/devel/qscintilla2-qt5/Makefile index a461a459df75a..94142df7116c0 100644 --- a/devel/qscintilla2-qt5/Makefile +++ b/devel/qscintilla2-qt5/Makefile @@ -12,7 +12,7 @@ WWW= http://www.riverbankcomputing.co.uk/software/qscintilla/ USES= compiler:c++11-lang gl qmake pyqt:5 qt:5 USE_GL= gl USE_PYQT= # -USE_QT= buildtools_build core gui printsupport widgets +USE_QT= buildtools:build core gui printsupport widgets USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} BUILD_WRKSRC= ${WRKSRC}/src diff --git a/devel/qt5-assistant/Makefile b/devel/qt5-assistant/Makefile index fe9a167bb1871..5f3ec75199b05 100644 --- a/devel/qt5-assistant/Makefile +++ b/devel/qt5-assistant/Makefile @@ -8,7 +8,7 @@ COMMENT= Qt 5 documentation browser USES= compiler:c++11-lang qmake qt-dist:5,tools USE_QT= core gui help network printsupport sql widgets \ - buildtools_build sql-sqlite3_run + buildtools:build sql-sqlite3:run QT_BINARIES= yes DESKTOP_ENTRIES="Qt 5 Assistant" "" \ diff --git a/devel/qt5-concurrent/Makefile b/devel/qt5-concurrent/Makefile index 6f3a42df07367..9532f9a11665c 100644 --- a/devel/qt5-concurrent/Makefile +++ b/devel/qt5-concurrent/Makefile @@ -8,7 +8,7 @@ COMMENT= Qt multi-threading module USES= compiler:c++11-lang perl5 qmake:no_env qt-dist:5,base USE_PERL5= extract -USE_QT= core qmake_build buildtools_build +USE_QT= core qmake:build buildtools:build HAS_CONFIGURE= yes CONFIGURE_ARGS= -no-gui -no-xcb diff --git a/devel/qt5-core/Makefile b/devel/qt5-core/Makefile index 72f79a7bde55c..8c6afd62223cd 100644 --- a/devel/qt5-core/Makefile +++ b/devel/qt5-core/Makefile @@ -15,7 +15,7 @@ LIB_DEPENDS= libdouble-conversion.so:devel/double-conversion \ 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 +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 diff --git a/devel/qt5-dbus/Makefile b/devel/qt5-dbus/Makefile index 48334177fa16f..394cca577a216 100644 --- a/devel/qt5-dbus/Makefile +++ b/devel/qt5-dbus/Makefile @@ -10,7 +10,7 @@ LIB_DEPENDS= libdbus-1.so:devel/dbus USES= compiler:c++11-lang perl5 qmake:no_env qt-dist:5,base USE_PERL5= extract -USE_QT= core qmake_build buildtools_build +USE_QT= core qmake:build buildtools:build HAS_CONFIGURE= yes CONFIGURE_ARGS= -no-gui -no-xcb diff --git a/devel/qt5-designer/Makefile b/devel/qt5-designer/Makefile index 08ee9e3742cf4..e934d46cfb376 100644 --- a/devel/qt5-designer/Makefile +++ b/devel/qt5-designer/Makefile @@ -7,8 +7,8 @@ MAINTAINER= kde@FreeBSD.org COMMENT= Qt 5 graphical user interface designer USES= compiler:c++11-lang qmake qt-dist:5,tools -USE_QT= assistant_run core declarative gui network printsupport uiplugin \ - widgets xml buildtools_build +USE_QT= assistant:run core declarative gui network printsupport uiplugin \ + widgets xml buildtools:build DESKTOP_ENTRIES="Qt 5 Designer" "" \ "${PREFIX}/share/pixmaps/designer-qt5.png" \ diff --git a/devel/qt5-help/Makefile b/devel/qt5-help/Makefile index b1c5f0c525ca6..5874e078890b1 100644 --- a/devel/qt5-help/Makefile +++ b/devel/qt5-help/Makefile @@ -8,7 +8,7 @@ COMMENT= Qt online help integration module USES= compiler:c++11-lang qmake qt-dist:5,tools USE_QT= core gui network sql widgets \ - buildtools_build sql-sqlite3_run + buildtools:build sql-sqlite3:run QT_BINARIES= yes diff --git a/devel/qt5-linguist/Makefile b/devel/qt5-linguist/Makefile index 6a8fc0357cf09..e9905b63f786b 100644 --- a/devel/qt5-linguist/Makefile +++ b/devel/qt5-linguist/Makefile @@ -8,8 +8,8 @@ COMMENT= Qt 5 translation tool USES= compiler:c++11-lang qmake qt-dist:5,tools USE_QT= core gui printsupport widgets xml \ - assistant_run linguisttools_run \ - buildtools_build designer_build uitools_build + assistant:run linguisttools:run \ + buildtools:build designer:build uitools:build DESKTOP_ENTRIES="Qt 5 Linguist" "" \ "${PREFIX}/share/pixmaps/linguist-qt5.png" \ diff --git a/devel/qt5-linguisttools/Makefile b/devel/qt5-linguisttools/Makefile index 6d28653063819..fb1ba802315c8 100644 --- a/devel/qt5-linguisttools/Makefile +++ b/devel/qt5-linguisttools/Makefile @@ -7,7 +7,7 @@ MAINTAINER= kde@FreeBSD.org COMMENT= Qt localization tools USES= compiler:c++11-lang qmake qt-dist:5,tools -USE_QT= core xml buildtools_build declarative_build +USE_QT= core xml buildtools:build declarative:build BUILD_WRKSRC= ${WRKSRC}/src/linguist INSTALL_WRKSRC= ${WRKSRC}/src/linguist diff --git a/devel/qt5-location/Makefile b/devel/qt5-location/Makefile index 1353a86193388..bc214ee8080f3 100644 --- a/devel/qt5-location/Makefile +++ b/devel/qt5-location/Makefile @@ -8,6 +8,6 @@ COMMENT= Qt location module USES= compiler:c++11-lang qmake:norecursive qt-dist:5,location USE_QT= concurrent core dbus declarative gui network serialport \ - buildtools_build + buildtools:build .include diff --git a/devel/qt5-qdbus/Makefile b/devel/qt5-qdbus/Makefile index 7453bb6f64ee2..9df08d2a2bb8e 100644 --- a/devel/qt5-qdbus/Makefile +++ b/devel/qt5-qdbus/Makefile @@ -7,7 +7,7 @@ MAINTAINER= kde@FreeBSD.org COMMENT= Qt command-line interface to D-Bus USES= compiler:c++11-lang qmake qt-dist:5,tools -USE_QT= core dbus xml buildtools_build +USE_QT= core dbus xml buildtools:build BUILD_WRKSRC= ${WRKSRC}/src/${PORTNAME}/${PORTNAME} INSTALL_WRKSRC= ${BUILD_WRKSRC} diff --git a/devel/qt5-qdbusviewer/Makefile b/devel/qt5-qdbusviewer/Makefile index c2f155acb4dd8..1c9ab1c241735 100644 --- a/devel/qt5-qdbusviewer/Makefile +++ b/devel/qt5-qdbusviewer/Makefile @@ -7,7 +7,7 @@ MAINTAINER= kde@FreeBSD.org COMMENT= Qt 5 graphical interface to D-Bus USES= compiler:c++11-lang qmake qt-dist:5,tools -USE_QT= core dbus gui widgets xml buildtools_build +USE_QT= core dbus gui widgets xml buildtools:build DESKTOP_ENTRIES="Qt 5 D-Bus Viewer" "" \ "${PREFIX}/share/pixmaps/qdbusviewer-qt5.png" \ diff --git a/devel/qt5-qdoc/Makefile b/devel/qt5-qdoc/Makefile index dd9057daeb82d..5209a254a63b6 100644 --- a/devel/qt5-qdoc/Makefile +++ b/devel/qt5-qdoc/Makefile @@ -11,7 +11,7 @@ BUILD_DEPENDS= llvm${LLVM_DEFAULT}>=0:devel/llvm${LLVM_DEFAULT} RUN_DEPENDS= llvm${LLVM_DEFAULT}>=0:devel/llvm${LLVM_DEFAULT} USES= compiler:c++11-lang qmake qt-dist:5,tools -USE_QT= core declarative buildtools_build qdoc-data_run +USE_QT= core declarative buildtools:build qdoc-data:run BUILD_WRKSRC= ${WRKSRC}/src/${PORTNAME} INSTALL_WRKSRC= ${BUILD_WRKSRC} diff --git a/devel/qt5-remoteobjects/Makefile b/devel/qt5-remoteobjects/Makefile index e45379e18a392..cb6d056625e21 100644 --- a/devel/qt5-remoteobjects/Makefile +++ b/devel/qt5-remoteobjects/Makefile @@ -9,7 +9,7 @@ COMMENT= Qt5 Remote Objects module USES= compiler:c++11-lang gl qmake qt-dist:5 USE_GL= gl USE_QT= core declarative network \ - buildtools_build + buildtools:build QT_BINARIES= yes diff --git a/devel/qt5-script/Makefile b/devel/qt5-script/Makefile index 1959ca52be7fb..dd8c47f5e32e7 100644 --- a/devel/qt5-script/Makefile +++ b/devel/qt5-script/Makefile @@ -8,7 +8,7 @@ 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 +USE_QT= core buildtools:build # Keep make(1) from descending into src/script/obj/ (qmake:outsource # doesn't work). MAKE_ENV= MAKEOBJDIR=. diff --git a/devel/qt5-scripttools/Makefile b/devel/qt5-scripttools/Makefile index 6ca53d33c143a..9a0bbbc07d8ff 100644 --- a/devel/qt5-scripttools/Makefile +++ b/devel/qt5-scripttools/Makefile @@ -7,7 +7,7 @@ MAINTAINER= kde@FreeBSD.org COMMENT= Qt Script additional components USES= compiler:c++11-lang qmake qt-dist:5,script -USE_QT= core gui script widgets buildtools_build +USE_QT= core gui script widgets buildtools:build BUILD_WRKSRC= ${WRKSRC}/src/${PORTNAME} INSTALL_WRKSRC= ${WRKSRC}/src/${PORTNAME} diff --git a/devel/qt5-scxml/Makefile b/devel/qt5-scxml/Makefile index 9f298f8b5484b..a14f407ea8239 100644 --- a/devel/qt5-scxml/Makefile +++ b/devel/qt5-scxml/Makefile @@ -7,7 +7,7 @@ MAINTAINER= kde@FreeBSD.org COMMENT= Qt5 SCXML module USES= compiler:c++11-lang qmake qt-dist:5,scxml -USE_QT= core declarative network buildtools_build +USE_QT= core declarative network buildtools:build QT_BINARIES= yes diff --git a/devel/qt5-testlib/Makefile b/devel/qt5-testlib/Makefile index e41d1fb4eb9f2..e883878f21807 100644 --- a/devel/qt5-testlib/Makefile +++ b/devel/qt5-testlib/Makefile @@ -8,7 +8,7 @@ COMMENT= Qt unit testing module USES= compiler:c++11-lang perl5 qmake:no_env qt-dist:5,base USE_PERL5= extract -USE_QT= core qmake_build buildtools_build +USE_QT= core qmake:build buildtools:build HAS_CONFIGURE= yes CONFIGURE_ARGS= -no-gui -no-xcb diff --git a/devel/qt5-uitools/Makefile b/devel/qt5-uitools/Makefile index f461ff941f075..e1f89eae815d3 100644 --- a/devel/qt5-uitools/Makefile +++ b/devel/qt5-uitools/Makefile @@ -7,7 +7,7 @@ MAINTAINER= kde@FreeBSD.org COMMENT= Qt Designer UI forms support module USES= compiler:c++11-lang qmake qt-dist:5,tools -USE_QT= core gui uiplugin widgets buildtools_build +USE_QT= core gui uiplugin widgets buildtools:build BUILD_WRKSRC= ${WRKSRC}/src/designer/src/${PORTNAME} INSTALL_WRKSRC= ${WRKSRC}/src/designer/src/${PORTNAME} diff --git a/devel/qt5/Makefile.sqldrivers b/devel/qt5/Makefile.sqldrivers index b5b2ec9a54293..3d602de979852 100644 --- a/devel/qt5/Makefile.sqldrivers +++ b/devel/qt5/Makefile.sqldrivers @@ -8,7 +8,7 @@ COMMENT?= Qt ${DB_DESC} database plugin USES+= compiler:c++11-lang perl5 qmake:no_env qt-dist:5,base USE_PERL5+= extract -USE_QT+= core sql qmake_build buildtools_build +USE_QT+= core sql qmake:build buildtools:build HAS_CONFIGURE= yes CONFIGURE_ARGS+=-no-gui -no-xcb diff --git a/devel/qtcreator/Makefile b/devel/qtcreator/Makefile index d9ca397090101..f3926df319fce 100644 --- a/devel/qtcreator/Makefile +++ b/devel/qtcreator/Makefile @@ -80,10 +80,10 @@ DOCS_DESC= Install the Qt5 api documentation EXAMPLES_DESC= Install the Qt5 example projects QTWEBENGINE_DESC= Add dependency on qt5-webengine -DOCS_USE= QT=doc_run +DOCS_USE= QT=doc:run DOCS_CMAKE_BOOL= WITH_DOCS -EXAMPLES_USE= QT=examples_run +EXAMPLES_USE= QT=examples:run QTWEBENGINE_USE= qt=webengine QTWEBENGINE_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_Qt5WebEngine diff --git a/devel/redasm/Makefile b/devel/redasm/Makefile index f9a93b6fb68be..a6b7c0b4ba9ba 100644 --- a/devel/redasm/Makefile +++ b/devel/redasm/Makefile @@ -11,7 +11,7 @@ WWW= https://redasm.io/ LICENSE= GPLv3 USES= cmake compiler:c++11-lang qt:5 -USE_QT= buildtools_build qmake_build core gui widgets +USE_QT= buildtools:build qmake:build core gui widgets USE_GITHUB= yes GH_ACCOUNT= REDasmOrg diff --git a/devel/sasm/Makefile b/devel/sasm/Makefile index cb1ffc0ba2366..4fb5c17ed957a 100644 --- a/devel/sasm/Makefile +++ b/devel/sasm/Makefile @@ -14,7 +14,7 @@ USES= compiler:c++11-lang gl qmake qt:5 USE_GITHUB= yes GH_ACCOUNT= Dman95 USE_GL= gl -USE_QT= core gui network widgets buildtools_build +USE_QT= core gui network widgets buildtools:build CONFLICTS_INSTALL= fasm fasm-fpga diff --git a/devel/shiboken2/Makefile b/devel/shiboken2/Makefile index 2e5c3b7cbe6a5..caf55e5f4309d 100644 --- a/devel/shiboken2/Makefile +++ b/devel/shiboken2/Makefile @@ -24,7 +24,7 @@ USES= cmake compiler:c++11-lang gnome python:3.5-3.9 qt:5 shebangfix tar:xz USE_GNOME= libxml2 USE_LDCONFIG= yes USE_PYTHON= flavors -USE_QT= buildtools_build core gui network qmake_build testlib \ +USE_QT= buildtools:build core gui network qmake:build testlib \ xml xmlpatterns SHEBANG_FILES= shiboken_tool.py diff --git a/devel/umbrello/Makefile b/devel/umbrello/Makefile index 676c1b2fb9c8d..ae69c1e8d3d63 100644 --- a/devel/umbrello/Makefile +++ b/devel/umbrello/Makefile @@ -15,9 +15,9 @@ USE_KDE= archive auth bookmarks codecs completion config configwidgets \ jobwidgets kdelibs4support kio notifications parts service \ solid sonnet syntaxhighlighting texteditor textwidgets unitconversion \ widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus gui network printsupport svg webkit widgets xml \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build USE_XORG= x11 OPTIONS_DEFINE= DOCS diff --git a/devel/vitables/Makefile b/devel/vitables/Makefile index 51856e6ac8ae8..68bbc686fa8fd 100644 --- a/devel/vitables/Makefile +++ b/devel/vitables/Makefile @@ -18,7 +18,7 @@ RUN_DEPENDS= ${PYNUMPY} \ USES= dos2unix python pyqt:5 USE_PYTHON= distutils cython noflavors autoplist -USE_PYQT= pyqt5_run sip_run +USE_PYQT= pyqt5:run sip:run USE_GITHUB= yes GH_ACCOUNT= uvemas diff --git a/devel/xelfviewer/Makefile b/devel/xelfviewer/Makefile index ec2e06285b01e..e2ee0b7cfb92c 100644 --- a/devel/xelfviewer/Makefile +++ b/devel/xelfviewer/Makefile @@ -11,7 +11,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= pkgconfig qt:5 GNU_CONFIGURE= yes -USE_QT= buildtools_build linguisttools_build qmake_build \ +USE_QT= buildtools:build linguisttools:build qmake:build \ concurrent core gui opengl printsupport sql widgets USE_GITHUB= yes GH_ACCOUNT= horsicq diff --git a/devel/xopcodecalc/Makefile b/devel/xopcodecalc/Makefile index 5974b79098a84..e1c5b9c0b7204 100644 --- a/devel/xopcodecalc/Makefile +++ b/devel/xopcodecalc/Makefile @@ -11,7 +11,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= pkgconfig qt:5 GNU_CONFIGURE= yes -USE_QT= buildtools_build qmake_build core gui widgets +USE_QT= buildtools:build qmake:build core gui widgets USE_GITHUB= yes GH_ACCOUNT= horsicq diff --git a/devel/xpeviewer/Makefile b/devel/xpeviewer/Makefile index a0ba5e66f3558..09a6606a60bd8 100644 --- a/devel/xpeviewer/Makefile +++ b/devel/xpeviewer/Makefile @@ -11,7 +11,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= desktop-file-utils pkgconfig qt:5 GNU_CONFIGURE= yes -USE_QT= buildtools_build linguisttools_build qmake_build \ +USE_QT= buildtools:build linguisttools:build qmake:build \ concurrent core gui opengl printsupport widgets USE_GITHUB= yes GH_ACCOUNT= horsicq diff --git a/devel/zeal/Makefile b/devel/zeal/Makefile index 545a9e2d615c9..9042583c40d31 100644 --- a/devel/zeal/Makefile +++ b/devel/zeal/Makefile @@ -20,7 +20,7 @@ USE_GL= gl # Dependency added by qt5-gui. USE_GITHUB= yes USE_KDE= ecm USE_QT= concurrent core gui network webkit widgets x11extras \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= ice sm x11 xcb xext GH_ACCOUNT= zealdocs diff --git a/dns/kf5-kdnssd/Makefile b/dns/kf5-kdnssd/Makefile index 88bd9b3ff59b1..185b69cdafd6b 100644 --- a/dns/kf5-kdnssd/Makefile +++ b/dns/kf5-kdnssd/Makefile @@ -6,9 +6,9 @@ MAINTAINER= kde@FreeBSD.org COMMENT= KF5 abstraction to system DNSSD features USES= cmake compiler:c++11-lib kde:5 pkgconfig qt:5 tar:xz -USE_KDE= ecm_build +USE_KDE= ecm:build USE_QT= core linguisttools network \ - buildtools_build qmake_build + buildtools:build qmake:build OPTIONS_DEFAULT=AVAHI OPTIONS_RADIO=ZEROCONF diff --git a/dns/knock/Makefile b/dns/knock/Makefile index c09a38b32b1de..79206b26111f2 100644 --- a/dns/knock/Makefile +++ b/dns/knock/Makefile @@ -18,7 +18,7 @@ RUN_DEPENDS= ${PY_DEPENDS} USES= python pyqt:5 # pyqt:5 isn't used: https://github.com/guelfoweb/knock/issues/108 USE_PYTHON= distutils noflavors autoplist -USE_PYQT= pyqt5_run +USE_PYQT= pyqt5:run USE_GITHUB= yes GH_ACCOUNT= guelfoweb diff --git a/dns/qmdnsengine/Makefile b/dns/qmdnsengine/Makefile index 495c9ff215f23..093a5dc35ad4b 100644 --- a/dns/qmdnsengine/Makefile +++ b/dns/qmdnsengine/Makefile @@ -12,7 +12,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= cmake compiler:c++11-lang qt:5 USE_GITHUB= yes GH_ACCOUNT= nitroshare -USE_QT= core network buildtools_build qmake_build +USE_QT= core network buildtools:build qmake:build USE_LDCONFIG= yes .include diff --git a/editors/calligra/Makefile b/editors/calligra/Makefile index d5127d44305a7..6a093e804e91d 100644 --- a/editors/calligra/Makefile +++ b/editors/calligra/Makefile @@ -52,8 +52,8 @@ USE_KDE= akonadicontacts activities archive auth bookmarks codecs completion \ texteditor textwidgets threadweaver unitconversion wallet \ widgetsaddons windowsystem xmlgui \ calendarcore okular -USE_QT= buildtools_build concurrent core dbus declarative gui network opengl \ - phonon4 printsupport qmake_build \ +USE_QT= buildtools:build concurrent core dbus declarative gui network opengl \ + phonon4 printsupport qmake:build \ script sql svg testlib webkit widgets x11extras xml USE_XORG= ice sm x11 xext USE_LDCONFIG= yes diff --git a/editors/calligraplan/Makefile b/editors/calligraplan/Makefile index 5639490f6156b..8ffebc4f254f1 100644 --- a/editors/calligraplan/Makefile +++ b/editors/calligraplan/Makefile @@ -19,9 +19,9 @@ USE_KDE= activities akonadi archive auth bookmarks codecs completion config \ notifications parts service solid sonnet textwidgets wallet \ widgetsaddons windowsystem xmlgui \ akonadicontacts calendarcore contacts \ - doctools_build + doctools:build USE_QT= concurrent core dbus gui network printsupport widgets x11extras xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= ice sm x11 xext PLIST_SUB+= SHLIB_VER=18.0.0 SHLIB_SHORT=18 diff --git a/editors/cpeditor/Makefile b/editors/cpeditor/Makefile index 58b97668cc50b..a92acbedafd58 100644 --- a/editors/cpeditor/Makefile +++ b/editors/cpeditor/Makefile @@ -11,7 +11,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= cmake:noninja compiler:c++14-lang desktop-file-utils qt:5 USE_QT= core gui network widgets \ - buildtools_build linguisttools_build qmake_build + buildtools:build linguisttools:build qmake:build USE_GITHUB= yes GH_TUPLE= \ cpeditor:QCodeEditor:dbf8b26:cpeditor_QCodeEditor/third_party/QCodeEditor \ diff --git a/editors/encryptpad/Makefile b/editors/encryptpad/Makefile index fa15c01fa1030..cb4093efdb8dc 100644 --- a/editors/encryptpad/Makefile +++ b/editors/encryptpad/Makefile @@ -20,7 +20,7 @@ GH_ACCOUNT= evpo GH_PROJECT= EncryptPad USE_GL= gl -USE_QT= core gui widgets buildtools_build qmake_build +USE_QT= core gui widgets buildtools:build qmake:build BINARY_ALIAS= python=${PYTHON_CMD} \ qmake=${QMAKE} diff --git a/editors/featherpad/Makefile b/editors/featherpad/Makefile index 41014c49ecee5..1d6c2936efc3f 100644 --- a/editors/featherpad/Makefile +++ b/editors/featherpad/Makefile @@ -17,7 +17,7 @@ USE_GITHUB= yes GH_ACCOUNT= tsujan GH_PROJECT= FeatherPad -USE_QT= buildtools_build qmake_build core dbus gui printsupport network \ +USE_QT= buildtools:build qmake:build core dbus gui printsupport network \ svg widgets x11extras linguisttools USE_XORG= x11 sm ice xext USE_GL= gl diff --git a/editors/focuswriter/Makefile b/editors/focuswriter/Makefile index a7447221af1fa..f8bc11d3bb571 100644 --- a/editors/focuswriter/Makefile +++ b/editors/focuswriter/Makefile @@ -17,7 +17,7 @@ LIB_DEPENDS= libhunspell-1.7.so:textproc/hunspell USES= cmake compiler:c++17-lang desktop-file-utils gl iconv pkgconfig \ qt:6 tar:bz2 USE_GL= gl -USE_QT= base multimedia tools_build +USE_QT= base multimedia tools:build PORTDATA= * PORTDOCS= CREDITS ChangeLog README diff --git a/editors/ghostwriter/Makefile b/editors/ghostwriter/Makefile index df2ef897f6887..1cd12f19819eb 100644 --- a/editors/ghostwriter/Makefile +++ b/editors/ghostwriter/Makefile @@ -14,8 +14,8 @@ LIB_DEPENDS= libhunspell-1.7.so:textproc/hunspell USES= compiler:c++11-lang desktop-file-utils pkgconfig qmake qt:5 USE_GITHUB= yes GH_ACCOUNT= wereturtle -USE_QT= core gui svg webchannel webengine widgets buildtools_build \ - linguisttools_build +USE_QT= core gui svg webchannel webengine widgets buildtools:build \ + linguisttools:build # cf. PR 224488 LDFLAGS+= -Wl,--as-needed diff --git a/editors/kate/Makefile b/editors/kate/Makefile index 8e84aed610173..c2d79fe86e499 100644 --- a/editors/kate/Makefile +++ b/editors/kate/Makefile @@ -18,9 +18,9 @@ USE_KDE= activities attica auth bookmarks codecs completion config \ jobwidgets kio newstuff package parts plasma-framework \ service solid sonnet syntaxhighlighting texteditor textwidgets \ threadweaver wallet widgetsaddons windowsystem xmlgui \ - doctools_build ecm_build + doctools:build ecm:build USE_QT= concurrent core dbus gui network script sql widgets xml \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build USE_XORG= x11 OPTIONS_DEFINE= DOCS diff --git a/editors/kile/Makefile b/editors/kile/Makefile index f7fc29b413308..aed448a5f57a0 100644 --- a/editors/kile/Makefile +++ b/editors/kile/Makefile @@ -21,9 +21,9 @@ USE_KDE= auth bookmarks codecs completion config configwidgets \ init itemviews jobwidgets js khtml kio okular parts service \ solid sonnet syntaxhighlighting texteditor textwidgets \ widgetsaddons windowsystem xmlgui \ - doctools_build + doctools:build USE_QT= concurrent core dbus gui network script widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 SHEBANG_FILES= *.pl diff --git a/editors/libreoffice/Makefile b/editors/libreoffice/Makefile index c0bd4edc27200..dc396879a6c50 100644 --- a/editors/libreoffice/Makefile +++ b/editors/libreoffice/Makefile @@ -232,7 +232,7 @@ MARIADB_CONFIGURE_ENABLE= mariadb-sdbc MARIADB_USES= mysql:client QT5_CONFIGURE_ENABLE= qt5 -QT5_USE= qt=buildtools_build,core,gui,network,qmake_build,widgets,x11extras +QT5_USE= qt=buildtools:build,core,gui,network,qmake:build,widgets,x11extras QT5_USES= qt:5 SDK_BUILD_DEPENDS= doxygen:devel/doxygen diff --git a/editors/mp/Makefile b/editors/mp/Makefile index b5b9bd71c4596..03b74063b21a5 100644 --- a/editors/mp/Makefile +++ b/editors/mp/Makefile @@ -67,7 +67,7 @@ NCURSES_CFLAGS= -I${NCURSESBASE}/include QT5_USES= compiler:c++11-lang gl pkgconfig qmake:no_env qt:5 QT5_USE= cxxstd=-std=c++11 \ gl=gl \ - qt=buildtools_build,core,gui,widgets + qt=buildtools:build,core,gui,widgets QT5_CONFIGURE_ENV= CCLINK="${CXX}" QT5_CONFIGURE_ON= --with-qt5 --with-moc="${MOC}" QT5_CONFIGURE_OFF= --without-qt diff --git a/editors/neovim-qt/Makefile b/editors/neovim-qt/Makefile index 8837fbfe4cfeb..a183570a38886 100644 --- a/editors/neovim-qt/Makefile +++ b/editors/neovim-qt/Makefile @@ -17,7 +17,7 @@ RUN_DEPENDS= neovim>=0:editors/neovim USES= cmake compiler:c++11-lang desktop-file-utils qt:5 USE_GITHUB= yes GH_ACCOUNT= equalsraf -USE_QT= core gui network testlib widgets buildtools_build qmake_build svg +USE_QT= core gui network testlib widgets buildtools:build qmake:build svg CMAKE_ON= USE_SYSTEM_MSGPACK CMAKE_OFF= ENABLE_TESTS diff --git a/editors/notepadnext/Makefile b/editors/notepadnext/Makefile index d9cc7ae954494..f41b7ccc70d12 100644 --- a/editors/notepadnext/Makefile +++ b/editors/notepadnext/Makefile @@ -13,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libuchardet.so:textproc/uchardet USES= desktop-file-utils gl qmake qt:5 xorg -USE_QT= core gui network printsupport widgets buildtools_build linguisttools_build +USE_QT= core gui network printsupport widgets buildtools:build linguisttools:build USE_GL= gl USE_XORG= xcb diff --git a/editors/tea/Makefile b/editors/tea/Makefile index fdd3125d45028..e81bd6eff45d4 100644 --- a/editors/tea/Makefile +++ b/editors/tea/Makefile @@ -16,7 +16,7 @@ OPTIONS_GROUP_SPELL= ASPELL HUNSPELL OPTIONS_DEFAULT= ASPELL HUNSPELL SPELL_DESC= Spell checker backend -USE_QT= buildtools_build core declarative gui network widgets printsupport +USE_QT= buildtools:build core declarative gui network widgets printsupport USE_GL= gl USE_LOCALE= en_US.UTF-8 diff --git a/editors/texmaker/Makefile b/editors/texmaker/Makefile index 1adbd46839375..ba3f688af3bb8 100644 --- a/editors/texmaker/Makefile +++ b/editors/texmaker/Makefile @@ -17,7 +17,7 @@ USES= compiler:c++11-lang desktop-file-utils ghostscript:x11,run \ gl pkgconfig qmake qt:5 tar:bzip2 USE_GL= gl USE_QT= concurrent core gui network printsupport script widgets \ - xml buildtools_build + xml buildtools:build USE_TEX= latex dvipsk EXTRACT_AFTER_ARGS= --exclude hunspell diff --git a/editors/texstudio/Makefile b/editors/texstudio/Makefile index cd3e145dace10..a4bcd37a5007b 100644 --- a/editors/texstudio/Makefile +++ b/editors/texstudio/Makefile @@ -20,7 +20,7 @@ USES= compiler:c++11-lang desktop-file-utils dos2unix \ ghostscript:run gl pkgconfig qmake qt:5 xorg USE_QT = core declarative gui network script svg widgets \ xml printsupport concurrent uitools \ - buildtools_build + buildtools:build QTVER_SUFFIX= 5 USE_XORG= x11 diff --git a/editors/texworks/Makefile b/editors/texworks/Makefile index c36e418a2bb9f..73b7d8b251c5e 100644 --- a/editors/texworks/Makefile +++ b/editors/texworks/Makefile @@ -20,7 +20,7 @@ USES= compiler:c++11-lang cmake desktop-file-utils pkgconfig \ qt:5 USE_GITHUB= yes GH_ACCOUNT= TeXworks -USE_QT= buildtools_build designer_build qmake_build \ +USE_QT= buildtools:build designer:build qmake:build \ core concurrent dbus gui linguisttools script \ scripttools uitools widgets xml diff --git a/emulators/aqemu/Makefile b/emulators/aqemu/Makefile index a34084a939a35..44e402063a824 100644 --- a/emulators/aqemu/Makefile +++ b/emulators/aqemu/Makefile @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libvncclient.so:net/libvncserver USES= cmake compiler:c++11-lang qt:5 -USE_QT= buildtools_build qmake_build \ +USE_QT= buildtools:build qmake:build \ core dbus gui network printsupport testlib widgets USE_GITHUB= yes diff --git a/emulators/cemu/Makefile b/emulators/cemu/Makefile index 04010cb4e2983..2821cccc456d4 100644 --- a/emulators/cemu/Makefile +++ b/emulators/cemu/Makefile @@ -15,7 +15,7 @@ LIB_DEPENDS= libpng.so:graphics/png USES= compiler:c++11-lang desktop-file-utils gl libarchive pkgconfig \ qmake qt:5 shared-mime-info USE_GL= gl -USE_QT= buildtools_build core gui network widgets +USE_QT= buildtools:build core gui network widgets USE_GITHUB= yes GH_ACCOUNT= CE-Programming diff --git a/emulators/citra/Makefile b/emulators/citra/Makefile index 4d1f4b0add5f0..a08f4e6d17466 100644 --- a/emulators/citra/Makefile +++ b/emulators/citra/Makefile @@ -83,7 +83,7 @@ SDL_PLIST_FILES=bin/${PORTNAME} \ share/man/man6/${PORTNAME}.6.gz QT5_USES= desktop-file-utils qt:5 shared-mime-info -QT5_USE= QT=qmake_build,buildtools_build,linguisttools_build,concurrent_build,core,gui,multimedia,widgets +QT5_USE= QT=qmake:build,buildtools:build,linguisttools:build,concurrent:build,core,gui,multimedia,widgets QT5_CMAKE_BOOL= ENABLE_QT ENABLE_QT_TRANSLATION QT5_PLIST_FILES=bin/${PORTNAME}-qt \ "@comment bin/${PORTNAME}-room" \ diff --git a/emulators/dolphin-emu/Makefile b/emulators/dolphin-emu/Makefile index 566a4299da18d..f481672eb0ebb 100644 --- a/emulators/dolphin-emu/Makefile +++ b/emulators/dolphin-emu/Makefile @@ -54,7 +54,7 @@ GH_TAGNAME= 7321802 USE_GL= gl glew glu USE_SDL= sdl2 USE_XORG= ice sm x11 xext xi xrandr -USE_QT= buildtools_build core gui widgets +USE_QT= buildtools:build core gui widgets # XXX USE_MGBA crashes configure step CMAKE_ARGS+= -DUSE_UPNP:BOOL=ON \ diff --git a/emulators/emu64/Makefile b/emulators/emu64/Makefile index b8e06906f2fbf..0e54e837e25e7 100644 --- a/emulators/emu64/Makefile +++ b/emulators/emu64/Makefile @@ -17,7 +17,7 @@ LIB_DEPENDS= libquazip1-qt5.so:archivers/quazip \ USES= compiler:c++11-lang desktop-file-utils dos2unix gl pkgconfig \ qmake:outsource qt:5 sdl USE_GL= gl glu -USE_QT= core gui widgets buildtools_build linguisttools_build +USE_QT= core gui widgets buildtools:build linguisttools:build DOS2UNIX_FILES= src/widget_file_browse.h diff --git a/emulators/fceux/Makefile b/emulators/fceux/Makefile index 02779945c1d77..46191574cb362 100644 --- a/emulators/fceux/Makefile +++ b/emulators/fceux/Makefile @@ -14,7 +14,7 @@ LIB_DEPENDS= libminizip.so:archivers/minizip USES= cmake desktop-file-utils gl lua:51 pkgconfig qt:5 sdl USE_GL= gl glu -USE_QT= buildtools_build core gui opengl qmake_build widgets +USE_QT= buildtools:build core gui opengl qmake:build widgets USE_SDL= sdl2 CFLAGS+= -DPUBLIC_RELEASE diff --git a/emulators/libretro-kronos/Makefile b/emulators/libretro-kronos/Makefile index 8f0d08804d2ac..e07e66ee72330 100644 --- a/emulators/libretro-kronos/Makefile +++ b/emulators/libretro-kronos/Makefile @@ -24,7 +24,7 @@ USE_GL= gl glew glu USE_LDCONFIG= yes -USE_QT= core opengl buildtools_build qmake_build +USE_QT= core opengl buildtools:build qmake:build USE_SDL= sdl2 diff --git a/emulators/mame/Makefile b/emulators/mame/Makefile index efc42f5625c8c..31f5ac04de9cd 100644 --- a/emulators/mame/Makefile +++ b/emulators/mame/Makefile @@ -27,7 +27,7 @@ GH_ACCOUNT= mamedev GH_PROJECT= mame # explicit (master port) GH_TAGNAME= mame${PORTVERSION:S/.//} USE_GL= gl -USE_QT= buildtools core gui qmake_build widgets +USE_QT= buildtools core gui qmake:build widgets USE_SDL= sdl2 ttf2 USE_XORG= x11 xext xi xinerama xrender diff --git a/emulators/mgba/Makefile b/emulators/mgba/Makefile index 93ac3608a8c82..7b00f0a7abbef 100644 --- a/emulators/mgba/Makefile +++ b/emulators/mgba/Makefile @@ -66,7 +66,7 @@ MAGICK_USES= magick:6 MAGICK_CMAKE_BOOL= USE_MAGICK QT5_USES= desktop-file-utils qt:5 -QT5_USE= qt=qmake_build,buildtools_build,core,gui,widgets,network,opengl,multimedia +QT5_USE= qt=qmake:build,buildtools:build,core,gui,widgets,network,opengl,multimedia QT5_CMAKE_BOOL= BUILD_QT .include diff --git a/emulators/mupen64plus-qt/Makefile b/emulators/mupen64plus-qt/Makefile index f395baa47037c..fc56e2cacdf22 100644 --- a/emulators/mupen64plus-qt/Makefile +++ b/emulators/mupen64plus-qt/Makefile @@ -21,8 +21,8 @@ RUN_DEPENDS= ${LOCALBASE}/lib/libmupen64plus.so.2:emulators/mupen64plus-core \ USES= gl pkgconfig qmake qt:5 USE_GL= gl USE_QT= core gui network sql widgets xml \ - buildtools_build \ - sql-sqlite3_run + buildtools:build \ + sql-sqlite3:run USE_GITHUB= yes GH_ACCOUNT= dh4 diff --git a/emulators/ppsspp/Makefile b/emulators/ppsspp/Makefile index cefbff2d18cb7..553a4aab880e3 100644 --- a/emulators/ppsspp/Makefile +++ b/emulators/ppsspp/Makefile @@ -63,7 +63,7 @@ LIBRETRO_CMAKE_BOOL= LIBRETRO LIBRETRO_PLIST_FILES= lib/libretro/${PORTNAME}_libretro.so LIBRETRO_VARS= CONFLICTS_INSTALL= DESKTOP_ENTRIES= PLIST= PORTDATA= PKGMESSAGE= SUB_FILES= QT5_USES= qt:5 sdl -QT5_USE= QT=qmake_build,buildtools_build,linguisttools_build,gui,multimedia,opengl,widgets +QT5_USE= QT=qmake:build,buildtools:build,linguisttools:build,gui,multimedia,opengl,widgets QT5_USE+= SDL=sdl2 # audio, joystick QT5_CMAKE_BOOL= USING_QT_UI QT5_VARS= EXENAME=PPSSPPQt diff --git a/emulators/qmc2/Makefile b/emulators/qmc2/Makefile index 2bcb5588db05d..4cbf5c3ac0871 100644 --- a/emulators/qmc2/Makefile +++ b/emulators/qmc2/Makefile @@ -18,8 +18,8 @@ NO_WRKSUBDIR= yes USES= compiler:c++11-lang dos2unix gl gmake qt:5 sdl tar:bzip2 xorg USE_XORG= x11 xmu USE_GL= gl glu -USE_QT= buildtools_build core declarative gui multimedia \ - network opengl qmake_build \ +USE_QT= buildtools:build core declarative gui multimedia \ + network opengl qmake:build \ testlib script scripttools sql svg \ webkit widgets xml xmlpatterns USE_SDL= sdl diff --git a/emulators/ripes/Makefile b/emulators/ripes/Makefile index 067d89c9310ea..1a9930613129a 100644 --- a/emulators/ripes/Makefile +++ b/emulators/ripes/Makefile @@ -11,7 +11,7 @@ LICENSE= MIT USES= cmake qmake qt:5 -USE_QT= buildtools_build charts concurrent core gui svg testlib widgets +USE_QT= buildtools:build charts concurrent core gui svg testlib widgets CMAKE_INSTALL_PREFIX= ${STAGEDIR}${PREFIX} diff --git a/emulators/rpcs3/Makefile b/emulators/rpcs3/Makefile index 4e705b1ecafa6..640757ee04bff 100644 --- a/emulators/rpcs3/Makefile +++ b/emulators/rpcs3/Makefile @@ -39,7 +39,7 @@ GH_TUPLE= RPCS3:hidapi:hidapi-0.12.0-2-gc2aa9dd:hidapi/3rdparty/hidapi/hidapi \ USES= cmake compiler:c++17-lang elfctl gl iconv:wchar_t localbase:ldflags \ openal:soft pkgconfig python:3.4+,build qt:5 xorg USE_GL= gl glew -USE_QT= qmake_build buildtools_build core concurrent dbus gui multimedia svg widgets +USE_QT= qmake:build buildtools:build core concurrent dbus gui multimedia svg widgets USE_XORG= x11 CMAKE_ON= CMAKE_SKIP_RPATH ${CURL FFMPEG FLATBUFFERS LIBPNG PUGIXML XXHASH:L:S/^/USE_SYSTEM_/} CMAKE_ON+= BUNDLE_SPEEX # only used by cubeb tests diff --git a/emulators/ukncbtl/Makefile b/emulators/ukncbtl/Makefile index b8ce69fcadfde..279a0edc84fd4 100644 --- a/emulators/ukncbtl/Makefile +++ b/emulators/ukncbtl/Makefile @@ -14,7 +14,7 @@ USES= compiler:c++11-lang gl qmake qt:5 USE_GL= gl USE_QT= core gui multimedia network script testlib widgets \ - buildtools_build qmake_build + buildtools:build qmake:build USE_GITHUB= yes GH_ACCOUNT= nzeemin diff --git a/emulators/virtualbox-ose-legacy/Makefile b/emulators/virtualbox-ose-legacy/Makefile index 0ffe866e4d209..78e0d874e71b8 100644 --- a/emulators/virtualbox-ose-legacy/Makefile +++ b/emulators/virtualbox-ose-legacy/Makefile @@ -158,7 +158,7 @@ CONFIGURE_ARGS+= --enable-qt5 PLIST_SUB+= QT="" USES+= gl qmake:no_env qt:5 xorg USE_GL= gl glu -USE_QT= buildtools_build core dbus gui linguisttools_build opengl +USE_QT= buildtools:build core dbus gui linguisttools:build opengl USE_QT+= printsupport widgets x11extras USE_XORG= xcb VBOX_PROGS+= VirtualBox diff --git a/emulators/virtualbox-ose/Makefile b/emulators/virtualbox-ose/Makefile index 42ff69ca86025..b82a3073f8bef 100644 --- a/emulators/virtualbox-ose/Makefile +++ b/emulators/virtualbox-ose/Makefile @@ -162,7 +162,7 @@ CONFIGURE_ARGS+= --enable-qt5 PLIST_SUB+= QT="" USES+= gl qmake:no_env qt:5 xorg USE_GL= gl glu -USE_QT= buildtools_build core dbus gui linguisttools_build opengl +USE_QT= buildtools:build core dbus gui linguisttools:build opengl USE_QT+= printsupport widgets x11extras USE_XORG= xcb VBOX_PROGS+= VirtualBox VirtualBoxVM diff --git a/emulators/yuzu/Makefile b/emulators/yuzu/Makefile index c4ee6bf5efd78..eb514840686dc 100644 --- a/emulators/yuzu/Makefile +++ b/emulators/yuzu/Makefile @@ -79,7 +79,7 @@ JACK_BUILD_DEPENDS= jackit>0:audio/jack JACK_CMAKE_BOOL= USE_JACK NLS_DESC= UI translations (implies QT5) -NLS_USE= QT=linguisttools_build +NLS_USE= QT=linguisttools:build NLS_CMAKE_BOOL= ENABLE_QT_TRANSLATION NLS_IMPLIES= QT5 @@ -87,7 +87,7 @@ PULSEAUDIO_BUILD_DEPENDS=pulseaudio>0:audio/pulseaudio PULSEAUDIO_CMAKE_BOOL= USE_PULSE QT5_USES= desktop-file-utils qt:5 shared-mime-info -QT5_USE= QT=qmake_build,buildtools_build,concurrent_build,core,gui,widgets +QT5_USE= QT=qmake:build,buildtools:build,concurrent:build,core,gui,widgets QT5_CMAKE_BOOL= ENABLE_QT QT5_PLIST_FILES= bin/${PORTNAME} \ share/applications/org.yuzu_emu.yuzu.desktop \ diff --git a/finance/alkimia/Makefile b/finance/alkimia/Makefile index a9e904f17cab2..5e93263f401ce 100644 --- a/finance/alkimia/Makefile +++ b/finance/alkimia/Makefile @@ -21,10 +21,10 @@ USES= cmake compiler:c++11-lang kde:5 pathfix perl5 qt:5 \ USE_LDCONFIG= yes USE_KDE= attica auth codecs completion config configwidgets coreaddons \ i18n iconthemes jobwidgets kio newstuff service solid sonnet \ - textwidgets widgetsaddons windowsystem xmlgui ecm_build + textwidgets widgetsaddons windowsystem xmlgui ecm:build USE_PERL5= run USE_QT= concurrent core dbus declarative gui network widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 CMAKE_ON= CMAKE_DISABLE_FIND_PACKAGE_Doxygen diff --git a/finance/kmymoney/Makefile b/finance/kmymoney/Makefile index d424178428cee..7e73ddadc132c 100644 --- a/finance/kmymoney/Makefile +++ b/finance/kmymoney/Makefile @@ -18,10 +18,10 @@ LIB_DEPENDS= libalkimia5.so:finance/alkimia \ USES= cmake compiler:c++14-lang desktop-file-utils gettext kde:5 \ pkgconfig qt:5 shared-mime-info shebangfix tar:xz -USE_QT= buildtools_build core dbus gui network printsupport qmake_build \ - sql testlib_build xml webkit widgets +USE_QT= buildtools:build core dbus gui network printsupport qmake:build \ + sql testlib:build xml webkit widgets USE_KDE= activities archive auth bookmarks codecs completion config \ - configwidgets coreaddons doctools_build ecm_build i18n \ + configwidgets coreaddons doctools:build ecm:build i18n \ iconthemes itemmodels itemviews jobwidgets kcmutils \ kio notifications textwidgets service solid sonnet \ wallet widgetsaddons xmlgui diff --git a/finance/kraft/Makefile b/finance/kraft/Makefile index e9b7d2263b6ac..f29e5d76e88e7 100644 --- a/finance/kraft/Makefile +++ b/finance/kraft/Makefile @@ -20,7 +20,7 @@ USE_KDE= akonadi akonadicontacts \ auth codecs config configwidgets contacts coreaddons \ grantleetheme i18n itemmodels widgetsaddons USE_QT= core dbus gui sql widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build SHEBANG_FILES= manual/makeman.sh diff --git a/finance/qtbitcointrader/Makefile b/finance/qtbitcointrader/Makefile index 9ae2dba3ce275..d968ec018f6f4 100644 --- a/finance/qtbitcointrader/Makefile +++ b/finance/qtbitcointrader/Makefile @@ -11,7 +11,7 @@ LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE.GPL3 USES= compiler:c++11-lib gl qmake qt:5 ssl xorg -USE_QT= core gui multimedia network script speech widgets buildtools_build +USE_QT= core gui multimedia network script speech widgets buildtools:build USE_GL= gl WRKSRC_SUBDIR= src diff --git a/finance/skrooge/Makefile b/finance/skrooge/Makefile index e1a80f133c887..318ce3d00703d 100644 --- a/finance/skrooge/Makefile +++ b/finance/skrooge/Makefile @@ -27,13 +27,13 @@ USE_KDE= activities archive attica5 auth bookmarks codecs completion \ package parts plasma-framework runner service solid sonnet \ textwidgets unitconversion wallet widgetsaddons windowsystem \ xmlgui \ - doctools_build ecm_build + doctools:build ecm:build # designerplugin is weird: it's defined as a _run dependency, but # skrooge checks for it at build-time. -USE_KDE+= designerplugin_build +USE_KDE+= designerplugin:build USE_QT= concurrent core dbus declarative designer gui network \ printsupport script sql svg webkit widgets xml \ - buildtools_build designer_build qmake_build testlib_build + buildtools:build designer:build qmake:build testlib:build USE_XORG= x11 SHEBANG_FILES= plugins/import/skrooge_import_backend/skrooge-sabb.py \ skgbankmodeler/skrooge-coinmarketcap.py \ diff --git a/french/aster/Makefile b/french/aster/Makefile index 2f0bd3588355a..e39c63462a755 100644 --- a/french/aster/Makefile +++ b/french/aster/Makefile @@ -47,7 +47,7 @@ RUN_DEPENDS+= ${SHELL_INSTALL_ASTER}:shells/${SHIADEP} \ USES= bison blaslapack:openblas fortran gettext python:3.6+ qt:5 tk USE_BINUTILS= yes -USE_QT= linguisttools_build +USE_QT= linguisttools:build #CONFLICTS_BUILD=${PYTHON_PKGNAMEPREFIX}cysignals-1.* diff --git a/games/2048-qt/Makefile b/games/2048-qt/Makefile index 5bc6cab4a985a..a43de2c60d337 100644 --- a/games/2048-qt/Makefile +++ b/games/2048-qt/Makefile @@ -16,7 +16,7 @@ GH_ACCOUNT= xiaoyong GH_PROJECT= 2048-Qt USES= compiler:c++11-lang gmake pkgconfig qmake qt:5 -USE_QT= core declarative gui network widgets buildtools_build quickcontrols +USE_QT= core declarative gui network widgets buildtools:build quickcontrols PLIST_FILES= bin/2048-qt ${DESKTOPDIR}/${PORTNAME}.desktop \ share/pixmaps/${PORTNAME}.png diff --git a/games/LibreMines/Makefile b/games/LibreMines/Makefile index b7bffcce2e556..5d159131d48e6 100644 --- a/games/LibreMines/Makefile +++ b/games/LibreMines/Makefile @@ -11,7 +11,7 @@ LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE USES= cmake qt:5 -USE_QT= buildtools_build core gui multimedia qmake_build svg widgets +USE_QT= buildtools:build core gui multimedia qmake:build svg widgets USE_GITHUB= yes GH_ACCOUNT= Bollos00 diff --git a/games/auralquiz/Makefile b/games/auralquiz/Makefile index 9c9aadf31277b..3d9ec558f5a76 100644 --- a/games/auralquiz/Makefile +++ b/games/auralquiz/Makefile @@ -16,7 +16,7 @@ LIB_DEPENDS= libtag.so:audio/taglib USES= compiler:c++11-lang gl qmake qt:5 USE_GL= gl -USE_QT= core gui widgets phonon4 qmake_build buildtools_build +USE_QT= core gui widgets phonon4 qmake:build buildtools:build PORTDOCS= CHANGELOG README TODO diff --git a/games/blinken/Makefile b/games/blinken/Makefile index 21a9c8d938ad5..b4fa41daef397 100644 --- a/games/blinken/Makefile +++ b/games/blinken/Makefile @@ -9,9 +9,9 @@ WWW= https://edu.kde.org/blinken/ USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons crash dbusaddons \ doctools guiaddons i18n widgetsaddons xmlgui \ - ecm_build + ecm:build USE_QT= core dbus gui phonon4 svg widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build OPTIONS_DEFINE= DOCS diff --git a/games/bomber/Makefile b/games/bomber/Makefile index b2ce91564326b..aee53e159b234 100644 --- a/games/bomber/Makefile +++ b/games/bomber/Makefile @@ -9,9 +9,9 @@ WWW= https://www.kde.org/applications/games/bomber/ USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons crash dbusaddons \ i18n kio libkdegames widgetsaddons xmlgui \ - ecm_build + ecm:build USE_QT= core dbus declarative gui network widgets phonon4 xml \ - buildtools_build qmake_build + buildtools:build qmake:build OPTIONS_DEFINE= DOCS diff --git a/games/bovo/Makefile b/games/bovo/Makefile index b7777423da66d..6adada8e0cd68 100644 --- a/games/bovo/Makefile +++ b/games/bovo/Makefile @@ -9,9 +9,9 @@ WWW= https://www.kde.org/applications/games/bovo/ USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons crash dbusaddons \ i18n kdeclarative libkdegames newstuff widgetsaddons xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus declarative gui network svg widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build OPTIONS_DEFINE= DOCS diff --git a/games/bubble-chains/Makefile b/games/bubble-chains/Makefile index e6a3ee2641368..dd79cef45c344 100644 --- a/games/bubble-chains/Makefile +++ b/games/bubble-chains/Makefile @@ -16,7 +16,7 @@ GH_ACCOUNT= ArsMasiuk USES= qmake qt:5 xorg USE_QT= core gui widgets xml opengl multimedia x11extras \ - qmake_build buildtools_build + qmake:build buildtools:build USE_XORG= x11 xrandr QMAKE_ARGS= DATADIR="${DATADIR}" diff --git a/games/chessx/Makefile b/games/chessx/Makefile index ad5e9f0fc7727..9b51622cdde30 100644 --- a/games/chessx/Makefile +++ b/games/chessx/Makefile @@ -13,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING USES= compiler:c++11-lang desktop-file-utils gl gmake qmake qt:5 tar:tgz USE_GL= gl USE_QT= concurrent core gui multimedia network opengl printsupport svg \ - widgets xml buildtools_build linguisttools_build speech + widgets xml buildtools:build linguisttools:build speech PLIST_FILES= bin/chessx \ share/applications/chessx.desktop \ diff --git a/games/cockatrice/Makefile b/games/cockatrice/Makefile index 618801d9ce03d..e4c1f435fc1c1 100644 --- a/games/cockatrice/Makefile +++ b/games/cockatrice/Makefile @@ -13,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libprotobuf.so:devel/protobuf USES= cmake compiler:c++11-lib gnome qt:5 -USE_QT= buildtools_build concurrent core network qmake_build websockets widgets gui +USE_QT= buildtools:build concurrent core network qmake:build websockets widgets gui USE_GITHUB= yes GH_TAGNAME= 2021-01-26-Release-2.8.0 @@ -32,7 +32,7 @@ SERVATRICE_CMAKE_OFF= -DWITH_SERVER=OFF COCKATRICE_CMAKE_ON= -DWITH_CLIENT=ON -DWITH_ORACLE=ON COCKATRICE_CMAKE_OFF= -DWITH_CLIENT=OFF -DWITH_ORACLE=OFF -COCKATRICE_USE= qt=multimedia,printsupport,svg,linguisttools_build +COCKATRICE_USE= qt=multimedia,printsupport,svg,linguisttools:build SERVATRICE_USE= qt=sql,sql-mysql SERVATRICE_USE+= RC_SUBR=servatrice diff --git a/games/colorcode/Makefile b/games/colorcode/Makefile index f0a8ebc25d338..b389ee56ce3a1 100644 --- a/games/colorcode/Makefile +++ b/games/colorcode/Makefile @@ -13,7 +13,7 @@ LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/COPYING USES= compiler:c++11-lang qmake qt:5 -USE_QT= core gui widgets buildtools_build +USE_QT= core gui widgets buildtools:build WRKSRC= ${WRKDIR}/ColorCode-${PORTVERSION} DESKTOP_ENTRIES=ColorCode \ diff --git a/games/connectagram/Makefile b/games/connectagram/Makefile index 2433ec84acc10..793df6b375cf4 100644 --- a/games/connectagram/Makefile +++ b/games/connectagram/Makefile @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING USES= compiler:c++11-lib gl qmake qt:5 tar:bzip2 USE_GL= gl -USE_QT= buildtools_build core gui linguisttools_build network widgets +USE_QT= buildtools:build core gui linguisttools:build network widgets WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} diff --git a/games/cutemaze/Makefile b/games/cutemaze/Makefile index c726903d84398..e6ef37c229cf5 100644 --- a/games/cutemaze/Makefile +++ b/games/cutemaze/Makefile @@ -13,8 +13,8 @@ LICENSE_FILE= ${WRKSRC}/COPYING USES= compiler:c++11-lang gl qmake qt:5 tar:bzip2 USE_GL= gl -USE_QT= core gui svg imageformats_run widgets \ - linguisttools_build buildtools_build +USE_QT= core gui svg imageformats:run widgets \ + linguisttools:build buildtools:build PORTDOCS= ChangeLog README WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} diff --git a/games/doomsday/Makefile b/games/doomsday/Makefile index c624d90ab7384..c565b25e7cb81 100644 --- a/games/doomsday/Makefile +++ b/games/doomsday/Makefile @@ -22,7 +22,7 @@ USE_GL= gl glu USE_LDCONFIG= yes USE_SDL= sdl2 mixer2 USE_XORG= x11 sm ice xext xrandr xxf86vm -USE_QT= buildtools_build core gui network widgets qmake_build opengl x11extras +USE_QT= buildtools:build core gui network widgets qmake:build opengl x11extras CMAKE_ARGS+= -DDENG_ENABLE_COTIRE=OFF -DDENG_ASSIMP_EMBEDDED=OFF LDFLAGS+= -lexecinfo diff --git a/games/dustrac/Makefile b/games/dustrac/Makefile index 1a2176a8fd54e..4b83b824f3572 100644 --- a/games/dustrac/Makefile +++ b/games/dustrac/Makefile @@ -21,7 +21,7 @@ GH_TAGNAME= ae380b8 # includes crash fix USES= compiler:c++11-lib cmake gl openal pkgconfig qt:5 USE_GL= gl glu USE_QT= core gui opengl xml widgets testlib sql \ - buildtools_build linguisttools_build qmake_build + buildtools:build linguisttools:build qmake:build CMAKE_ARGS= -DReleaseBuild=on \ -DSystemFonts=on \ -DDATA_PATH=${DATADIR} \ diff --git a/games/freeciv/Makefile b/games/freeciv/Makefile index 3b43e22125eca..2a0e60caf2d12 100644 --- a/games/freeciv/Makefile +++ b/games/freeciv/Makefile @@ -76,7 +76,7 @@ PGSQL_CONFIGURE_ON= --with-postgres-prefix=${LOCALBASE} PGSQL_VARS= _FREECIV_DB+=postgres QT5_USES= qt:5 sdl -QT5_USE= QT=core,gui,widgets,buildtools_build \ +QT5_USE= QT=core,gui,widgets,buildtools:build \ SDL=mixer2 QT5_CONFIGURE_ON= --with-qt5-includes=${LOCALBASE}/${QT_INCDIR_REL} \ --with-qt5-libs=${LOCALBASE}/${QT_LIBDIR_REL} diff --git a/games/gcompris-qt/Makefile b/games/gcompris-qt/Makefile index cb745c5b1c951..95db370e45cf4 100644 --- a/games/gcompris-qt/Makefile +++ b/games/gcompris-qt/Makefile @@ -16,11 +16,11 @@ LICENSE_FILE_GPLv3= ${WRKSRC}/LICENSES/GPL-3.0-or-later.txt LIB_DEPENDS= libBox2D.so:x11-toolkits/qml-box2d USES= cmake compiler:c++11-lang kde:5 qt:5 tar:xz -USE_KDE= doctools_build ecm_build +USE_KDE= doctools:build ecm:build USE_QT= core declarative graphicaleffects gui multimedia network quickcontrols \ sensors svg widgets \ - buildtools_build linguisttools_build qmake_build testlib_build \ - imageformats_run + buildtools:build linguisttools:build qmake:build testlib:build \ + imageformats:run CMAKE_ARGS= -DQML_BOX2D_LIBRARY=${QT_QMLDIR}/Box2D.2.0 diff --git a/games/gottet/Makefile b/games/gottet/Makefile index e164fca6ae138..faeb75718745c 100644 --- a/games/gottet/Makefile +++ b/games/gottet/Makefile @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING USES= compiler:c++11-lib gl qmake qt:5 tar:bzip2 USE_GL= gl USE_QT= core gui widgets \ - buildtools_build linguisttools_build + buildtools:build linguisttools:build WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} diff --git a/games/granatier/Makefile b/games/granatier/Makefile index d5612e577ccef..5a2dd6c4feca6 100644 --- a/games/granatier/Makefile +++ b/games/granatier/Makefile @@ -10,9 +10,9 @@ USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= attica auth codecs config configwidgets coreaddons crash \ dbusaddons guiaddons i18n iconthemes itemviews kio \ libkdegames newstuff notifyconfig service widgetsaddons xmlgui \ - ecm_build + ecm:build USE_QT= core dbus declarative gui network svg widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build OPTIONS_DEFINE= DOCS diff --git a/games/hedgewars/Makefile b/games/hedgewars/Makefile index 5f023a5adc08b..906bf6c85810b 100644 --- a/games/hedgewars/Makefile +++ b/games/hedgewars/Makefile @@ -23,8 +23,8 @@ USES= cmake:noninja desktop-file-utils fpc gl lua:51 pkgconfig qt:5 \ USE_SDL= sdl2 mixer2 image2 ttf2 net2 USE_FPC= opengl libpng rtl-objpas rtl-extra USE_QT= core gui widgets network \ - qmake_build buildtools_build \ - linguisttools_build + qmake:build buildtools:build \ + linguisttools:build USE_GL= gl glu USE_LDCONFIG= yes CMAKE_ON= NOSERVER diff --git a/games/iqpuzzle/Makefile b/games/iqpuzzle/Makefile index d228eac3a8796..77bd1a2578417 100644 --- a/games/iqpuzzle/Makefile +++ b/games/iqpuzzle/Makefile @@ -11,7 +11,7 @@ LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/COPYING USES= compiler:c++11-lang gl qmake qt:5 -USE_QT= core gui widgets buildtools_build +USE_QT= core gui widgets buildtools:build USE_GL= gl USE_GITHUB= yes diff --git a/games/kanagram/Makefile b/games/kanagram/Makefile index 027ad363b73b1..cf2ef7c4ee101 100644 --- a/games/kanagram/Makefile +++ b/games/kanagram/Makefile @@ -10,9 +10,9 @@ USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= attica auth codecs config configwidgets coreaddons crash \ doctools i18n kdeclarative kio libkeduvocdocument newstuff \ package service sonnet widgetsaddons xmlgui \ - ecm_build + ecm:build USE_QT= core dbus declarative gui network opengl speech svg widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build OPTIONS_DEFINE= DOCS diff --git a/games/kapman/Makefile b/games/kapman/Makefile index 498969845830f..f5437944a650a 100644 --- a/games/kapman/Makefile +++ b/games/kapman/Makefile @@ -10,9 +10,9 @@ USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons crash \ dbusaddons i18n libkdegames notifyconfig widgetsaddons \ windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= core dbus declarative gui network svg widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build OPTIONS_DEFINE= DOCS diff --git a/games/katomic/Makefile b/games/katomic/Makefile index 03e652db04848..7a7a9be574014 100644 --- a/games/katomic/Makefile +++ b/games/katomic/Makefile @@ -10,9 +10,9 @@ USES= cmake compiler:c++11-lang gettext kde:5 qt:5 \ USE_KDE= attica auth codecs config configwidgets coreaddons crash \ dbusaddons guiaddons i18n iconthemes itemviews kio \ libkdegames newstuff notifyconfig service widgetsaddons xmlgui \ - ecm_build + ecm:build USE_QT= core dbus declarative gui network widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build SHEBANG_FILES= src/katomic-levelset-upd.pl OPTIONS_DEFINE= DOCS diff --git a/games/kblackbox/Makefile b/games/kblackbox/Makefile index 1eb7f15aa78b1..ac03c0e8a76c9 100644 --- a/games/kblackbox/Makefile +++ b/games/kblackbox/Makefile @@ -10,9 +10,9 @@ USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= archive auth codecs config configwidgets coreaddons crash \ dbusaddons guiaddons i18n iconthemes libkdegames sonnet \ textwidgets widgetsaddons xmlgui \ - ecm_build + ecm:build USE_QT= core dbus declarative gui network svg widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build OPTIONS_DEFINE= DOCS diff --git a/games/kblocks/Makefile b/games/kblocks/Makefile index 374894eebc500..d597e760053c5 100644 --- a/games/kblocks/Makefile +++ b/games/kblocks/Makefile @@ -11,7 +11,7 @@ USE_KDE= auth codecs completion config configwidgets coreaddons crash \ dbusaddons i18n itemmodels kio libkdegames newstuff \ notifyconfig textwidgets widgetsaddons windowsystem xmlgui USE_QT= core dbus declarative gui network phonon4 svg testlib widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build OPTIONS_DEFINE= DOCS diff --git a/games/kbounce/Makefile b/games/kbounce/Makefile index b8b453bb8b8dc..86b5b68b9bde5 100644 --- a/games/kbounce/Makefile +++ b/games/kbounce/Makefile @@ -11,10 +11,10 @@ USE_KDE= auth codecs completion config configwidgets coreaddons crash \ dbusaddons guiaddons i18n iconthemes jobwidgets kio \ libkdegames notifyconfig service solid textwidgets widgetsaddons \ windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus declarative gui network phonon4 svg \ testlib widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build OPTIONS_DEFINE= DOCS diff --git a/games/kbreakout/Makefile b/games/kbreakout/Makefile index c23a8ba5a47f8..fbfca9e069e74 100644 --- a/games/kbreakout/Makefile +++ b/games/kbreakout/Makefile @@ -10,9 +10,9 @@ USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons crash \ dbusaddons guiaddons i18n iconthemes jobwidgets kio libkdegames \ service widgetsaddons xmlgui \ - ecm_build + ecm:build USE_QT= core dbus declarative gui network svg widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build OPTIONS_DEFINE= DOCS diff --git a/games/kdiamond/Makefile b/games/kdiamond/Makefile index 089be6a92fc10..4ae632790c50d 100644 --- a/games/kdiamond/Makefile +++ b/games/kdiamond/Makefile @@ -10,9 +10,9 @@ USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons crash dbusaddons \ doctools guiaddons i18n iconthemes libkdegames \ notifications notifyconfig widgetsaddons xmlgui \ - ecm_build + ecm:build USE_QT= core dbus declarative gui network widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build OPTIONS_DEFINE= DOCS diff --git a/games/kfourinline/Makefile b/games/kfourinline/Makefile index 81cc00d7f0054..14ac7ac7c8161 100644 --- a/games/kfourinline/Makefile +++ b/games/kfourinline/Makefile @@ -11,9 +11,9 @@ USE_KDE= auth codecs completion config configwidgets coreaddons crash \ dbusaddons dnssd i18n iconthemes itemmodels itemviews \ kdeclarative kdelibs4support kio libkdegames notifyconfig \ widgetsaddons xmlgui \ - ecm_build + ecm:build USE_QT= core dbus declarative gui network svg widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build OPTIONS_DEFINE= DOCS diff --git a/games/kgoldrunner/Makefile b/games/kgoldrunner/Makefile index edbe9895276c4..836d89294d154 100644 --- a/games/kgoldrunner/Makefile +++ b/games/kgoldrunner/Makefile @@ -10,9 +10,9 @@ USES= cmake compiler:c++11-lang kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons \ crash dbusaddons i18n kio libkdegames service \ widgetsaddons xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus declarative gui network widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build OPTIONS_DEFINE= DOCS diff --git a/games/khangman/Makefile b/games/khangman/Makefile index 9baee83f416b0..260ac7fa21242 100644 --- a/games/khangman/Makefile +++ b/games/khangman/Makefile @@ -10,9 +10,9 @@ USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= attica auth codecs completion config configwidgets coreaddons \ crash doctools i18n kdeclarative libkeduvocdocument \ newstuff notifications package service widgetsaddons xmlgui \ - ecm_build + ecm:build USE_QT= core dbus declarative gui network svg widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS diff --git a/games/kigo/Makefile b/games/kigo/Makefile index 3810976a2fb39..c88d850524f71 100644 --- a/games/kigo/Makefile +++ b/games/kigo/Makefile @@ -11,9 +11,9 @@ USE_KDE= attica auth codecs completion config configwidgets \ coreaddons crash dbusaddons i18n jobwidgets kio \ libkdegames newstuff notifyconfig service solid sonnet textwidgets \ widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus declarative gui network svg widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 OPTIONS_DEFINE= DOCS diff --git a/games/killbots/Makefile b/games/killbots/Makefile index 86e7b8e1879fb..a985fc8047137 100644 --- a/games/killbots/Makefile +++ b/games/killbots/Makefile @@ -10,9 +10,9 @@ USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons crash \ dbusaddons guiaddons i18n iconthemes itemviews kio \ libkdegames notifyconfig widgetsaddons xmlgui \ - ecm_build + ecm:build USE_QT= core dbus declarative gui network widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build OPTIONS_DEFINE= DOCS diff --git a/games/kiriki/Makefile b/games/kiriki/Makefile index 975977bb05723..7014f42c6da24 100644 --- a/games/kiriki/Makefile +++ b/games/kiriki/Makefile @@ -9,9 +9,9 @@ WWW= https://www.kde.org/applications/games/kiriki/ USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons crash dbusaddons \ guiaddons i18n iconthemes kio libkdegames widgetsaddons xmlgui \ - ecm_build + ecm:build USE_QT= core dbus declarative gui network printsupport svg widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build OPTIONS_DEFINE= DOCS diff --git a/games/kjumpingcube/Makefile b/games/kjumpingcube/Makefile index e73113172402e..cd9a8764a4eed 100644 --- a/games/kjumpingcube/Makefile +++ b/games/kjumpingcube/Makefile @@ -11,9 +11,9 @@ USE_KDE= auth codecs completion config configwidgets coreaddons crash \ dbusaddons guiaddons i18n iconthemes itemviews jobwidgets \ kio libkdegames newstuff notifyconfig service solid widgetsaddons \ windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus declarative gui network svg widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 OPTIONS_DEFINE= DOCS diff --git a/games/klickety/Makefile b/games/klickety/Makefile index e134fa032597a..511e01ce02184 100644 --- a/games/klickety/Makefile +++ b/games/klickety/Makefile @@ -13,9 +13,9 @@ USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons doctools i18n itemviews \ jobwidgets kio libkdegames notifications notifyconfig service \ solid widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus declarative gui network widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 OPTIONS_DEFINE= DOCS diff --git a/games/klines/Makefile b/games/klines/Makefile index de333f5597574..99430274f7ad6 100644 --- a/games/klines/Makefile +++ b/games/klines/Makefile @@ -10,9 +10,9 @@ USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons crash dbusaddons \ guiaddons i18n iconthemes itemviews kio libkdegames \ newstuff service widgetsaddons xmlgui \ - ecm_build + ecm:build USE_QT= core dbus declarative gui network svg widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build OPTIONS_DEFINE= DOCS diff --git a/games/kmahjongg/Makefile b/games/kmahjongg/Makefile index 65b3e472252e9..997808a16c5b8 100644 --- a/games/kmahjongg/Makefile +++ b/games/kmahjongg/Makefile @@ -12,9 +12,9 @@ USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons crash \ dbusaddons doctools i18n kdeclarative libkdegames newstuff \ widgetsaddons xmlgui \ - ecm_build + ecm:build USE_QT= core dbus declarative gui network svg widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build OPTIONS_DEFINE= DOCS diff --git a/games/kmines/Makefile b/games/kmines/Makefile index f4054c0e40fc4..28bf6b2ce8c92 100644 --- a/games/kmines/Makefile +++ b/games/kmines/Makefile @@ -10,9 +10,9 @@ USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons crash dbusaddons \ i18n kio libkdegames notifyconfig sonnet textwidgets \ widgetsaddons xmlgui \ - ecm_build + ecm:build USE_QT= core dbus declarative gui network widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build OPTIONS_DEFINE= DOCS diff --git a/games/knavalbattle/Makefile b/games/knavalbattle/Makefile index ac99e7136ca27..cdc351afd50a2 100644 --- a/games/knavalbattle/Makefile +++ b/games/knavalbattle/Makefile @@ -10,9 +10,9 @@ USES= cmake compiler:c++11-lang desktop-file-utils gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons crash \ dbusaddons dnssd doctools i18n libkdegames sonnet \ textwidgets widgetsaddons xmlgui \ - ecm_build + ecm:build USE_QT= core dbus declarative gui network widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build OPTIONS_DEFINE= DOCS diff --git a/games/knetwalk/Makefile b/games/knetwalk/Makefile index 609dfb16c5aea..4b02e4bf7785b 100644 --- a/games/knetwalk/Makefile +++ b/games/knetwalk/Makefile @@ -10,9 +10,9 @@ USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons crash dbusaddons \ guiaddons i18n iconthemes itemviews kio libkdegames \ notifyconfig sonnet textwidgets widgetsaddons xmlgui \ - ecm_build + ecm:build USE_QT= core dbus declarative gui network svg widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build OPTIONS_DEFINE= DOCS diff --git a/games/knights/Makefile b/games/knights/Makefile index 6b319b39afa75..df223cad68f20 100644 --- a/games/knights/Makefile +++ b/games/knights/Makefile @@ -17,7 +17,7 @@ USE_KDE= auth codecs completion config configwidgets coreaddons \ widgetsaddons xmlgui USE_QT= concurrent core dbus declarative gui network speech \ svg widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build OPTIONS_DEFINE= DOCS diff --git a/games/kolf/Makefile b/games/kolf/Makefile index 1f6353377329f..d5d07f9fd9abb 100644 --- a/games/kolf/Makefile +++ b/games/kolf/Makefile @@ -12,10 +12,10 @@ USE_KDE= auth bookmarks codecs completion config configwidgets \ itemviews jobwidgets kdelibs4support kio libkdegames \ notifications parts service solid sonnet textwidgets \ unitconversion widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus declarative gui network phonon4 printsupport \ widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_LDCONFIG= yes diff --git a/games/kollision/Makefile b/games/kollision/Makefile index 865389565df43..2dabe0906bade 100644 --- a/games/kollision/Makefile +++ b/games/kollision/Makefile @@ -10,9 +10,9 @@ USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons crash dbusaddons \ i18n kio libkdegames newstuff notifyconfig textwidgets \ widgetsaddons xmlgui \ - ecm_build + ecm:build USE_QT= core dbus declarative gui network phonon4 svg widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build OPTIONS_DEFINE= DOCS diff --git a/games/konquest/Makefile b/games/konquest/Makefile index 2f45ff1addce3..a275154f00069 100644 --- a/games/konquest/Makefile +++ b/games/konquest/Makefile @@ -10,9 +10,9 @@ USES= cmake compiler:c++11-lang kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons crash \ dbusaddons guiaddons i18n libkdegames widgetsaddons \ xmlgui \ - ecm_build + ecm:build USE_QT= core dbus declarative gui network svg widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build OPTIONS_DEFINE= DOCS diff --git a/games/kpat/Makefile b/games/kpat/Makefile index a073652d8fb90..805fba963f39d 100644 --- a/games/kpat/Makefile +++ b/games/kpat/Makefile @@ -15,9 +15,9 @@ USE_KDE= attica auth codecs completion config configwidgets coreaddons \ crash dbusaddons guiaddons i18n iconthemes itemviews \ kdeclarative kio libkdegames newstuff notifyconfig service \ textwidgets widgetsaddons xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus declarative gui network phonon4 svg widgets xml \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build CMAKE_ON= WITH_BH_SOLVER OPTIONS_DEFINE= DOCS diff --git a/games/kreversi/Makefile b/games/kreversi/Makefile index 02b412fc0f7a1..72690d092dc36 100644 --- a/games/kreversi/Makefile +++ b/games/kreversi/Makefile @@ -11,9 +11,9 @@ USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons i18n iconthemes itemviews \ jobwidgets kdeclarative kio libkdegames package service \ solid widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus declarative gui network svg widgets xml \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build USE_XORG= x11 OPTIONS_DEFINE= DOCS diff --git a/games/kshisen/Makefile b/games/kshisen/Makefile index d35d655d272a3..f32e565ea2bf2 100644 --- a/games/kshisen/Makefile +++ b/games/kshisen/Makefile @@ -12,9 +12,9 @@ USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons crash \ dbusaddons dnssd i18n kdeclarative kio libkdegames \ newstuff widgetsaddons xmlgui \ - ecm_build + ecm:build USE_QT= core dbus declarative gui network svg widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build OPTIONS_DEFINE= DOCS diff --git a/games/ksirk/Makefile b/games/ksirk/Makefile index 81df450c1c60a..99e2fe86815f9 100644 --- a/games/ksirk/Makefile +++ b/games/ksirk/Makefile @@ -11,7 +11,7 @@ USE_KDE= attica auth codecs completion config configwidgets \ coreaddons crash i18n iconthemes kio libkdegames newstuff \ service wallet widgetsaddons xmlgui USE_QT= concurrent core dbus declarative gui network phonon4 svg widgets xml \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS diff --git a/games/ksnakeduel/Makefile b/games/ksnakeduel/Makefile index 726c0ba27234e..363b7448f20aa 100644 --- a/games/ksnakeduel/Makefile +++ b/games/ksnakeduel/Makefile @@ -10,9 +10,9 @@ USES= cmake compiler:c++11-lang kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons \ crash dbusaddons guiaddons i18n libkdegames \ widgetsaddons xmlgui \ - ecm_build + ecm:build USE_QT= core dbus declarative gui network svg widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build OPTIONS_DEFINE= DOCS diff --git a/games/kspaceduel/Makefile b/games/kspaceduel/Makefile index bba566ca54149..2faf92aa9e2d2 100644 --- a/games/kspaceduel/Makefile +++ b/games/kspaceduel/Makefile @@ -9,9 +9,9 @@ WWW= https://www.kde.org/applications/games/kspaceduel/ USES= cmake compiler:c++11-lang kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons \ crash dbusaddons i18n libkdegames widgetsaddons xmlgui \ - ecm_build + ecm:build USE_QT= core dbus declarative gui network svg widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build OPTIONS_DEFINE= DOCS diff --git a/games/ksquares/Makefile b/games/ksquares/Makefile index a10aaf64a2b18..2d73684688aee 100644 --- a/games/ksquares/Makefile +++ b/games/ksquares/Makefile @@ -10,9 +10,9 @@ USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons crash \ dbusaddons guiaddons i18n iconthemes itemviews kio \ libkdegames notifyconfig widgetsaddons xmlgui \ - ecm_build + ecm:build USE_QT= core dbus declarative gui network widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build OPTIONS_DEFINE= DOCS diff --git a/games/ksudoku/Makefile b/games/ksudoku/Makefile index 918a1014205bb..8f2224acc7276 100644 --- a/games/ksudoku/Makefile +++ b/games/ksudoku/Makefile @@ -11,10 +11,10 @@ USE_GL= gl glu USE_KDE= archive auth codecs completion config configwidgets \ coreaddons crash guiaddons i18n jobwidgets kio \ libkdegames service widgetsaddons xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus declarative gui network opengl printsupport \ svg widgets xml \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build OPTIONS_DEFINE= DOCS diff --git a/games/ktuberling/Makefile b/games/ktuberling/Makefile index ebbe33971676c..51b9a6a675dd8 100644 --- a/games/ktuberling/Makefile +++ b/games/ktuberling/Makefile @@ -13,10 +13,10 @@ USE_KDE= auth bookmarks codecs completion config configwidgets \ kdelibs4support kio libkdegames newstuff notifications \ notifyconfig parts service solid sonnet textwidgets \ unitconversion widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus declarative gui multimedia network \ phonon4 printsupport svg testlib widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build OPTIONS_DEFINE= DOCS diff --git a/games/kubrick/Makefile b/games/kubrick/Makefile index a510492a0d18a..dac4b4dc41cb6 100644 --- a/games/kubrick/Makefile +++ b/games/kubrick/Makefile @@ -10,9 +10,9 @@ USES= cmake compiler:c++11-lang gl kde:5 qt:5 tar:xz USE_GL= gl glu USE_KDE= auth codecs config configwidgets coreaddons crash \ i18n kio libkdegames service widgetsaddons xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus declarative gui network opengl svg widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build OPTIONS_DEFINE= DOCS diff --git a/games/leela-zero/Makefile b/games/leela-zero/Makefile index 6223eae9c2021..ba971803aacb1 100644 --- a/games/leela-zero/Makefile +++ b/games/leela-zero/Makefile @@ -20,7 +20,7 @@ LIB_DEPENDS= libboost_filesystem.so:devel/boost-libs \ USES= cmake compiler:c++14-lang eigen:3 localbase qt:5 USE_GITHUB= yes GH_TUPLE= google:googletest:cafa9e5:gtest/gtest -USE_QT= core widgets buildtools_build qmake_build +USE_QT= core widgets buildtools:build qmake:build CMAKE_ON= USE_BLAS BUILD_TESTING CMAKE_ARGS= -DBLAS_INCLUDE_DIRS:STRING=${LOCALBASE}/include diff --git a/games/libkdegames/Makefile b/games/libkdegames/Makefile index 4d4fd9a0c65dc..a1cdc805d5caf 100644 --- a/games/libkdegames/Makefile +++ b/games/libkdegames/Makefile @@ -15,9 +15,9 @@ USE_KDE= archive attica auth bookmarks codecs completion config \ globalaccel guiaddons i18n iconthemes init itemmodels \ itemviews jobwidgets kdeclarative kdelibs4support kio newstuff \ package service textwidgets widgetsaddons xmlgui \ - ecm_build + ecm:build USE_QT= core dbus declarative gui network svg widgets xml \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build USE_LDCONFIG= yes SHLIB_VER= 7.3.1 diff --git a/games/libkmahjongg/Makefile b/games/libkmahjongg/Makefile index 2fca6b2a2d21d..16c0889f25b05 100644 --- a/games/libkmahjongg/Makefile +++ b/games/libkmahjongg/Makefile @@ -9,9 +9,9 @@ WWW= https://www.kde.org/applications/games/kmahjongg/ USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons \ i18n widgetsaddons \ - ecm_build + ecm:build USE_QT= core gui svg widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS diff --git a/games/lskat/Makefile b/games/lskat/Makefile index 3c177416be152..5d8385fbb9103 100644 --- a/games/lskat/Makefile +++ b/games/lskat/Makefile @@ -9,9 +9,9 @@ WWW= https://www.kde.org/applications/games/lskat/ USES= cmake compiler:c++11-lang kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons crash \ guiaddons i18n libkdegames notifyconfig widgetsaddons xmlgui \ - ecm_build + ecm:build USE_QT= core dbus declarative gui network svg widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build OPTIONS_DEFINE= DOCS diff --git a/games/multimc/Makefile b/games/multimc/Makefile index 4b63d11c67512..1592bfb89d154 100644 --- a/games/multimc/Makefile +++ b/games/multimc/Makefile @@ -19,8 +19,8 @@ GH_TUPLE= MultiMC:libnbtplusplus:508eda8:libnbtplusplus/libraries/libnbtplusplus MultiMC:quazip:3691d57:quazip/libraries/quazip USE_LDCONFIG= yes USE_JAVA= 1.8+ -USE_QT= core concurrent gui network testlib_build widgets xml \ - buildtools_build qmake_build +USE_QT= core concurrent gui network testlib:build widgets xml \ + buildtools:build qmake:build CMAKE_ARGS= -DMultiMC_LAYOUT="lin-system" CMAKE_OFF= MultiMC_UPDATER diff --git a/games/openage/Makefile b/games/openage/Makefile index 98df7aebc9cb0..a1a2643226ea9 100644 --- a/games/openage/Makefile +++ b/games/openage/Makefile @@ -34,7 +34,7 @@ USE_GITHUB= yes GH_ACCOUNT= SFTtech USE_SDL= image2 sdl2 USE_GL= gl glu -USE_QT= core declarative gui network buildtools_build qmake_build +USE_QT= core declarative gui network buildtools:build qmake:build USE_PYTHON= cython USE_LDCONFIG= yes diff --git a/games/openmw/Makefile b/games/openmw/Makefile index 831a4e57fe96f..518ac000e2be3 100644 --- a/games/openmw/Makefile +++ b/games/openmw/Makefile @@ -24,8 +24,8 @@ USES= cmake compiler:c++17-lang gl openal pkgconfig qt:5 sdl xorg USE_GITHUB= yes GH_ACCOUNT= OpenMW USE_GL= gl -USE_QT= core gui network opengl printsupport widgets buildtools_build \ - qmake_build +USE_QT= core gui network opengl printsupport widgets buildtools:build \ + qmake:build USE_SDL= sdl2 CMAKE_ARGS= -DDESIRED_QT_VERSION=5 \ diff --git a/games/palapeli/Makefile b/games/palapeli/Makefile index aacb6decca759..911e37ea25729 100644 --- a/games/palapeli/Makefile +++ b/games/palapeli/Makefile @@ -12,7 +12,7 @@ USE_KDE= archive auth codecs completion config configwidgets coreaddons \ crash i18n itemviews jobwidgets kio libkdegames notifications service \ solid widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus declarative gui network svg widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 USE_LDCONFIG= yes diff --git a/games/pentobi/Makefile b/games/pentobi/Makefile index 53914367ffd36..9ccdc9fad3a72 100644 --- a/games/pentobi/Makefile +++ b/games/pentobi/Makefile @@ -18,7 +18,7 @@ USES= compiler:c++14-lang cmake desktop-file-utils gettext-tools gnome qt:5 \ shared-mime-info tar:xz USE_GNOME= librsvg2:build USE_QT= core gui concurrent quickcontrols2 declarative network \ - qmake_build buildtools_build linguisttools_build + qmake:build buildtools:build linguisttools:build CMAKE_ARGS= -DDOCBOOK_XSL=${LOCALBASE}/share/xsl/docbook/manpages/docbook.xsl PORTDATA= * diff --git a/games/picmi/Makefile b/games/picmi/Makefile index 9109e048b0f8b..fc090131b721c 100644 --- a/games/picmi/Makefile +++ b/games/picmi/Makefile @@ -10,9 +10,9 @@ USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz xorg USE_KDE= auth codecs completion config configwidgets coreaddons crash \ dbusaddons doctools i18n jobwidgets kdeclarative kio \ libkdegames newstuff service solid widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus declarative gui network svg testlib widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 OPTIONS_DEFINE= DOCS diff --git a/games/pokerth/Makefile b/games/pokerth/Makefile index fbb8de2ecdf0d..7dff69a356883 100644 --- a/games/pokerth/Makefile +++ b/games/pokerth/Makefile @@ -27,7 +27,7 @@ BROKEN= error: use of undeclared identifier '_1' USES= compiler:c++11-lang gl gmake iconv qmake qt:5 sdl sqlite ssl USE_GL= gl USE_CXXSTD= c++11 -USE_QT= buildtools_build core gui network sql sql-sqlite3 widgets +USE_QT= buildtools:build core gui network sql sql-sqlite3 widgets USE_SDL= mixer QMAKE_SOURCE_PATH= pokerth.pro diff --git a/games/py-mnemosyne/Makefile b/games/py-mnemosyne/Makefile index ca037d0545839..9b29cb67b461d 100644 --- a/games/py-mnemosyne/Makefile +++ b/games/py-mnemosyne/Makefile @@ -22,7 +22,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3@${PY_FLAVOR} ${PYTHON_PKGNAMEPREFIX}gtts>=0:audio/py-gtts@${PY_FLAVOR} USES= pyqt:5 python:3.7+ shebangfix dos2unix #due textproc/py-googletrans -USE_PYQT= pyqt5_run sip_run webengine_run +USE_PYQT= pyqt5:run sip:run webengine:run USE_PYTHON= autoplist concurrent distutils DOS2UNIX_GLOB= *.py diff --git a/games/qnetwalk/Makefile b/games/qnetwalk/Makefile index 963a4b62faa69..5b903d8a9799d 100644 --- a/games/qnetwalk/Makefile +++ b/games/qnetwalk/Makefile @@ -13,7 +13,7 @@ USE_GITHUB= yes GH_ACCOUNT= AMDmi3 USES= cmake compiler:c++11-lang pkgconfig qt:5 sdl -USE_QT= core gui widgets qmake_build buildtools_build linguisttools_build +USE_QT= core gui widgets qmake:build buildtools:build linguisttools:build USE_SDL= sdl2 mixer2 PORTDOCS= ChangeLog.md README.md diff --git a/games/solarus-quest-editor/Makefile b/games/solarus-quest-editor/Makefile index e6c56af1ce648..382ad1c11aa72 100644 --- a/games/solarus-quest-editor/Makefile +++ b/games/solarus-quest-editor/Makefile @@ -28,7 +28,7 @@ GL_COMMIT= e541e1312c242bff10aa1fb84a7eb8b6cb8504ba CMAKE_ARGS+= -DSOLARUS_USE_LUAJIT=OFF USE_SDL= sdl2 ttf2 image2 -USE_QT= buildtools_build concurrent core gui linguist qmake_build widgets +USE_QT= buildtools:build concurrent core gui linguist qmake:build widgets DESKTOP_ENTRIES= "Solarus Quest Editor" "${COMMENT}" "${PORTNAME}" "${PORTNAME}" \ "Game;" false diff --git a/games/solarus/Makefile b/games/solarus/Makefile index d260eeaeba73c..dce714f5762b1 100644 --- a/games/solarus/Makefile +++ b/games/solarus/Makefile @@ -25,7 +25,7 @@ GL_ACCOUNT= solarus-games GL_COMMIT= f43727b232b3ed13d98440a845e2a29e470e4f0d MAKE_ARGS+= DESTDIR=${STAGEDIR} -USE_QT= buildtools_build core gui linguisttools_build widgets +USE_QT= buildtools:build core gui linguisttools:build widgets USE_SDL= sdl2 ttf2 image2 USE_GL= gl glu USE_LDCONFIG= yes diff --git a/games/tanglet/Makefile b/games/tanglet/Makefile index 416cfb210b3d4..a9cd5d241c5d1 100644 --- a/games/tanglet/Makefile +++ b/games/tanglet/Makefile @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/data/LICENSES/GPL-3.0.txt USES= compiler:c++11-lib desktop-file-utils gl pkgconfig qmake \ qt:5 shared-mime-info tar:bzip2 USE_GL= gl -USE_QT= buildtools_build linguisttools_build core gui widgets +USE_QT= buildtools:build linguisttools:build core gui widgets WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} diff --git a/games/wyrmgus/Makefile b/games/wyrmgus/Makefile index 574c16e64930a..853ca4d4c76e1 100644 --- a/games/wyrmgus/Makefile +++ b/games/wyrmgus/Makefile @@ -23,7 +23,7 @@ GH_PROJECT= Wyrmgus USES= cmake compiler:c++17-lang lua:51 pkgconfig sdl sqlite qt:5 xorg USE_QT= core gui widgets multimedia location \ quickcontrols quickcontrols2 graphicaleffects \ - qmake_build buildtools_build + qmake:build buildtools:build USE_XORG= x11 USE_SDL= sdl2 mixer2 CMAKE_ARGS= -DGAMEDIR:STRING="bin" \ diff --git a/games/xnethack/Makefile b/games/xnethack/Makefile index d372347984982..0747725e89aac 100644 --- a/games/xnethack/Makefile +++ b/games/xnethack/Makefile @@ -41,7 +41,7 @@ GRAPHICS= X11_GRAPHICS GRAPHICS= # none .elif ${FLAVOR} == "qt" USES+= localbase pkgconfig qt:5 -USE_QT= buildtools_build core gui multimedia network widgets +USE_QT= buildtools:build core gui multimedia network widgets MAKE_ENV+= MOCPATH=${MOC} LINK="${CXX} -pie" # Qt wants PIC for some reason. For C code, PIE should be enough. CFLAGS+= -I${QT_INCDIR} -fpie diff --git a/graphics/appleseed/Makefile b/graphics/appleseed/Makefile index 01d0cb85fe000..da5810536df06 100644 --- a/graphics/appleseed/Makefile +++ b/graphics/appleseed/Makefile @@ -67,7 +67,7 @@ PYTHON_CMAKE_ON= -DWITH_PYTHON3_BINDINGS:BOOL=ON STUDIO_DESC= Build appleseed.studio (Qt-based) STUDIO_LIB_DEPENDS= ${PY_BOOST} STUDIO_USES= qt:5 -STUDIO_USE= QT=buildtools_build,qmake_build,concurrent,core,gui,opengl,widgets +STUDIO_USE= QT=buildtools:build,qmake:build,concurrent,core,gui,opengl,widgets STUDIO_CMAKE_OFF= -DWITH_STUDIO:BOOL=OFF STUDIO_IMPLIES= PYTHON diff --git a/graphics/cloudcompare/Makefile b/graphics/cloudcompare/Makefile index 83a4890dfbb35..ca1d9e58fc2d3 100644 --- a/graphics/cloudcompare/Makefile +++ b/graphics/cloudcompare/Makefile @@ -17,7 +17,7 @@ GH_ACCOUNT= CloudCompare GH_PROJECT= ${GH_ACCOUNT} GH_TUPLE= CloudCompare:CCCoreLib:f0d5450:CloudCompare/libs/qCC_db/extern/CCCoreLib -USE_QT= concurrent core gui opengl printsupport widgets buildtools_build qmake_build svg linguisttools_build +USE_QT= concurrent core gui opengl printsupport widgets buildtools:build qmake:build svg linguisttools:build USE_LDCONFIG= yes # PDAL support disabled ATM diff --git a/graphics/colmap/Makefile b/graphics/colmap/Makefile index 885c7c4488488..acc2e7ea3edfd 100644 --- a/graphics/colmap/Makefile +++ b/graphics/colmap/Makefile @@ -27,7 +27,7 @@ USES= cmake compiler:${OPENMP}c++11-lib eigen:3 gl localbase qt:5 \ sqlite USE_GITHUB= yes USE_GL= gl glew -USE_QT= qmake_build buildtools_build core gui opengl_build widgets +USE_QT= qmake:build buildtools:build core gui opengl:build widgets EXCLUDE= SQLite EXTRACT_AFTER_ARGS= ${EXCLUDE:S,^,--exclude lib/,} CMAKE_OFF= BOOST_STATIC CUDA_ENABLED diff --git a/graphics/converseen/Makefile b/graphics/converseen/Makefile index cd3c6dc76a3a0..9f9fd46050180 100644 --- a/graphics/converseen/Makefile +++ b/graphics/converseen/Makefile @@ -12,7 +12,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING USES= cmake compiler:c++11-lang magick:7 qt:5 tar:bzip2 USE_QT= core gui network widgets \ - buildtools_build linguisttools_build qmake_build + buildtools:build linguisttools:build qmake:build USE_GITHUB= yes GH_ACCOUNT= Faster3ck diff --git a/graphics/diffpdf/Makefile b/graphics/diffpdf/Makefile index cfc4e7f1f0d6e..c57ea715f5383 100644 --- a/graphics/diffpdf/Makefile +++ b/graphics/diffpdf/Makefile @@ -14,7 +14,7 @@ LIB_DEPENDS= libpoppler-qt5.so:graphics/poppler-qt5 USES= compiler:c++11-lang qmake qt:5 gl USE_GL= gl -USE_QT= buildtools linguist_build core gui printsupport widgets +USE_QT= buildtools linguist:build core gui printsupport widgets PLIST_FILES= bin/diffpdf diff --git a/graphics/digikam/Makefile b/graphics/digikam/Makefile index f9cb826df8293..0eb37e253ae89 100644 --- a/graphics/digikam/Makefile +++ b/graphics/digikam/Makefile @@ -43,8 +43,8 @@ USE_KDE= archive auth bookmarks calendarcore codecs completion config \ widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus declarative gui location network opengl \ printsupport sql webchannel widgets x11extras xml xmlpatterns \ - sql-sqlite3_run \ - buildtools_build qmake_build + sql-sqlite3:run \ + buildtools:build qmake:build USE_XORG= ice sm x11 xext USE_LDCONFIG= yes @@ -80,7 +80,7 @@ MEDIAPLAYER_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_FFmpeg \ CMAKE_DISABLE_FIND_PACKAGE_QtAV MYSQL_USES= mysql:server -MYSQL_USE= QT=sql-mysql_run +MYSQL_USE= QT=sql-mysql:run MYSQL_CMAKE_BOOL= ENABLE_INTERNALMYSQL \ ENABLE_MYSQLSUPPORT MYSQL_CMAKE_ON= -DMYSQLD_PATH:PATH=${LOCALBASE}/libexec \ diff --git a/graphics/dilay/Makefile b/graphics/dilay/Makefile index 4de0c7829c92f..e66e5650f250b 100644 --- a/graphics/dilay/Makefile +++ b/graphics/dilay/Makefile @@ -17,7 +17,7 @@ USE_GITHUB= yes GH_ACCOUNT= abau USE_CXXSTD= c++14 USE_GL= gl -USE_QT= core gui opengl widgets xml buildtools_build +USE_QT= core gui opengl widgets xml buildtools:build MAKE_JOBS_UNSAFE= yes # Workaround for: https://github.com/abau/dilay/issues/19 parallel build fails (still a problem despite having been closed) diff --git a/graphics/djview4/Makefile b/graphics/djview4/Makefile index 859ff13b18a24..cfe557137e427 100644 --- a/graphics/djview4/Makefile +++ b/graphics/djview4/Makefile @@ -21,7 +21,7 @@ USES= autoreconf desktop-file-utils gettext-runtime gl gmake gnome \ USE_GL= gl USE_GNOME= glib20 USE_QT= core gui network opengl printsupport widgets \ - buildtools_build linguisttools_build qmake_build + buildtools:build linguisttools:build qmake:build USE_XORG= sm ice xext xt GNU_CONFIGURE= yes diff --git a/graphics/drawpile/Makefile b/graphics/drawpile/Makefile index 9caf3f6b7c0fa..192807749beea 100644 --- a/graphics/drawpile/Makefile +++ b/graphics/drawpile/Makefile @@ -20,7 +20,7 @@ LIB_DEPENDS= libgif.so:graphics/giflib \ USES= cmake compiler:c++11-lang desktop-file-utils kde:5 pkgconfig qt:5 shared-mime-info USE_GITHUB= yes GH_ACCOUNT= ${PORTNAME:tl} -USE_QT= core gui multimedia network sql svg widgets buildtools_build linguisttools_build qmake_build +USE_QT= core gui multimedia network sql svg widgets buildtools:build linguisttools:build qmake:build USE_KDE= archive dnssd OPTIONS_DEFINE= DOCS diff --git a/graphics/dspdfviewer/Makefile b/graphics/dspdfviewer/Makefile index 4c0e607a497a1..0a4f3ab55f210 100644 --- a/graphics/dspdfviewer/Makefile +++ b/graphics/dspdfviewer/Makefile @@ -15,7 +15,7 @@ LIB_DEPENDS= libboost_program_options.so:devel/boost-libs \ libpoppler-qt5.so:graphics/poppler-qt5 USES= cmake:insource compiler:c++14-lang pkgconfig qt:5 -USE_QT= core gui linguisttools widgets xml buildtools_build qmake_build +USE_QT= core gui linguisttools widgets xml buildtools:build qmake:build USE_LDCONFIG= yes USE_GITHUB= yes diff --git a/graphics/dust3d/Makefile b/graphics/dust3d/Makefile index 6df3b8a9ed596..9e659bc32686f 100644 --- a/graphics/dust3d/Makefile +++ b/graphics/dust3d/Makefile @@ -23,7 +23,7 @@ LIB_DEPENDS= libgmp.so:math/gmp libmpfr.so:math/mpfr USES= compiler:c++14-lang gmake qt:5 USE_GITHUB= yes GH_ACCOUNT= huxingyi -USE_QT= buildtools_build linguisttools_build qmake_build \ +USE_QT= buildtools:build linguisttools:build qmake:build \ core gui network opengl widgets ALL_TARGET= all diff --git a/graphics/engauge-digitizer/Makefile b/graphics/engauge-digitizer/Makefile index 011e348df8ff6..534c8597c38c2 100644 --- a/graphics/engauge-digitizer/Makefile +++ b/graphics/engauge-digitizer/Makefile @@ -19,7 +19,7 @@ LIB_DEPENDS= libfftw3.so:math/fftw3 \ USES= compiler:c++11-lang desktop-file-utils gl pkgconfig qmake qt:5 # pkgconfig is for https://github.com/markummitchell/engauge-digitizer/issues/423 USE_GITHUB= yes GH_ACCOUNT= markummitchell -USE_QT= core gui printsupport sql xml widgets buildtools_build +USE_QT= core gui printsupport sql xml widgets buildtools:build USE_GL= gl CONFIGURE_ENV= OPENJPEG_INCLUDE=${PREFIX}/include/openjpeg-2.4 OPENJPEG_LIB=${PREFIX}/lib \ POPPLER_INCLUDE=${PREFIX}/include/poppler/qt5 POPPLER_LIB=${PREFIX}/lib @@ -30,7 +30,7 @@ CXXFLAGS+= `pkg-config --cflags libopenjp2` # workaround for https://github.com/ OPTIONS_DEFINE= NLS DOCS OPTIONS_SUB= yes -DOCS_USE= QT=help,linguist_build +DOCS_USE= QT=help,linguist:build do-patch-NLS-on: @${REINPLACE_CMD} -e 's|QCoreApplication::applicationDirPath () + "/translations",|"${DATADIR}/translations",|' ${WRKSRC}/src/Translator/TranslatorContainer.cpp diff --git a/graphics/eos-movrec/Makefile b/graphics/eos-movrec/Makefile index 1b423069e6874..2b96b3bfd5280 100644 --- a/graphics/eos-movrec/Makefile +++ b/graphics/eos-movrec/Makefile @@ -14,7 +14,7 @@ LIB_DEPENDS= libgphoto2.so:graphics/libgphoto2 USES= cmake compiler:c++11-lang dos2unix pkgconfig qt:5 tar:bzip2 DOS2UNIX_FILES= main.cpp -USE_QT= buildtools_build qmake_build core gui widgets +USE_QT= buildtools:build qmake:build core gui widgets ICON_SIZES= 16x16 32x32 128x128 256x256 512x512 diff --git a/graphics/epsonscan2/Makefile b/graphics/epsonscan2/Makefile index d4517181bedf5..2a261031b9661 100644 --- a/graphics/epsonscan2/Makefile +++ b/graphics/epsonscan2/Makefile @@ -33,7 +33,7 @@ RUN_DEPENDS= avahi-browse:net/avahi-app USES= cmake gettext-runtime gnome jpeg localbase qt:5 xorg USE_GNOME= glib20 USE_LDCONFIG= ${PREFIX}/lib/epsonscan2 -USE_QT= buildtools_build core gui qmake_build widgets +USE_QT= buildtools:build core gui qmake:build widgets USE_XORG= x11 xau xcb xdmcp EPSON_VERSION= 1.0.0.0 diff --git a/graphics/evolvotron/Makefile b/graphics/evolvotron/Makefile index c5ba88b04f742..f8a0c16ea774c 100644 --- a/graphics/evolvotron/Makefile +++ b/graphics/evolvotron/Makefile @@ -17,7 +17,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libboost_thread.so:devel/boost-libs USES= compiler:c++11-lib gl gnome python qmake qt:5 -USE_QT= core gui widgets xml buildtools_build +USE_QT= core gui widgets xml buildtools:build USE_GL= gl QMAKE_ARGS= VERSION_NUMBER="${PORTVERSION}" QMAKE_SOURCE_PATH= ${WRKSRC}/main.pro diff --git a/graphics/filmulator/Makefile b/graphics/filmulator/Makefile index ee682db9f0a3f..73958db359c47 100644 --- a/graphics/filmulator/Makefile +++ b/graphics/filmulator/Makefile @@ -22,7 +22,7 @@ LIB_DEPENDS= libcurl.so:ftp/curl \ USES= cmake jpeg libarchive pkgconfig qt:5 USE_GITHUB= yes -USE_QT= buildtools_build qmake_build core declarative gui \ +USE_QT= buildtools:build qmake:build core declarative gui \ network sql widgets GH_ACCOUNT= CarVac diff --git a/graphics/fracplanet/Makefile b/graphics/fracplanet/Makefile index 81615c71af941..5b41ee7c7e932 100644 --- a/graphics/fracplanet/Makefile +++ b/graphics/fracplanet/Makefile @@ -19,7 +19,7 @@ LIB_DEPENDS= libboost_program_options.so:devel/boost-libs USES= compiler:c++11-lang gl gnome qmake:outsource qt:5 USE_GL= gl glu QMAKE_ARGS= VERSION_NUMBER=${PORTVERSION} -USE_QT= buildtools_build core gui opengl +USE_QT= buildtools:build core gui opengl DESKTOP_ENTRIES= "Fracplanet" \ "" \ diff --git a/graphics/fractgen/Makefile b/graphics/fractgen/Makefile index 5d6612f363c29..7fb97bd7a0c97 100644 --- a/graphics/fractgen/Makefile +++ b/graphics/fractgen/Makefile @@ -12,7 +12,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING USES= compiler:c++11-lang tar:xz cmake qt:5 USE_QT= core xml widgets printsupport gui \ - buildtools_build qmake_build linguisttools_build + buildtools:build qmake:build linguisttools:build CMAKE_ARGS+= -DCMAKE_INSTALL_MANDIR=${PREFIX}/man diff --git a/graphics/fraqtive/Makefile b/graphics/fraqtive/Makefile index 1db3c0641fa7f..3c112f527d596 100644 --- a/graphics/fraqtive/Makefile +++ b/graphics/fraqtive/Makefile @@ -12,7 +12,7 @@ LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/COPYING USES= compiler:c++11-lang dos2unix gl qmake qt:5 -USE_QT= core gui opengl widgets xml buildtools_build +USE_QT= core gui opengl widgets xml buildtools:build USE_GL= gl glu USE_GITHUB= yes GH_ACCOUNT= mimecorg diff --git a/graphics/glaxnimate/Makefile b/graphics/glaxnimate/Makefile index a2902d318b4a7..86ed77b3f84c3 100644 --- a/graphics/glaxnimate/Makefile +++ b/graphics/glaxnimate/Makefile @@ -15,7 +15,7 @@ LIB_DEPENDS= libavcodec.so:multimedia/ffmpeg \ libpotrace.so:graphics/libpotrace USES= cmake compiler:c++17-lang gl libarchive python qt:5 -USE_QT= concurrent core gui network svg xml widgets buildtools_build linguisttools_build qmake_build uitools_build +USE_QT= concurrent core gui network svg xml widgets buildtools:build linguisttools:build qmake:build uitools:build USE_GL= gl USE_GITLAB= yes diff --git a/graphics/glbinding/Makefile b/graphics/glbinding/Makefile index ef0bfec3c4c69..158146c033b0f 100644 --- a/graphics/glbinding/Makefile +++ b/graphics/glbinding/Makefile @@ -11,7 +11,7 @@ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= cmake compiler:c++11-lang qt:5 -USE_QT= core gui widgets buildtools_build qmake_build +USE_QT= core gui widgets buildtools:build qmake:build USE_LDCONFIG= yes USE_GITHUB= yes diff --git a/graphics/gmic-qt/Makefile b/graphics/gmic-qt/Makefile index d744ab6188404..a4279dfe6252b 100644 --- a/graphics/gmic-qt/Makefile +++ b/graphics/gmic-qt/Makefile @@ -27,7 +27,7 @@ gimp_PKGNAMESUFFIX= -gimp USES= cmake compiler:c++14-lang pkgconfig qt:5 xorg USE_QT= core gui network widgets \ - buildtools_build linguisttools_build qmake_build + buildtools:build linguisttools:build qmake:build USE_XORG= ice sm x11 xext USE_GITHUB= yes diff --git a/graphics/gpxsee/Makefile b/graphics/gpxsee/Makefile index 40799e928e8d1..a838929cfdd7b 100644 --- a/graphics/gpxsee/Makefile +++ b/graphics/gpxsee/Makefile @@ -12,8 +12,8 @@ LICENSE_FILE= ${WRKSRC}/licence.txt USES= compiler:c++11-lang desktop-file-utils gl qmake:outsource \ qt:5 shared-mime-info -USE_QT= buildtools_build concurrent core gui network opengl printsupport \ - sql sql-sqlite3_run widgets +USE_QT= buildtools:build concurrent core gui network opengl printsupport \ + sql sql-sqlite3:run widgets USE_GL= gl USE_GITHUB= yes @@ -24,12 +24,12 @@ OPTIONS_DEFINE= MAPS NLS PBF TIFF OPTIONS_DEFAULT= MAPS PBF TIFF OPTIONS_SUB= yes MAPS_DESC= Install map definitions of some well known global map services -NLS_USE= QT=linguisttools_build +NLS_USE= QT=linguisttools:build NLS_USES= gettext-runtime PBF_DESC= Support for PBF vector maps PBF_RUN_DEPENDS= ${QT_PLUGINDIR}/imageformats/libpbf.so:graphics/qtpbfimageplugin TIFF_DESC= Support for GeoTIFF images -TIFF_USE= QT=imageformats_run +TIFF_USE= QT=imageformats:run pre-build-NLS-on: ( cd ${BUILD_WRKSRC} && ${LRELEASE} ${WRKSRC}/${PORTNAME}.pro ) diff --git a/graphics/gwenview/Makefile b/graphics/gwenview/Makefile index 7e7bc77098950..76984c3ebca97 100644 --- a/graphics/gwenview/Makefile +++ b/graphics/gwenview/Makefile @@ -23,10 +23,10 @@ USE_KDE= activities auth baloo bookmarks codecs completion config \ kdelibs4support kimageformats kio libkdcraw libkipi \ notifications parts service solid sonnet textwidgets \ widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus gui network opengl phonon4 printsupport \ svg widgets x11extras xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 OPTIONS_DEFINE= DOCS diff --git a/graphics/heimer/Makefile b/graphics/heimer/Makefile index 5818ce6eff9e1..28e4577ed6d3d 100644 --- a/graphics/heimer/Makefile +++ b/graphics/heimer/Makefile @@ -12,8 +12,8 @@ LICENSE_COMB= multi LICENSE_FILE_GPLv3+ = ${WRKSRC}/COPYING USES= cmake compiler:c++17-lang qt:5 -USE_QT= core gui network svg widgets xml buildtools_build \ - linguisttools_build qmake_build testlib_build +USE_QT= core gui network svg widgets xml buildtools:build \ + linguisttools:build qmake:build testlib:build TEST_TARGET= test PLIST_FILES= bin/heimer \ diff --git a/graphics/ikona/Makefile b/graphics/ikona/Makefile index 339f18cdd9b4c..1de8fb18a1288 100644 --- a/graphics/ikona/Makefile +++ b/graphics/ikona/Makefile @@ -22,7 +22,7 @@ USE_GNOME= cairo gdkpixbuf2 glib20 libxml2 pango USE_KDE= auth codecs config configwidgets coreaddons i18n \ kirigami2 widgetsaddons USE_QT= core declarative gui network widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build pre-configure: ${CP} ${DISTDIR}/${DISTNAME}.cargo.vendor${EXTRACT_SUFX} ${WRKSRC}/ikona.cargo.vendor.tar.xz diff --git a/graphics/ipe/Makefile b/graphics/ipe/Makefile index 280f896d912bd..d842224d27fdc 100644 --- a/graphics/ipe/Makefile +++ b/graphics/ipe/Makefile @@ -20,7 +20,7 @@ LIB_DEPENDS= libcurl.so:ftp/curl \ USES= compiler:c++11-lib gmake gnome jpeg lua:52 pkgconfig shebangfix qt:5 USE_GNOME= cairo -USE_QT= buildtools_build core gui qmake_build widgets +USE_QT= buildtools:build core gui qmake:build widgets USE_TEX= pdftex WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}/src diff --git a/graphics/kamera/Makefile b/graphics/kamera/Makefile index a3fc14943a9cd..73982ee92b53b 100644 --- a/graphics/kamera/Makefile +++ b/graphics/kamera/Makefile @@ -11,9 +11,9 @@ LIB_DEPENDS= libgphoto2.so:graphics/libgphoto2 USES= cmake compiler:c++11-lang gettext kde:5 localbase qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons doctools i18n \ kio service widgetsaddons xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus gui network widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build OPTIONS_DEFINE= DOCS diff --git a/graphics/kamerka/Makefile b/graphics/kamerka/Makefile index 410613795369f..0a6fcbe9426df 100644 --- a/graphics/kamerka/Makefile +++ b/graphics/kamerka/Makefile @@ -19,12 +19,12 @@ USES= cmake compiler:c++11-lang kde:5 qt:5 xorg USE_GITHUB= yes GH_ACCOUNT= dos1 USE_QT= concurrent core dbus declarative gui network printsupport script xml widgets \ - qmake_build buildtools_build + qmake:build buildtools:build USE_KDE= auth bookmarks codecs completion config configwidgets coreaddons crash \ guiaddons i18n iconthemes init itemviews jobwidgets kdeclarative kdelibs4support \ kio notifications package parts service solid sonnet textwidgets \ unitconversion xmlgui widgetsaddons windowsystem \ - doctools_build + doctools:build USE_XORG= x11 OPTIONS_DEFINE= NLS diff --git a/graphics/katarakt/Makefile b/graphics/katarakt/Makefile index bb04128bfba10..a8f7b1e68419a 100644 --- a/graphics/katarakt/Makefile +++ b/graphics/katarakt/Makefile @@ -14,7 +14,7 @@ BUILD_DEPENDS= a2x:textproc/asciidoc LIB_DEPENDS= libpoppler-qt5.so:graphics/poppler-qt5 USES= compiler:c++11-lang gl pkgconfig qmake qt:5 -USE_QT= buildtools_build core gui xml dbus network widgets +USE_QT= buildtools:build core gui xml dbus network widgets USE_GL= gl USE_GITLAB= yes diff --git a/graphics/kcolorchooser/Makefile b/graphics/kcolorchooser/Makefile index 0128a7ac391c4..1adc6835c39ac 100644 --- a/graphics/kcolorchooser/Makefile +++ b/graphics/kcolorchooser/Makefile @@ -9,9 +9,9 @@ WWW= https://www.kde.org/applications/graphics/kcolorchooser USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons i18n \ widgetsaddons xmlgui \ - ecm_build + ecm:build USE_QT= core dbus gui widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build OPTIONS_DEFINE= DOCS diff --git a/graphics/kcolorpicker/Makefile b/graphics/kcolorpicker/Makefile index 752657de8a3a4..8a00eb5e15dd4 100644 --- a/graphics/kcolorpicker/Makefile +++ b/graphics/kcolorpicker/Makefile @@ -15,7 +15,7 @@ USES= cmake compiler:c++11-lang qt:5 USE_GITHUB= yes GH_ACCOUNT= ksnip USE_QT= core gui widgets \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build CMAKE_ON= BUILD_SHARED_LIBS diff --git a/graphics/kdegraphics-mobipocket/Makefile b/graphics/kdegraphics-mobipocket/Makefile index 20949deb27362..708baf26dacce 100644 --- a/graphics/kdegraphics-mobipocket/Makefile +++ b/graphics/kdegraphics-mobipocket/Makefile @@ -9,9 +9,9 @@ WWW= https://www.kde.org USES= cmake compiler:c++11-lang kde:5 qt:5 tar:xz USE_KDE= completion config coreaddons jobwidgets kio service solid \ widgetsaddons windowsystem \ - ecm_build + ecm:build USE_QT= concurrent core dbus gui network widgets \ - buildtools_build qmake_build + buildtools:build qmake:build USE_LDCONFIG= yes diff --git a/graphics/kdegraphics-svgpart/Makefile b/graphics/kdegraphics-svgpart/Makefile index 56894932afa3e..cd4f8fbebeb22 100644 --- a/graphics/kdegraphics-svgpart/Makefile +++ b/graphics/kdegraphics-svgpart/Makefile @@ -11,9 +11,9 @@ USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz xorg USE_KDE= auth codecs completion config configwidgets coreaddons \ i18n jobwidgets kio parts service solid sonnet textwidgets \ widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus gui network svg widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 .include diff --git a/graphics/kdegraphics-thumbnailers/Makefile b/graphics/kdegraphics-thumbnailers/Makefile index 481fcbc4ae8e0..ce5e893e5a8da 100644 --- a/graphics/kdegraphics-thumbnailers/Makefile +++ b/graphics/kdegraphics-thumbnailers/Makefile @@ -11,9 +11,9 @@ LIB_DEPENDS= libqmobipocket.so:graphics/kdegraphics-mobipocket USES= cmake compiler:c++11-lang kde:5 qt:5 tar:xz xorg USE_KDE= archive completion config coreaddons jobwidgets libkdcraw \ libkexiv2 kio service solid widgetsaddons windowsystem \ - ecm_build + ecm:build USE_QT= concurrent core dbus gui network widgets \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 .include diff --git a/graphics/kdiagram/Makefile b/graphics/kdiagram/Makefile index c0960931cfa4e..4f28ba07404b8 100644 --- a/graphics/kdiagram/Makefile +++ b/graphics/kdiagram/Makefile @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.GPL.txt USES= cmake compiler:c++11-lang kde:5 qt:5 tar:xz USE_KDE= ecm USE_QT= core gui linguisttools printsupport sql svg widgets \ - buildtools_build qmake_build + buildtools:build qmake:build PLIST_SUB= SHLIB_VER="${PORTVERSION}" \ SHLIB_SHVER="${PORTVERSION:R:R}" diff --git a/graphics/kf5-kimageformats/Makefile b/graphics/kf5-kimageformats/Makefile index 9946f7000950e..0053b443cc137 100644 --- a/graphics/kf5-kimageformats/Makefile +++ b/graphics/kf5-kimageformats/Makefile @@ -10,9 +10,9 @@ LIB_DEPENDS= libImath.so:math/Imath USES= cmake compiler:c++11-lib kde:5 pkgconfig qt:5 tar:xz USE_KDE= archive \ - ecm_build + ecm:build USE_QT= core gui printsupport widgets \ - buildtools_build qmake_build + buildtools:build qmake:build CFLAGS+= -I${LOCALBASE}/include/Imath diff --git a/graphics/kf5-kplotting/Makefile b/graphics/kf5-kplotting/Makefile index bfdb5a340122c..46880d4dde927 100644 --- a/graphics/kf5-kplotting/Makefile +++ b/graphics/kf5-kplotting/Makefile @@ -6,8 +6,8 @@ MAINTAINER= kde@FreeBSD.org COMMENT= KF5 lightweight plotting framework USES= cmake compiler:c++11-lib kde:5 qt:5 tar:xz -USE_KDE= ecm_build +USE_KDE= ecm:build USE_QT= core gui uiplugin widgets \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build .include diff --git a/graphics/kf5-kquickcharts/Makefile b/graphics/kf5-kquickcharts/Makefile index 50aab5183f249..65ade3fa782f4 100644 --- a/graphics/kf5-kquickcharts/Makefile +++ b/graphics/kf5-kquickcharts/Makefile @@ -6,10 +6,10 @@ MAINTAINER= kde@FreeBSD.org COMMENT= KF5 QtQuick plugin providing high-performance charts USES= cmake compiler:c++11-lib kde:5 qt:5 tar:xz -USE_KDE= ecm_build \ - kirigami2_run +USE_KDE= ecm:build \ + kirigami2:run USE_QT= core declarative gui network quickcontrols2 \ - buildtools_build qmake_build \ - quickcontrols2_run + buildtools:build qmake:build \ + quickcontrols2:run .include diff --git a/graphics/kf5-prison/Makefile b/graphics/kf5-prison/Makefile index cf868b1d831f4..6ed2c128ff70f 100644 --- a/graphics/kf5-prison/Makefile +++ b/graphics/kf5-prison/Makefile @@ -10,8 +10,8 @@ LIB_DEPENDS= libdmtx.so:graphics/libdmtx \ libZXing.so:textproc/zxing-cpp USES= cmake compiler:c++11-lang kde:5 qt:5 tar:xz -USE_KDE= ecm_build +USE_KDE= ecm:build USE_QT= core declarative gui multimedia network widgets \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build .include diff --git a/graphics/kgeotag/Makefile b/graphics/kgeotag/Makefile index 8ccbbbf5295a0..7ae7a2b5c9827 100644 --- a/graphics/kgeotag/Makefile +++ b/graphics/kgeotag/Makefile @@ -12,10 +12,10 @@ LICENSE_FILE= ${WRKSRC}/LICENSES/LicenseRef-KDE-Accepted-GPL.txt USES= cmake compiler:c++17-lang kde:5 pkgconfig qt:5 tar:xz USE_QT= core gui widgets \ - buildtools_build linguist_build qmake_build + buildtools:build linguist:build qmake:build USE_KDE= coreaddons config configwidgets crash i18n libkexiv2 \ marble xmlgui \ - ecm_build + ecm:build # From stage-qa; these are not checked explicitly, but link # transitively though other KDE components (mostly Marble). USE_QT+= dbus declarative location network printsupport webchannel xml diff --git a/graphics/kgraphviewer/Makefile b/graphics/kgraphviewer/Makefile index 0f12d1fcc278a..eda34096a5089 100644 --- a/graphics/kgraphviewer/Makefile +++ b/graphics/kgraphviewer/Makefile @@ -20,9 +20,9 @@ USES= cmake compiler:c++11-lang desktop-file-utils kde:5 qt:5 tar:xz \ USE_KDE= auth codecs completion config configwidgets \ coreaddons i18n iconthemes jobwidgets kio parts service \ solid sonnet textwidgets widgetsaddons windowsystem xmlgui \ - ecm_build doctools_build + ecm:build doctools:build USE_QT= concurrent core dbus gui network printsupport svg widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 .include diff --git a/graphics/kimageannotator/Makefile b/graphics/kimageannotator/Makefile index f41b11d1a2734..5b0f79d204308 100644 --- a/graphics/kimageannotator/Makefile +++ b/graphics/kimageannotator/Makefile @@ -16,7 +16,7 @@ USES= cmake localbase compiler:c++11-lang qt:5 xorg USE_GITHUB= yes GH_ACCOUNT= ksnip USE_QT= core gui svg widgets \ - buildtools_build linguisttools_build qmake_build + buildtools:build linguisttools:build qmake:build USE_XORG= x11 CMAKE_ON= BUILD_SHARED_LIBS diff --git a/graphics/kimagemapeditor/Makefile b/graphics/kimagemapeditor/Makefile index 82f2d17204607..558ce0f6f81fc 100644 --- a/graphics/kimagemapeditor/Makefile +++ b/graphics/kimagemapeditor/Makefile @@ -14,7 +14,7 @@ USE_KDE= auth bookmarks codecs completion config configwidgets \ widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus declarative gui location network printsupport \ webchannel webengine widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 OPTIONS_DEFINE= DOCS diff --git a/graphics/kipi-plugins/Makefile b/graphics/kipi-plugins/Makefile index 4de79c49929b1..65e03f5339132 100644 --- a/graphics/kipi-plugins/Makefile +++ b/graphics/kipi-plugins/Makefile @@ -14,9 +14,9 @@ USES= cmake compiler:c++11-lib gettext kde:5 pkgconfig \ USE_KDE= kio libkipi solid archive auth bookmarks codecs completion \ config configwidgets coreaddons i18n itemviews jobwidgets \ service widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus gui network printsupport widgets xml xmlpatterns \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 OPTIONS_DEFINE= DOCS MEDIAWIKI KVKONTAKTE diff --git a/graphics/klatexformula/Makefile b/graphics/klatexformula/Makefile index de95d7bb8b8bf..e8a6a267933ec 100644 --- a/graphics/klatexformula/Makefile +++ b/graphics/klatexformula/Makefile @@ -16,8 +16,8 @@ USES= cmake compiler:c++11-lang desktop-file-utils ghostscript:run \ gl qt:5 shared-mime-info tar:bzip2 localbase USE_GL= gl USE_QT= core dbus gui sql svg widgets x11extras xml \ - buildtools_build designer_build linguisttools_build \ - qmake_build uitools_build + buildtools:build designer:build linguisttools:build \ + qmake:build uitools:build USE_TEX= latex dvipsk USE_LDCONFIG= yes diff --git a/graphics/knotter/Makefile b/graphics/knotter/Makefile index 696e69443d588..200bf7ba3267f 100644 --- a/graphics/knotter/Makefile +++ b/graphics/knotter/Makefile @@ -11,7 +11,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING USES= cmake compiler:c++11-lang desktop-file-utils gl qt:5 USE_QT= core gui network printsupport script svg xml widgets \ - buildtools_build linguisttools_build qmake_build uitools_build + buildtools:build linguisttools:build qmake:build uitools:build USE_GL= gl USE_GITLAB= yes diff --git a/graphics/kolourpaint/Makefile b/graphics/kolourpaint/Makefile index b904fa0b54acd..68a910ad13b8e 100644 --- a/graphics/kolourpaint/Makefile +++ b/graphics/kolourpaint/Makefile @@ -13,9 +13,9 @@ USE_KDE= auth bookmarks codecs completion config configwidgets \ itemmodels itemviews jobwidgets kdelibs4support kio libkexiv2 \ libksane notifications parts service solid sonnet textwidgets \ unitconversion widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= dbus concurrent core gui network printsupport widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 USE_LDCONFIG= yes diff --git a/graphics/kontrast/Makefile b/graphics/kontrast/Makefile index 9226feb299695..41ee6e6872cb2 100644 --- a/graphics/kontrast/Makefile +++ b/graphics/kontrast/Makefile @@ -9,9 +9,9 @@ WWW= https://apps.kde.org/en/kontrast USES= compiler:c++11-lang cmake pkgconfig \ kde:5 qt:5 tar:xz USE_KDE= coreaddons i18n kdeclarative kirigami2 \ - ecm_build + ecm:build USE_QT= core dbus declarative gui network quickcontrols2 sql svg widgets \ - buildtools_build qmake_build + buildtools:build qmake:build OPTIONS_DEFINE= DOCS diff --git a/graphics/kooka/Makefile b/graphics/kooka/Makefile index 1e2a76c48ef82..5d3eb78f17048 100644 --- a/graphics/kooka/Makefile +++ b/graphics/kooka/Makefile @@ -18,9 +18,9 @@ USES= cmake compiler:c++11-lang kde:5 pkgconfig qt:5 xorg USE_KDE= auth bookmarks codecs completion config configwidgets coreaddons \ ecm i18n iconthemes itemviews jobwidgets kio service solid sonnet \ textwidgets widgetsaddons windowsystem xmlgui \ - doctools_build + doctools:build USE_QT= concurrent core dbus gui network printsupport widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 KDE_INVENT= 3ed25fb9a1a62b88240a4f0f403b1ad49cf0adeb diff --git a/graphics/kphotoalbum/Makefile b/graphics/kphotoalbum/Makefile index 30eed415505d0..915566b87d163 100644 --- a/graphics/kphotoalbum/Makefile +++ b/graphics/kphotoalbum/Makefile @@ -23,7 +23,7 @@ USE_KDE= archive auth codecs completion config \ solid sonnet textwidgets widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus declarative gui location network phonon4 \ printsupport sql webchannel widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 SHEBANG_FILES= scripts/open-raw.pl scripts/kpa-backup.sh diff --git a/graphics/kqtquickcharts/Makefile b/graphics/kqtquickcharts/Makefile index 61406bc2181c6..eae5a57e5b999 100644 --- a/graphics/kqtquickcharts/Makefile +++ b/graphics/kqtquickcharts/Makefile @@ -12,7 +12,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING USES= cmake compiler:c++11-lang kde:5 qt:5 tar:xz USE_KDE= ecm USE_QT= core declarative network gui \ - buildtools_build qmake_build + buildtools:build qmake:build OPTIONS_DEFINE= DOCS diff --git a/graphics/kquickimageeditor/Makefile b/graphics/kquickimageeditor/Makefile index 3a6254d7c04c5..975d988b909b1 100644 --- a/graphics/kquickimageeditor/Makefile +++ b/graphics/kquickimageeditor/Makefile @@ -13,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSES/LGPL-2.1-or-later.txt USES= cmake compiler:c++17-lang gl kde:5 pkgconfig qt:5 tar:xz USE_GL= gl USE_QT= core declarative gui network quickcontrols2 \ - buildtools_build linguist_build qmake_build -USE_KDE= ecm_build + buildtools:build linguist:build qmake:build +USE_KDE= ecm:build .include diff --git a/graphics/krita/Makefile b/graphics/krita/Makefile index fedc24f673483..18574f8f46ea9 100644 --- a/graphics/krita/Makefile +++ b/graphics/krita/Makefile @@ -43,8 +43,8 @@ USES= cmake:noninja gmake compiler:c++11-lib desktop-file-utils \ USE_KDE= archive completion config coreaddons crash guiaddons i18n \ itemmodels itemviews kio service widgetsaddons windowsystem USE_QT= concurrent core dbus declarative gui multimedia network printsupport \ - sql svg testlib widgets x11extras xml sql-sqlite3_run \ - buildtools_build qmake_build + sql svg testlib widgets x11extras xml sql-sqlite3:run \ + buildtools:build qmake:build USE_XORG= ice sm xcb xext xi CMAKE_ARGS= -DCMAKE_DISABLE_FIND_PACKAGE_PyQt5:BOOL=true diff --git a/graphics/ksanecore/Makefile b/graphics/ksanecore/Makefile index 5ee3b659d1987..dfa3eb7118457 100644 --- a/graphics/ksanecore/Makefile +++ b/graphics/ksanecore/Makefile @@ -9,9 +9,9 @@ WWW= http://www.kipi-plugins.org LIB_DEPENDS= libsane.so:graphics/sane-backends USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz -USE_KDE= ecm_build +USE_KDE= ecm:build USE_QT= core gui widgets \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS diff --git a/graphics/kseexpr/Makefile b/graphics/kseexpr/Makefile index 7117a8670a972..b9c3215356589 100644 --- a/graphics/kseexpr/Makefile +++ b/graphics/kseexpr/Makefile @@ -13,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= bison cmake kde:5 qt:5 USE_KDE= ecm i18n USE_LDCONFIG= yes -USE_QT= core gui widgets buildtools_build linguisttools_build qmake_build +USE_QT= core gui widgets buildtools:build linguisttools:build qmake:build CONFLICTS_INSTALL= seexpr diff --git a/graphics/ksnip/Makefile b/graphics/ksnip/Makefile index 3e3b2342fabee..45759e6b4eeb8 100644 --- a/graphics/ksnip/Makefile +++ b/graphics/ksnip/Makefile @@ -16,10 +16,10 @@ LIB_DEPENDS= libkColorPicker.so:graphics/kcolorpicker \ USES= cmake compiler:c++11-lang desktop-file-utils kde:5 qt:5 xorg USE_GITHUB= yes -USE_KDE= ecm_build +USE_KDE= ecm:build USE_QT= concurrent core dbus gui network printsupport svg testlib \ widgets x11extras xml \ - buildtools_build linguisttools_build qmake_build + buildtools:build linguisttools:build qmake:build USE_XORG= x11 xcb PORTSCOUT= limit:^[0-9] diff --git a/graphics/kxstitch/Makefile b/graphics/kxstitch/Makefile index 094f090b19cad..10cfd2addc959 100644 --- a/graphics/kxstitch/Makefile +++ b/graphics/kxstitch/Makefile @@ -13,10 +13,10 @@ USES= cmake compiler:c++11-lang desktop-file-utils magick:6 kde:5 qt:5 tar:xz \ USE_KDE= auth bookmarks codecs completion config configwidgets coreaddons \ i18n itemviews jobwidgets kio service solid sonnet textwidgets \ widgetsaddons windowsystem xmlgui \ - doctools_build + doctools:build USE_QT= concurrent core dbus gui network printsupport widgets x11extras \ xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= ice sm x11 xext .include diff --git a/graphics/libQGLViewer/Makefile b/graphics/libQGLViewer/Makefile index ba6fc57da7f0f..e8662b18fe8e8 100644 --- a/graphics/libQGLViewer/Makefile +++ b/graphics/libQGLViewer/Makefile @@ -13,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/LICENCE USES= compiler:c++11-lang gl qmake qt:5 USE_GL= gl glu -USE_QT= core designer gui opengl widgets xml buildtools_build +USE_QT= core designer gui opengl widgets xml buildtools:build USE_LDCONFIG= yes PLIST_SUB= SHL3=${DISTVERSION} SHL2=${DISTVERSION:C/\.[0-9]$//} SHL1=${DISTVERSION:C/\.[0-9]\.[0-9]$//} diff --git a/graphics/libkdcraw/Makefile b/graphics/libkdcraw/Makefile index 0342317a8cdf1..8def6f6751831 100644 --- a/graphics/libkdcraw/Makefile +++ b/graphics/libkdcraw/Makefile @@ -16,7 +16,7 @@ LIB_DEPENDS= libjasper.so:graphics/jasper \ USES= cmake compiler:c++11-lang jpeg kde:5 pkgconfig qt:5 tar:xz USE_KDE= ecm USE_QT= core gui \ - buildtools_build qmake_build + buildtools:build qmake:build USE_LDCONFIG= yes CMAKE_ARGS= -DWITH_OpenMP:BOOL=False \ -DENABLE_RAWSPEED=True diff --git a/graphics/libkexiv2/Makefile b/graphics/libkexiv2/Makefile index 85b4a0e6f9068..9a9ff77564085 100644 --- a/graphics/libkexiv2/Makefile +++ b/graphics/libkexiv2/Makefile @@ -11,7 +11,7 @@ LIB_DEPENDS= libexiv2.so:graphics/exiv2 USES= cmake compiler:c++11-lang kde:5 pkgconfig qt:5 tar:xz USE_KDE= ecm USE_QT= core gui \ - buildtools_build qmake_build + buildtools:build qmake:build USE_LDCONFIG= yes .include diff --git a/graphics/libkipi/Makefile b/graphics/libkipi/Makefile index 4c139bc48eb42..5d06d5023f1b5 100644 --- a/graphics/libkipi/Makefile +++ b/graphics/libkipi/Makefile @@ -11,9 +11,9 @@ LICENSE= GPLv2+ USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons i18n \ libkdcraw libkexiv2 service widgetsaddons xmlgui \ - ecm_build + ecm:build USE_QT= core dbus gui widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_LDCONFIG= yes .include diff --git a/graphics/libksane/Makefile b/graphics/libksane/Makefile index 02df6c4e4ba55..3f514b4ac1b0c 100644 --- a/graphics/libksane/Makefile +++ b/graphics/libksane/Makefile @@ -11,9 +11,9 @@ LIB_DEPENDS= libsane.so:graphics/sane-backends \ USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= config i18n sonnet textwidgets wallet widgetsaddons \ - ecm_build + ecm:build USE_QT= core gui widgets \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS diff --git a/graphics/libprojectm/Makefile b/graphics/libprojectm/Makefile index 101ad04e0acfb..82e0075ca798c 100644 --- a/graphics/libprojectm/Makefile +++ b/graphics/libprojectm/Makefile @@ -46,13 +46,13 @@ OPTIONS_SUB= yes PULSEAUDIO_LIB_DEPENDS= libpulse.so:audio/pulseaudio PULSEAUDIO_USES= qt:5 -PULSEAUDIO_USE= qt=core,gui,opengl,widgets,xml,buildtools_build,qmake_build,linguisttools_build #qt=declarative,network,script,sensors,serialport,sql,xmlpatterns +PULSEAUDIO_USE= qt=core,gui,opengl,widgets,xml,buildtools:build,qmake:build,linguisttools:build #qt=declarative,network,script,sensors,serialport,sql,xmlpatterns PULSEAUDIO_CONFIGURE_ENABLE= pulseaudio PULSEAUDIO_CONFIGURE_ON= --enable-qt JACK_LIB_DEPENDS= libjack.so:audio/jack JACK_USES= qt:5 -JACK_USE= qt=core,gui,opengl,widgets,xml,buildtools_build,qmake_build,linguisttools_build #qt=declarative,network,script,sensors,serialport,sql,xmlpatterns +JACK_USE= qt=core,gui,opengl,widgets,xml,buildtools:build,qmake:build,linguisttools:build #qt=declarative,network,script,sensors,serialport,sql,xmlpatterns JACK_CONFIGURE_ENABLE= jack JACK_CONFIGURE_ON= --enable-qt diff --git a/graphics/luminance-qt5/Makefile b/graphics/luminance-qt5/Makefile index b7e745ad934bb..d155f7773189f 100644 --- a/graphics/luminance-qt5/Makefile +++ b/graphics/luminance-qt5/Makefile @@ -27,7 +27,7 @@ CFLAGS+= -I${LOCALBASE}/include/Imath USES= cmake desktop-file-utils eigen:3 jpeg pkgconfig qt:5 tar:bzip2 USE_QT= concurrent core declarative gui location network \ printsupport sql svg widgets xml \ - buildtools_build linguisttools_build qmake_build + buildtools:build linguisttools:build qmake:build OPTIONS_DEFINE= CFITSIO DOCS HELPBROWSER OPTIONS_DEFAULT= CFITSIO HELPBROWSER diff --git a/graphics/lximage-qt/Makefile b/graphics/lximage-qt/Makefile index 338054aaf1017..5ec2e60f604e9 100644 --- a/graphics/lximage-qt/Makefile +++ b/graphics/lximage-qt/Makefile @@ -16,7 +16,7 @@ USES= cmake compiler:c++14-lang desktop-file-utils gettext-runtime \ gnome localbase:ldflags lxqt pkgconfig qt:5 gnome tar:xz xorg USE_GNOME= glib20 -USE_QT= buildtools_build qmake_build core dbus gui linguisttools \ +USE_QT= buildtools:build qmake:build core dbus gui linguisttools \ network printsupport svg widgets x11extras USE_LXQT= buildtools libfmqt USE_XORG= ice sm x11 xcb xext xfixes diff --git a/graphics/mandelbulber/Makefile b/graphics/mandelbulber/Makefile index 65b9cc7b58726..85366bb277a18 100644 --- a/graphics/mandelbulber/Makefile +++ b/graphics/mandelbulber/Makefile @@ -23,7 +23,7 @@ GH_PROJECT= ${PORTNAME}2 USES= cmake compiler:c++11-lang gnome jpeg localbase:ldflags \ pkgconfig qt:5 USE_QT= core widgets network gui multimedia testlib concurrent \ - qmake_build buildtools_build uitools_build + qmake:build buildtools:build uitools:build CMAKE_SOURCE_PATH= ${WRKSRC}/mandelbulber2/cmake diff --git a/graphics/nomacs/Makefile b/graphics/nomacs/Makefile index a1109eccefdcc..276dbeab7ce60 100644 --- a/graphics/nomacs/Makefile +++ b/graphics/nomacs/Makefile @@ -22,7 +22,7 @@ LIB_DEPENDS= libexiv2.so:graphics/exiv2 \ USES= cmake compiler:c++11-lang cpe desktop-file-utils \ dos2unix pkgconfig qt:5 USE_QT= concurrent core gui network printsupport svg widgets \ - buildtools_build linguisttools_build qmake_build + buildtools:build linguisttools:build qmake:build DOS2UNIX_FILES= ImageLounge/plugins/PaintPlugin/src/DkPaintPlugin.cpp \ ImageLounge/src/DkGui/DkWidgets.cpp diff --git a/graphics/okular/Makefile b/graphics/okular/Makefile index 4856428cd3bd6..140d025600262 100644 --- a/graphics/okular/Makefile +++ b/graphics/okular/Makefile @@ -30,10 +30,10 @@ USE_KDE= activities archive auth bookmarks codecs completion config \ kdelibs4support khtml kio libkexiv2 parts pty \ service solid sonnet textwidgets threadweaver wallet \ widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus declarative gui network phonon4 printsupport speech \ svg widgets xml \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build USE_XORG= x11 OPTIONS_DEFINE= DOCS PURPOSE diff --git a/graphics/opencsg/Makefile b/graphics/opencsg/Makefile index 6ac07a53b9878..8d9e48a717193 100644 --- a/graphics/opencsg/Makefile +++ b/graphics/opencsg/Makefile @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/../license.txt USES= compiler:c++11-lang gl qmake qt:5 USE_GL= gl glesv2 glew -USE_QT= opengl qmake_build +USE_QT= opengl qmake:build WRKSRC= ${WRKDIR}/${DISTNAME}/src PLIST_SUB= PORTVERSION=${PORTVERSION} diff --git a/graphics/opencv/Makefile b/graphics/opencv/Makefile index a0bf5f6695c42..74fdb6a0aa908 100644 --- a/graphics/opencv/Makefile +++ b/graphics/opencv/Makefile @@ -125,7 +125,7 @@ VTK_DESC= Include VTK library support (build opencv_viz module) VTK_CMAKE_BOOL= WITH_VTK VTK_LIB_DEPENDS= libvtkCommonCore-9.1.so:math/vtk9 VTK_USES= qt:5 -VTK_USE= QT=buildtools_build,qmake_build +VTK_USE= QT=buildtools:build,qmake:build ### # IMAGE group options (GPHOTO2 JPEG OPENEXR PNG TIFF) diff --git a/graphics/openimageio/Makefile b/graphics/openimageio/Makefile index 0d9a0bfb2f731..d42db570fc8ec 100644 --- a/graphics/openimageio/Makefile +++ b/graphics/openimageio/Makefile @@ -29,7 +29,7 @@ LIB_DEPENDS= libboost_thread.so:devel/boost-libs \ USES= cmake jpeg compiler:c++14-lang iconv:wchar_t qt:5 -USE_QT+= buildtools_build qmake_build +USE_QT+= buildtools:build qmake:build USE_GITHUB= yes GH_ACCOUNT= OpenImageIO @@ -66,7 +66,7 @@ IMAGEVIEWER_USES= gl IMAGEVIEWER_IMPLIES= TOOLS IMAGEVIEWER_CMAKE_BOOL= USE_QT USE_OPENGL IMAGEVIEWER_USE= GL=gl,glu,glew \ - QT=buildtools,core,gui,opengl,qmake_build,widgets + QT=buildtools,core,gui,opengl,qmake:build,widgets OPENCV_CMAKE_BOOL= USE_OPENCV OPENCV_IMPLIES= OPENJPEG diff --git a/graphics/openorienteering-mapper/Makefile b/graphics/openorienteering-mapper/Makefile index b638c19f60fcd..57e8c53197a81 100644 --- a/graphics/openorienteering-mapper/Makefile +++ b/graphics/openorienteering-mapper/Makefile @@ -19,7 +19,7 @@ LIB_DEPENDS= libpolyclipping.so:graphics/polyclipping \ USES= cmake:noninja compiler:c++14-lang \ desktop-file-utils gmake qt:5 shared-mime-info -USE_QT= buildtools_build help qmake_build concurrent core gui \ +USE_QT= buildtools:build help qmake:build concurrent core gui \ network printsupport testlib widgets USE_GITHUB= yes GH_ACCOUNT= OpenOrienteering @@ -34,20 +34,20 @@ OPTIONS_DEFAULT= DOCS EXAMPLES GDAL NLS TIFF OPTIONS_SUB= yes DOCS_CMAKE_BOOL= Mapper_WITH_DOCS DOCS_BUILD_DEPENDS= doxygen:devel/doxygen -DOCS_USE= QT=assistant_run +DOCS_USE= QT=assistant:run EXAMPLES_CMAKE_BOOL= Mapper_WITH_EXAMPLES GDAL_DESC= Use the GDAL library GDAL_CMAKE_BOOL= Mapper_USE_GDAL GDAL_LIB_DEPENDS= libgdal.so:graphics/gdal NLS_CMAKE_BOOL= Mapper_WITH_NLS -NLS_USE= QT=linguisttools_build +NLS_USE= QT=linguisttools:build NLS_USES= gettext-runtime POSITIONING_DESC= GPS positioning POSITIONING_CMAKE_ON= -DCMAKE_DISABLE_FIND_PACKAGE_Qt5Positioning=0 -DCMAKE_DISABLE_FIND_PACKAGE_Qt5Sensors=0 -DCMAKE_DISABLE_FIND_PACKAGE_Qt5SerialPort=0 POSITIONING_CMAKE_OFF= -DCMAKE_DISABLE_FIND_PACKAGE_Qt5Positioning=1 -DCMAKE_DISABLE_FIND_PACKAGE_Qt5Sensors=1 -DCMAKE_DISABLE_FIND_PACKAGE_Qt5SerialPort=1 POSITIONING_USE= QT=location,sensors,serialport TEST_CMAKE_BOOL= Mapper_WITH_TEST -TEST_USE= QT=testlib_build +TEST_USE= QT=testlib:build TEST_TEST_TARGET= test TIFF_DESC= Support for TIFF TIFF_USE= QT=imageformats diff --git a/graphics/openshadinglanguage/Makefile b/graphics/openshadinglanguage/Makefile index a1cc51afed09c..d07be4eddb9a6 100644 --- a/graphics/openshadinglanguage/Makefile +++ b/graphics/openshadinglanguage/Makefile @@ -24,7 +24,7 @@ RUN_DEPENDS= llvm-config${LLVM_VER}:devel/llvm${LLVM_VER} USES= bison cmake compiler:c++14-lang localbase ncurses qt:5 -USE_QT= buildtools_build qmake_build +USE_QT= buildtools:build qmake:build USE_GITHUB= yes GH_ACCOUNT= AcademySoftwareFoundation @@ -45,7 +45,7 @@ MATERIALX_CMAKE_BOOL= OSL_BUILD_MATERIALX OSLTOY_DESC= Interactive shader edit and visualize tool OSLTOY_CMAKE_BOOL= USE_QT -OSLTOY_USE= QT=buildtools_build,core,gui,qmake_build,widgets +OSLTOY_USE= QT=buildtools:build,core,gui,qmake:build,widgets #CXXFLAGS+= -I${STAGEDIR}/include diff --git a/graphics/osg34/Makefile b/graphics/osg34/Makefile index 22b23030289d1..72d7a25e3490e 100644 --- a/graphics/osg34/Makefile +++ b/graphics/osg34/Makefile @@ -94,7 +94,7 @@ PDF_USE= gnome=cairo PDF_VARS= FORCE_REQUIRE+=Poppler-glib PDF_VARS_OFF= FORCE_IGNORE+=Poppler-glib QT5_USES= qt:5 -QT5_USE= qt=buildtools_build,core,gui,opengl,qmake_build,webkit,widgets +QT5_USE= qt=buildtools:build,core,gui,opengl,qmake:build,webkit,widgets QT5_CMAKE_ON= -DDESIRED_QT_VERSION=5 QT5_VARS= FORCE_REQUIRE+="Qt5Widgets Qt5WebKitWidgets" QT5_VARS_OFF= FORCE_IGNORE+="Qt5Widgets Qt5WebKitWidgets" diff --git a/graphics/ospray/Makefile b/graphics/ospray/Makefile index 913382b869dd4..5695f67632bd1 100644 --- a/graphics/ospray/Makefile +++ b/graphics/ospray/Makefile @@ -24,7 +24,7 @@ LIB_DEPENDS= libbenchmark.so:devel/benchmark \ USES= cmake:testing compiler:c++11-lang gl pkgconfig readline qt:5 USE_GITHUB= yes USE_GL= gl glu -USE_QT= core gui opengl qmake_build +USE_QT= core gui opengl qmake:build USE_LDCONFIG= yes PLIST_SUB= VERSION=${PORTVERSION} diff --git a/graphics/oyranos/Makefile b/graphics/oyranos/Makefile index 4ef95681ed3c6..dbfdd7bb6e641 100644 --- a/graphics/oyranos/Makefile +++ b/graphics/oyranos/Makefile @@ -34,7 +34,7 @@ USE_GL= gl USE_LDCONFIG= yes USE_GNOME= libxml2 USE_QT= core gui widgets x11extras \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= ice sm x11 xcursor xext xfixes xinerama xrandr xrender xft xxf86vm CMAKE_ARGS+= -DXDG_CONFIG_DIR=${PREFIX}/etc/xdg LDFLAGS+= -L${LOCALBASE}/lib ${ICONV_LIB} diff --git a/graphics/pcl-pointclouds/Makefile b/graphics/pcl-pointclouds/Makefile index 270205e11a786..00511605899e6 100644 --- a/graphics/pcl-pointclouds/Makefile +++ b/graphics/pcl-pointclouds/Makefile @@ -79,7 +79,7 @@ QT5_BROKEN= WITH_QT doesn't do anything, should be used by apps, but apps is al VTK_DESC= Build VTK visualizations VTK_USES= gl qt:5 -VTK_USE= GL=gl,glu QT=core,gui,opengl,widgets,buildtools_build,qmake_build +VTK_USE= GL=gl,glu QT=core,gui,opengl,widgets,buildtools:build,qmake:build VTK_CMAKE_BOOL= WITH_VTK VTK_CMAKE_ON= -DVTK_DIR=${LOCALBASE}/lib/cmake/vtk-9.1 VTK_LIB_DEPENDS= libvtkCommonCore-9.1.so:math/vtk9 diff --git a/graphics/pencil2d/Makefile b/graphics/pencil2d/Makefile index 2e455d1279a5f..3dc041609b7bc 100644 --- a/graphics/pencil2d/Makefile +++ b/graphics/pencil2d/Makefile @@ -15,7 +15,7 @@ RUN_DEPENDS= ffmpeg:multimedia/ffmpeg USES= compiler:c++11-lang desktop-file-utils gl gmake qmake qt:5 \ shared-mime-info -USE_QT= core gui multimedia svg testlib widgets xml xmlpatterns buildtools_build +USE_QT= core gui multimedia svg testlib widgets xml xmlpatterns buildtools:build USE_GL= gl USE_GITHUB= yes diff --git a/graphics/peruse/Makefile b/graphics/peruse/Makefile index bc2a72806f7e8..885e3a25f86ac 100644 --- a/graphics/peruse/Makefile +++ b/graphics/peruse/Makefile @@ -16,7 +16,7 @@ USE_KDE= archive attica baloo completion config coreaddons crash ecm \ kdeclarative kio newstuff package service solid \ widgetsaddons windowsystem USE_QT= concurrent core dbus declarative gui network opengl sql widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 .include diff --git a/graphics/pfstools/Makefile b/graphics/pfstools/Makefile index 84e6dad321047..9456783e0ee84 100644 --- a/graphics/pfstools/Makefile +++ b/graphics/pfstools/Makefile @@ -86,7 +86,7 @@ GLVIEW_USE= GL=glut GL=gl,glu VIEW_CMAKE_BOOL= WITH_QT VIEW_USES= gl qt:5 -VIEW_USE= GL=glut GL=gl,glu QT=core,gui,widgets,buildtools_build,qmake_build +VIEW_USE= GL=glut GL=gl,glu QT=core,gui,widgets,buildtools:build,qmake:build .include diff --git a/graphics/photivo/Makefile b/graphics/photivo/Makefile index ecb488232f5e4..82fc7d296cb54 100644 --- a/graphics/photivo/Makefile +++ b/graphics/photivo/Makefile @@ -23,7 +23,7 @@ LIB_DEPENDS= liblcms2.so:graphics/lcms2 \ USES= cmake compiler:c++11-lib desktop-file-utils dos2unix \ gettext-runtime gnome jpeg pkgconfig qt:5 zip USE_GNOME= glib20 -USE_QT= qmake_build buildtools_build core gui network widgets +USE_QT= qmake:build buildtools:build core gui network widgets DOS2UNIX_FILES= Sources/ptImage.cpp Sources/ptCheck.cpp Sources/filemgmt/ptFileMgrWindow.h \ Sources/ptImageHelper.h Sources/ptMainWindow.h Sources/ptImageHelper.cpp diff --git a/graphics/photoflare/Makefile b/graphics/photoflare/Makefile index 9537a14349a9f..0d69eefbb0d81 100644 --- a/graphics/photoflare/Makefile +++ b/graphics/photoflare/Makefile @@ -14,7 +14,7 @@ LIB_DEPENDS= libGraphicsMagick++.so:graphics/GraphicsMagick USES= desktop-file-utils gl qmake qt:5 localbase pkgconfig USE_GITHUB= yes -USE_QT= core gui network printsupport widgets buildtools_build linguisttools_build +USE_QT= core gui network printsupport widgets buildtools:build linguisttools:build USE_GL= gl CXXFLAGS+= `pkg-config --cflags GraphicsMagick++` diff --git a/graphics/photoqt/Makefile b/graphics/photoqt/Makefile index 78a2d38a48928..5998817aaa147 100644 --- a/graphics/photoqt/Makefile +++ b/graphics/photoqt/Makefile @@ -15,7 +15,7 @@ USES= cmake compiler:c++11-lib desktop-file-utils \ localbase:ldflags qt:5 USE_QT= core declarative graphicaleffects gui multimedia network \ quickcontrols sql svg widgets xml \ - buildtools_build linguisttools_build qmake_build + buildtools:build linguisttools:build qmake:build USE_GITHUB= yes GH_ACCOUNT= luspi diff --git a/graphics/phototonic/Makefile b/graphics/phototonic/Makefile index d92eb03909d83..c6b50a3d3510f 100644 --- a/graphics/phototonic/Makefile +++ b/graphics/phototonic/Makefile @@ -17,7 +17,7 @@ USES= compiler:c++11-lang desktop-file-utils gettext gl qmake qt:5 USE_GITHUB= yes GH_ACCOUNT= oferkv USE_GL= gl -USE_QT= core gui imageformats svg widgets buildtools_build +USE_QT= core gui imageformats svg widgets buildtools:build post-patch: ${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g' \ diff --git a/graphics/poppler/Makefile b/graphics/poppler/Makefile index b2a866cd60635..0cc339caae21e 100644 --- a/graphics/poppler/Makefile +++ b/graphics/poppler/Makefile @@ -79,7 +79,7 @@ BINARY_ALIAS+= python3=${PYTHON_CMD} . elif ${_SLAVE_PORT} == qt5 USES+= qt:5 USE_QT= core gui widgets xml \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build . elif ${_SLAVE_PORT} == qt6 USES+= gl qt:6 USE_GL+= gl opengl diff --git a/graphics/py-python-poppler-qt5/Makefile b/graphics/py-python-poppler-qt5/Makefile index 764a140a52291..10b0fdbfddf2f 100644 --- a/graphics/py-python-poppler-qt5/Makefile +++ b/graphics/py-python-poppler-qt5/Makefile @@ -19,7 +19,7 @@ USES= compiler:c++11-lang gl pkgconfig pyqt:5 python:3.7-3.9 qt:5 USE_GITHUB= yes GH_ACCOUNT= frescobaldi USE_GL= gl -USE_PYQT= pyqt5 sip_build +USE_PYQT= pyqt5 sip:build USE_PYTHON= flavors USE_QT= core gui xml diff --git a/graphics/py-traitsui/Makefile b/graphics/py-traitsui/Makefile index 5ecbdbf9c0acf..59221eb2ce589 100644 --- a/graphics/py-traitsui/Makefile +++ b/graphics/py-traitsui/Makefile @@ -33,7 +33,7 @@ WXPYTHON_DESC= wxPython backend PYSIDE_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pyside2>=0:devel/pyside2@${PY_FLAVOR} QT5_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pygments>=0:textproc/py-pygments@${PY_FLAVOR} QT5_USES= pyqt:5 -QT5_USE= PYQT=pyqt5_run +QT5_USE= PYQT=pyqt5:run WXPYTHON_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}wxPython41>0:x11-toolkits/py-wxPython4@${PY_FLAVOR} .include diff --git a/graphics/qcomicbook/Makefile b/graphics/qcomicbook/Makefile index 9f907f59c681f..dd2fa4f3782fb 100644 --- a/graphics/qcomicbook/Makefile +++ b/graphics/qcomicbook/Makefile @@ -15,7 +15,7 @@ USES= cmake compiler:c++11-lang pkgconfig qt:5 USE_GITHUB= yes GH_ACCOUNT= stolowski USE_QT= core gui printsupport widgets x11extras\ - buildtools_build linguisttools_build qmake_build + buildtools:build linguisttools:build qmake:build OPTIONS_DEFINE= 7ZIP ACE RAR diff --git a/graphics/qcustomplot-qt5/Makefile b/graphics/qcustomplot-qt5/Makefile index 561e96070cd0f..3b65838a4b466 100644 --- a/graphics/qcustomplot-qt5/Makefile +++ b/graphics/qcustomplot-qt5/Makefile @@ -14,7 +14,7 @@ LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/GPL.txt USES= compiler:c++11-lang pkgconfig qt:5 -USE_QT= core gui widgets printsupport buildtools_build +USE_QT= core gui widgets printsupport buildtools:build USE_LDCONFIG= yes WRKSRC= ${WRKDIR}/${PORTNAME} diff --git a/graphics/qgis-ltr/Makefile b/graphics/qgis-ltr/Makefile index ae241fa68d5bd..9c5f21144e974 100644 --- a/graphics/qgis-ltr/Makefile +++ b/graphics/qgis-ltr/Makefile @@ -106,10 +106,10 @@ USE_GL= gl USE_GNOME= libxml2 USE_LDCONFIG= yes USE_PYQT= pyqt5 qscintilla2 pysip sip -USE_QT= 3d buildtools_build core concurrent dbus declarative \ - designer_build qdoc_build gamepad gui linguist_build location \ - network printsupport qmake_build script serialport \ - sql sql-pgsql sql-sqlite3 svg uitools_build \ +USE_QT= 3d buildtools:build core concurrent dbus declarative \ + designer:build qdoc:build gamepad gui linguist:build location \ + network printsupport qmake:build script serialport \ + sql sql-pgsql sql-sqlite3 svg uitools:build \ webengine webkit widgets xml SHEBANG_FILES= src/plugins/grass/scripts/*.py diff --git a/graphics/qgis/Makefile b/graphics/qgis/Makefile index 06423e3dac5f8..7d7d523fafc5f 100644 --- a/graphics/qgis/Makefile +++ b/graphics/qgis/Makefile @@ -104,10 +104,10 @@ USE_GL= gl USE_GNOME= libxml2 USE_LDCONFIG= yes USE_PYQT= pyqt5 qscintilla2 pysip sip -USE_QT= 3d buildtools_build core concurrent dbus declarative \ - designer_build qdoc_build gamepad gui linguist_build location \ - network printsupport qmake_build script serialport \ - sql sql-pgsql sql-sqlite3 svg uitools_build \ +USE_QT= 3d buildtools:build core concurrent dbus declarative \ + designer:build qdoc:build gamepad gui linguist:build location \ + network printsupport qmake:build script serialport \ + sql sql-pgsql sql-sqlite3 svg uitools:build \ webengine webkit widgets xml SHEBANG_FILES= src/plugins/grass/scripts/*.py diff --git a/graphics/qt5-3d/Makefile b/graphics/qt5-3d/Makefile index 0a09c659616b5..2feaafa75395e 100644 --- a/graphics/qt5-3d/Makefile +++ b/graphics/qt5-3d/Makefile @@ -11,7 +11,7 @@ LIB_DEPENDS= libassimp.so:multimedia/assimp USES= compiler:c++11-lang perl5 pkgconfig qmake:norecursive qt-dist:5,3d USE_PERL5= extract -USE_QT= concurrent core declarative gui network buildtools_build +USE_QT= concurrent core declarative gui network buildtools:build OPTIONS_DEFINE_amd64= AVX OPTIONS_DEFINE_i386= AVX diff --git a/graphics/qt5-graphicaleffects/Makefile b/graphics/qt5-graphicaleffects/Makefile index 8da4ad88ab9ae..f897e1197f93c 100644 --- a/graphics/qt5-graphicaleffects/Makefile +++ b/graphics/qt5-graphicaleffects/Makefile @@ -9,6 +9,6 @@ COMMENT= Qt Quick graphical effects BROKEN_armv6= fails to install: pkg-static: Unable to access file DropShadowBase.qmlc: No such file or directory USES= compiler:c++11-lang qmake qt-dist:5,graphicaleffects -USE_QT= buildtools_build core declarative gui +USE_QT= buildtools:build core declarative gui .include diff --git a/graphics/qt5-imageformats/Makefile b/graphics/qt5-imageformats/Makefile index b162cc84f5640..9ed2948a12a98 100644 --- a/graphics/qt5-imageformats/Makefile +++ b/graphics/qt5-imageformats/Makefile @@ -13,6 +13,6 @@ LIB_DEPENDS= libjasper.so:graphics/jasper \ libwebp.so:graphics/webp USES= compiler:c++11-lang localbase qmake qt-dist:5,imageformats -USE_QT= core gui buildtools_build +USE_QT= core gui buildtools:build .include diff --git a/graphics/qt5-opengl/Makefile b/graphics/qt5-opengl/Makefile index 5194184c2245e..8769038a9b312 100644 --- a/graphics/qt5-opengl/Makefile +++ b/graphics/qt5-opengl/Makefile @@ -9,7 +9,7 @@ COMMENT= Qt 5-compatible OpenGL support module USES= compiler:c++11-lang gl perl5 qmake:no_env qt-dist:5,base USE_GL= gl USE_PERL5= extract -USE_QT= core gui widgets qmake_build buildtools_build +USE_QT= core gui widgets qmake:build buildtools:build HAS_CONFIGURE= yes BUILD_WRKSRC= ${WRKSRC}/src/${PORTNAME} diff --git a/graphics/qt5-pixeltool/Makefile b/graphics/qt5-pixeltool/Makefile index 8c8c280adb745..d6dd54ea24162 100644 --- a/graphics/qt5-pixeltool/Makefile +++ b/graphics/qt5-pixeltool/Makefile @@ -7,7 +7,7 @@ MAINTAINER= kde@FreeBSD.org COMMENT= Qt 5 screen magnifier USES= compiler:c++11-lang qmake qt-dist:5,tools -USE_QT= core gui widgets buildtools_build +USE_QT= core gui widgets buildtools:build # qt5logo.png is installed by qt5-widgets. DESKTOP_ENTRIES="Qt 5 PixelTool" "" \ diff --git a/graphics/qt5-svg/Makefile b/graphics/qt5-svg/Makefile index a30943019569d..7d9c78463ff85 100644 --- a/graphics/qt5-svg/Makefile +++ b/graphics/qt5-svg/Makefile @@ -7,6 +7,6 @@ MAINTAINER= kde@FreeBSD.org COMMENT= Qt SVG support module USES= compiler:c++11-lang qmake qt-dist:5,svg -USE_QT= core gui widgets buildtools_build +USE_QT= core gui widgets buildtools:build .include diff --git a/graphics/qt5-wayland/Makefile b/graphics/qt5-wayland/Makefile index 93ffcacbfa271..18a78b46a0281 100644 --- a/graphics/qt5-wayland/Makefile +++ b/graphics/qt5-wayland/Makefile @@ -18,7 +18,7 @@ USES= compiler:c++11-lang gl gnome pkgconfig qmake:norecursive \ USE_GL= egl gl USE_GNOME= glib20 USE_QT= core dbus gui declarative \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 xcomposite QT_BINARIES= yes diff --git a/graphics/qtawesome/Makefile b/graphics/qtawesome/Makefile index c2f59ce220e83..850f977d0cb3a 100644 --- a/graphics/qtawesome/Makefile +++ b/graphics/qtawesome/Makefile @@ -11,7 +11,7 @@ LICENSE= MIT USE_GITHUB= yes USES= compiler:c++11-lang qmake qt:5 -USE_QT= core gui qmake_build buildtools_build +USE_QT= core gui qmake:build buildtools:build GH_ACCOUNT= gamecreature GH_PROJECT= QtAwesome diff --git a/graphics/qtpbfimageplugin/Makefile b/graphics/qtpbfimageplugin/Makefile index 268e7535a1d60..a738871adeb9b 100644 --- a/graphics/qtpbfimageplugin/Makefile +++ b/graphics/qtpbfimageplugin/Makefile @@ -13,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libprotobuf-lite.so:devel/protobuf USES= compiler:c++11-lang gl qmake qt:5 -USE_QT= core gui buildtools_build +USE_QT= core gui buildtools:build USE_GL= gl USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} diff --git a/graphics/qtqr/Makefile b/graphics/qtqr/Makefile index b5d46890aa69e..483601c4a585e 100644 --- a/graphics/qtqr/Makefile +++ b/graphics/qtqr/Makefile @@ -18,7 +18,7 @@ RUN_DEPENDS= ${PYNUMPY} \ ${PYTHON_PKGNAMEPREFIX}zbar-py>=1.0.4:graphics/py-zbar-py@${PY_FLAVOR} USES= desktop-file-utils pyqt:5 python:3.6+ shebangfix -USE_PYQT= pyqt5_run +USE_PYQT= pyqt5:run USE_PYTHON= autoplist distutils SHEBANG_FILES= qtqr.py diff --git a/graphics/quickqanava/Makefile b/graphics/quickqanava/Makefile index 34420fe765e43..24663c6eb4806 100644 --- a/graphics/quickqanava/Makefile +++ b/graphics/quickqanava/Makefile @@ -11,7 +11,7 @@ LICENSE_FILE= ${WRKSRC}/licence.txt USES= cmake compiler:c++14-lang qt:5 USE_QT= core declarative gui network quickcontrols2 \ - buildtools_build qmake_build + buildtools:build qmake:build USE_GITHUB= yes GH_ACCOUNT= cneben diff --git a/graphics/qvge/Makefile b/graphics/qvge/Makefile index a83804ba07791..c6005ffcdc0aa 100644 --- a/graphics/qvge/Makefile +++ b/graphics/qvge/Makefile @@ -17,7 +17,7 @@ GH_ACCOUNT= ArsMasiuk USES= compiler:c++11-lang desktop-file-utils gl qt:5 \ shared-mime-info xorg USE_GL= gl -USE_QT= buildtools_build qmake_build core gui network opengl \ +USE_QT= buildtools:build qmake:build core gui network opengl \ printsupport svg widgets x11extras xml USE_XORG= x11 diff --git a/graphics/rapid-photo-downloader/Makefile b/graphics/rapid-photo-downloader/Makefile index 32d7d8a69c3d3..0c5940d8d3bea 100644 --- a/graphics/rapid-photo-downloader/Makefile +++ b/graphics/rapid-photo-downloader/Makefile @@ -36,7 +36,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}arrow>0:devel/py-arrow@${PY_FLAVOR} \ USES= desktop-file-utils gettext pyqt:5 python:3.6+ qt:5 USE_PYTHON= autoplist distutils noflavors -USE_QT= imageformats_run +USE_QT= imageformats:run USE_PYQT= pyqt5 sip BINARY_ALIAS= python3=${PYTHON_VERSION} diff --git a/graphics/scantailor/Makefile b/graphics/scantailor/Makefile index b8671e71e46c9..c2948af8fb8e8 100644 --- a/graphics/scantailor/Makefile +++ b/graphics/scantailor/Makefile @@ -20,8 +20,8 @@ USES= cmake compiler:c++11-lang desktop-file-utils jpeg qt:5 \ shared-mime-info xorg USE_CXXSTD= gnu++98 USE_GITHUB= yes -USE_QT= core gui network opengl widgets xml buildtools_build \ - linguisttools_build qmake_build +USE_QT= core gui network opengl widgets xml buildtools:build \ + linguisttools:build qmake:build USE_XORG+= xrender GH_ACCOUNT= 4lex4 diff --git a/graphics/seexpr/Makefile b/graphics/seexpr/Makefile index a2dd369413c00..3e6589805fae6 100644 --- a/graphics/seexpr/Makefile +++ b/graphics/seexpr/Makefile @@ -16,7 +16,7 @@ LIB_DEPENDS= libpng.so:graphics/png USES= bison cmake compiler:c++14-lang gl qt:5 USE_GL= gl glu USE_LDCONFIG= yes -USE_QT= buildtools_build qmake_build core gui opengl widgets +USE_QT= buildtools:build qmake:build core gui opengl widgets MAKE_JOBS_UNSAFE= yes # https://github.com/wdas/seexpr/issues/40 @@ -38,7 +38,7 @@ LLVM_LIB_DEPENDS= libLLVM.so:devel/llvm${LLVM_DEFAULT} LLVM_CMAKE_OFF= -DENABLE_LLVM_BACKEND:BOOL=FALSE NLS_USES= kde:5 -NLS_USE= KDE=ecm_build +NLS_USE= KDE=ecm:build NLS_CMAKE_OFF= -DBUILD_TRANSLATIONS:BOOL=FALSE PYTHON_BUILD_DEPENDS= sip:devel/py-sip4 diff --git a/graphics/showimage/Makefile b/graphics/showimage/Makefile index 7c17ad031dc2e..a6e1299e7ff9b 100644 --- a/graphics/showimage/Makefile +++ b/graphics/showimage/Makefile @@ -16,9 +16,9 @@ USES= cmake compiler:c++11-lang kde:5 qt:5 tar:bzip2 xorg USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons ecm i18n itemviews jobwidgets kio service solid \ widgetsaddons windowsystem xmlgui \ - doctools_build + doctools:build USE_QT= concurrent core dbus gui network xml widgets \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 .include diff --git a/graphics/skanlite/Makefile b/graphics/skanlite/Makefile index 149affe0e2d15..910e80110bedc 100644 --- a/graphics/skanlite/Makefile +++ b/graphics/skanlite/Makefile @@ -15,9 +15,9 @@ USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz xorg USE_KDE= auth config configwidgets codecs completion \ coreaddons i18n jobwidgets kio \ service solid widgetsaddons windowsystem xmlgui \ - doctools_build ecm_build + doctools:build ecm:build USE_QT= core concurrent dbus gui network widgets xml \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build USE_XORG= x11 .include diff --git a/graphics/skanpage/Makefile b/graphics/skanpage/Makefile index 1ca67b82fe284..a61ec03e68ddd 100644 --- a/graphics/skanpage/Makefile +++ b/graphics/skanpage/Makefile @@ -17,9 +17,9 @@ USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth config configwidgets codecs completion \ coreaddons crash i18n jobwidgets kio kirigami2 purpose \ service widgetsaddons xmlgui \ - doctools_build ecm_build + doctools:build ecm:build USE_QT= core concurrent dbus declarative gui network printsupport \ quickcontrols2 widgets xml \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build .include diff --git a/graphics/spectacle/Makefile b/graphics/spectacle/Makefile index 2a99ab4f38848..1a9873b6986d7 100644 --- a/graphics/spectacle/Makefile +++ b/graphics/spectacle/Makefile @@ -17,10 +17,10 @@ USE_KDE= attica auth codecs completion config configwidgets coreaddons \ dbusaddons globalaccel guiaddons i18n jobwidgets kdeclarative kio \ libkipi newstuff notifications package purpose service solid wayland \ widgetsaddons windowsystem xmlgui \ - doctools_build ecm_build + doctools:build ecm:build USE_QT= core concurrent dbus declarative gui network printsupport \ quickcontrols svg widgets x11extras xml \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build USE_XORG= x11 xcb xext xfixes OPTIONS_DEFINE= DOCS diff --git a/graphics/tiled/Makefile b/graphics/tiled/Makefile index dc7f2fffa4cbb..a783643612774 100644 --- a/graphics/tiled/Makefile +++ b/graphics/tiled/Makefile @@ -18,7 +18,7 @@ GH_ACCOUNT= bjorn USES= compiler:c++14-lang desktop-file-utils gl qmake qt:5 \ pkgconfig shared-mime-info xorg USE_QT= core gui widgets opengl network declarative \ - buildtools_build linguisttools_build + buildtools:build linguisttools:build USE_GL= gl USE_LDCONFIG= yes QMAKE_ARGS= SYSTEM_ZSTD=yes diff --git a/graphics/vpaint/Makefile b/graphics/vpaint/Makefile index 940b48c0cef49..bacfc3f8941f1 100644 --- a/graphics/vpaint/Makefile +++ b/graphics/vpaint/Makefile @@ -15,7 +15,7 @@ USE_GITHUB= yes GH_ACCOUNT= dalboris USES= compiler:c++11-lib eigen:3 gl qmake qt:5 -USE_QT= core gui widgets opengl network qmake_build buildtools_build +USE_QT= core gui widgets opengl network qmake:build buildtools:build USE_GL= gl glu glew QMAKE_SOURCE_PATH= ${WRKSRC}/src/Gui diff --git a/graphics/vulkan-caps-viewer/Makefile b/graphics/vulkan-caps-viewer/Makefile index 769876656d8de..e9042c3e09457 100644 --- a/graphics/vulkan-caps-viewer/Makefile +++ b/graphics/vulkan-caps-viewer/Makefile @@ -13,7 +13,7 @@ LIB_DEPENDS= libvulkan.so:graphics/vulkan-loader USES= compiler:c++11-lib pkgconfig qmake qt:5 USE_GITHUB= yes -USE_QT= qmake_build buildtools_build core gui network widgets +USE_QT= qmake:build buildtools:build core gui network widgets GH_ACCOUNT= SaschaWillems GH_PROJECT= VulkanCapsViewer GH_TUPLE= KhronosGroup:Vulkan-Headers:v1.3.226:vkheaders/Vulkan-Headers @@ -26,7 +26,7 @@ OPTIONS_DEFINE= WAYLAND X11 OPTIONS_DEFAULT=WAYLAND X11 WAYLAND_LIB_DEPENDS= libwayland-client.so:graphics/wayland -WAYLAND_USE= QT=wayland_build +WAYLAND_USE= QT=wayland:build WAYLAND_QMAKE_ON= DEFINES+=WAYLAND X11_USE= QT=x11extras diff --git a/graphics/vv/Makefile b/graphics/vv/Makefile index afe11280220c0..0dc3c0a7c10d4 100644 --- a/graphics/vv/Makefile +++ b/graphics/vv/Makefile @@ -26,7 +26,7 @@ LIB_DEPENDS= libexpat.so:textproc/expat2 \ USES= cmake compiler:c++11-lang eigen:3 jpeg qt:5 xorg USE_GITHUB= yes GH_ACCOUNT= open-vv -USE_QT= core designer gui network sql widgets xml buildtools_build qmake_build +USE_QT= core designer gui network sql widgets xml buildtools:build qmake:build USE_XORG= ice sm x11 xext xt USE_CXXSTD= c++11 diff --git a/graphics/wrapland/Makefile b/graphics/wrapland/Makefile index 49574f2d1e9ae..9bc52cc9a2f20 100644 --- a/graphics/wrapland/Makefile +++ b/graphics/wrapland/Makefile @@ -18,9 +18,9 @@ TEST_DEPENDS= ${qt-testlib_PORT:T}>0:${qt-testlib_PORT} USES= cmake:testing gl kde:5 pkgconfig qt:5 USE_GITLAB= yes USE_GL= egl -USE_KDE= ecm_build +USE_KDE= ecm:build USE_LDCONFIG= yes -USE_QT= qmake_build buildtools_build concurrent core gui +USE_QT= qmake:build buildtools:build concurrent core gui GL_ACCOUNT= kwinft GL_COMMIT= df61726a0955369f07399e8115454013b887903e PLIST_SUB= VERSION=${PORTVERSION} @@ -30,7 +30,7 @@ OPTIONS_DEFAULT=DOXYGEN OPTIONS_SUB= yes DOXYGEN_BUILD_DEPENDS= doxygen:devel/doxygen -DOXYGEN_USE= QT=help_build +DOXYGEN_USE= QT=help:build DOXYGEN_CMAKE_BOOL= BUILD_QCH .include diff --git a/graphics/xaos/Makefile b/graphics/xaos/Makefile index a5f7159e5c09a..79682a62df0eb 100644 --- a/graphics/xaos/Makefile +++ b/graphics/xaos/Makefile @@ -18,7 +18,7 @@ GH_ACCOUNT= xaos-project GH_PROJECT= XaoS USE_GL= gl -USE_QT= core gui opengl widgets buildtools_build linguisttools_build +USE_QT= core gui opengl widgets buildtools:build linguisttools:build QMAKE_ARGS+= INCLUDEPATH+=${LOCALBASE}/include \ LIBS+=-L${LOCALBASE}/lib diff --git a/graphics/xpdf4/Makefile b/graphics/xpdf4/Makefile index 3e380ff1a7a55..bce6bcc40823a 100644 --- a/graphics/xpdf4/Makefile +++ b/graphics/xpdf4/Makefile @@ -53,7 +53,7 @@ LIBPAPER_LIB_DEPENDS= libpaper.so:print/libpaper GUI_CMAKE_OFF= -DCMAKE_DISABLE_FIND_PACKAGE_Qt5Widgets=1 GUI_DESC= QT5 interface GUI_USES= qt:5 desktop-file-utils -GUI_USE= QT=buildtools_build,qmake_build,concurrent,core,gui,widgets,printsupport,svg,network,printsupport +GUI_USE= QT=buildtools:build,qmake:build,concurrent,core,gui,widgets,printsupport,svg,network,printsupport PRINT_CMAKE_ON= -DXPDFWIDGET_PRINTING:BOOL=ON -DCUPS:BOOL=ON PRINT_CMAKE_OFF= -DXPDFWIDGET_PRINTING:BOOL=OFF -DCUPS:BOOL=OFF diff --git a/graphics/yacreader/Makefile b/graphics/yacreader/Makefile index 589e6d9529fb8..16719d5ff175b 100644 --- a/graphics/yacreader/Makefile +++ b/graphics/yacreader/Makefile @@ -14,9 +14,9 @@ LIB_DEPENDS= libunarr.so:archivers/unarr USES= compiler:c++11-lib desktop-file-utils pkgconfig qmake qt:5 USE_GITHUB= yes -USE_QT= qmake_build buildtools_build core concurrent_build declarative \ - gui multimedia network quickcontrols2 sql sql-sqlite3_run svg \ - testlib_build widgets +USE_QT= qmake:build buildtools:build core concurrent:build declarative \ + gui multimedia network quickcontrols2 sql sql-sqlite3:run svg \ + testlib:build widgets OPTIONS_DEFINE= OPENGL POPPLER OPTIONS_DEFAULT=OPENGL POPPLER diff --git a/graphics/yafaray/Makefile b/graphics/yafaray/Makefile index d8c67270af702..f51464bff618c 100644 --- a/graphics/yafaray/Makefile +++ b/graphics/yafaray/Makefile @@ -41,7 +41,7 @@ OPTIONS_SUB= yes QT_DESC= Enable Qt Gui build QT_USES= qt:5 QT_CMAKE_BOOL= WITH_QT -QT_USE= QT=core,gui,widgets,qmake_build,buildtools_build,qmake_build +QT_USE= QT=core,gui,widgets,qmake:build,buildtools:build,qmake:build post-install: @${RM} ${STAGEDIR}${DOCSDIR}/LICENSES diff --git a/graphics/zbar/Makefile b/graphics/zbar/Makefile index fa35ebcb70a93..93f8f188c5c8a 100644 --- a/graphics/zbar/Makefile +++ b/graphics/zbar/Makefile @@ -69,7 +69,7 @@ NLS_LDFLAGS= -lintl NLS_CONFIGURE_ENABLE= nls QT5_USES= qt:5 -QT5_USE= QT=core,gui,widgets,x11extras,buildtools_build +QT5_USE= QT=core,gui,widgets,x11extras,buildtools:build QT5_CONFIGURE_WITH= qt qt5 QT5_IMPLIES= X11 diff --git a/graphics/zint/Makefile b/graphics/zint/Makefile index 7978f7098935a..9e35039c36344 100644 --- a/graphics/zint/Makefile +++ b/graphics/zint/Makefile @@ -16,7 +16,7 @@ LIB_DEPENDS= libpng.so:graphics/png USES= cmake compiler:c++11-lang cpe qt:5 USE_LDCONFIG= yes -USE_QT= buildtools_build qmake_build uitools_build core gui \ +USE_QT= buildtools:build qmake:build uitools:build core gui \ svg widgets DESKTOP_ENTRIES="Zint" "Barcode generator" "" "zint-qt" "" false diff --git a/irc/dxirc/Makefile b/irc/dxirc/Makefile index 65aa9166d8014..34f0a12508442 100644 --- a/irc/dxirc/Makefile +++ b/irc/dxirc/Makefile @@ -40,6 +40,6 @@ NOTIFY_RUN_DEPENDS= notify-send:devel/libnotify QT5_USES= qt:5 QT5_USE= QT=core,gui,multimedia,network,widgets \ - QT=buildtools_build,qmake_build + QT=buildtools:build,qmake:build .include diff --git a/irc/konversation/Makefile b/irc/konversation/Makefile index 613f871a3282c..97a31656c0338 100644 --- a/irc/konversation/Makefile +++ b/irc/konversation/Makefile @@ -15,10 +15,10 @@ USE_KDE= archive attica auth bookmarks codecs completion config \ emoticons globalaccel i18n iconthemes idletime itemviews \ jobwidgets kio newstuff notifications notifyconfig parts service solid \ sonnet textwidgets wallet widgetsaddons windowsystem xmlgui \ - ecm_build \ - init_run + ecm:build \ + init:run USE_QT= concurrent core dbus gui multimedia network phonon4 widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 SHEBANG_FILES= data/scripts/bug \ diff --git a/irc/kvirc/Makefile b/irc/kvirc/Makefile index dc157b70e65d9..caf1068666a8b 100644 --- a/irc/kvirc/Makefile +++ b/irc/kvirc/Makefile @@ -21,7 +21,7 @@ USE_KDE= auth codecs config configwidgets coreaddons i18n notifications \ service widgetsaddons windowsystem xmlgui USE_QT= core dbus gui multimedia network phonon4 printsupport sql svg \ webkit widgets x11extras xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= ice sm x11 xext xrender xscrnsaver USE_LDCONFIG= yes USE_GITHUB= yes diff --git a/irc/quassel/Makefile b/irc/quassel/Makefile index 5c1227e73197c..2956b79bf7c60 100644 --- a/irc/quassel/Makefile +++ b/irc/quassel/Makefile @@ -18,7 +18,7 @@ USE_GITHUB= nodefault #GH_ACCOUNT= ${PORTNAME} #GH_PROJECT= ${PORTNAME} USE_OPENLDAP= yes -USE_QT= buildtools_build core network qmake_build +USE_QT= buildtools:build core network qmake:build CPE_VENDOR= quassel-irc CPE_PRODUCT= quassel_irc @@ -62,18 +62,18 @@ MONO_PREVENTS_MSG= Quassel core server should be installed via irc/quassel-core KDE_DESC= Enable KDE integration for client / monolitic KDE_CMAKE_BOOL= WITH_KDE -KDE_USE= kde=configwidgets,coreaddons,notifications,notifyconfig,textwidgets,widgetsaddons,xmlgui,ecm_build +KDE_USE= kde=configwidgets,coreaddons,notifications,notifyconfig,textwidgets,widgetsaddons,xmlgui,ecm:build KDE_USES= kde:5 SPELL_DESC= Enable spellcheck in client / monolitic via KF5Sonnet -SPELL_USE= kde=sonnet,ecm_build +SPELL_USE= kde=sonnet,ecm:build SPELL_USES= kde:5 -NLS_USE= QT=linguisttools_build +NLS_USE= QT=linguisttools:build PGSQL_USE= qt=sql-pgsql -SQLITE3_USE= qt=sql-sqlite3_run +SQLITE3_USE= qt=sql-sqlite3:run _LIBVERSION= 0.14.0 PLIST_SUB= LIBVERSION=${_LIBVERSION} diff --git a/japanese/fcitx-skk/Makefile b/japanese/fcitx-skk/Makefile index 3093ec673b953..951deeb8c2447 100644 --- a/japanese/fcitx-skk/Makefile +++ b/japanese/fcitx-skk/Makefile @@ -27,7 +27,7 @@ QT5_DESC= Enable Qt for GUI configuration .if ${PORT_OPTIONS:MQT5} USES+= qt:5 -USE_QT= buildtools_build qmake_build gui widgets +USE_QT= buildtools:build qmake:build gui widgets USE_LDCONFIG= ${PREFIX}/lib/fcitx/qt PLIST_SUB+= QT5="" LIB_DEPENDS+= libFcitxQt5WidgetsAddons.so:textproc/fcitx-qt5 diff --git a/japanese/kiten/Makefile b/japanese/kiten/Makefile index 86eae1c850baa..1fcdf7249c8a4 100644 --- a/japanese/kiten/Makefile +++ b/japanese/kiten/Makefile @@ -10,9 +10,9 @@ USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth archive codecs completion config configwidgets coreaddons \ crash doctools i18n jobwidgets js khtml kio notifications \ parts service sonnet textwidgets widgetsaddons xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus gui network widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS diff --git a/lang/kf5-kross/Makefile b/lang/kf5-kross/Makefile index 08bef6c070419..6ab0a9cb9229a 100644 --- a/lang/kf5-kross/Makefile +++ b/lang/kf5-kross/Makefile @@ -12,10 +12,10 @@ USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons i18n iconthemes itemviews \ jobwidgets kio parts service solid sonnet textwidgets \ widgetsaddons windowsystem xmlgui \ - doctools_build ecm_build + doctools:build ecm:build USE_QT= concurrent core dbus gui network script uiplugin \ uitools widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 .include diff --git a/lang/kross-interpreters/Makefile b/lang/kross-interpreters/Makefile index ef1536e23cb31..28c3f2c4333d8 100644 --- a/lang/kross-interpreters/Makefile +++ b/lang/kross-interpreters/Makefile @@ -8,9 +8,9 @@ WWW= https://techbase.kde.org/Development/Tutorials/Kross/Introduction USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= kross \ - ecm_build + ecm:build USE_QT= core gui script widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build CFLAGS+= -fdeclspec diff --git a/lang/kturtle/Makefile b/lang/kturtle/Makefile index d426886253fba..572e26e5f3176 100644 --- a/lang/kturtle/Makefile +++ b/lang/kturtle/Makefile @@ -10,9 +10,9 @@ USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= attica auth codecs config configwidgets coreaddons crash \ emoticons i18n init itemmodels kio newstuff \ service sonnet textwidgets widgetsaddons xmlgui \ - doctools_build ecm_build + doctools:build ecm:build USE_QT= concurrent core dbus gui network printsupport svg widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build OPTIONS_DEFINE= DOCS diff --git a/mail/trojita/Makefile b/mail/trojita/Makefile index ef894818c6fe7..41caa8d12cf35 100644 --- a/mail/trojita/Makefile +++ b/mail/trojita/Makefile @@ -24,7 +24,7 @@ CMAKE_ARGS+= -DWITH_CLEARTEXT_PLUGIN:STRING=ON -DWITH_DBUS:STRING=ON \ -DWITH_QT5:STRING=ON USES= cmake compiler:c++11-lib cpe desktop-file-utils gnome \ localbase:ldflags qt:5 tar:xz -USE_QT= buildtools_build linguisttools_build qmake_build \ +USE_QT= buildtools:build linguisttools:build qmake:build \ core dbus gui network sql sql-sqlite3 svg webkit widgets .include diff --git a/math/acalc/Makefile b/math/acalc/Makefile index e02cdcc1e2d8d..99b44586f7eea 100644 --- a/math/acalc/Makefile +++ b/math/acalc/Makefile @@ -15,7 +15,7 @@ USES= compiler:c++14-lang qmake qt:5 tar:xz USE_GITHUB= yes GH_ACCOUNT= anpp -USE_QT= core gui widgets buildtools_build linguisttools_build qmake_build +USE_QT= core gui widgets buildtools:build linguisttools:build qmake:build WRKSRC_SUBDIR= aCalc/aCalc diff --git a/math/analitza/Makefile b/math/analitza/Makefile index a693692213b12..63830f4051aad 100644 --- a/math/analitza/Makefile +++ b/math/analitza/Makefile @@ -13,9 +13,9 @@ LICENSE_FILE_GPLv2= ${WRKSRC}/COPYING USES= cmake compiler:c++11-lang eigen:3 gl kde:5 qt:5 tar:xz USE_GL= glu -USE_KDE= ecm_build +USE_KDE= ecm:build USE_QT= core declarative gui network opengl printsupport svg widgets xml \ - buildtools_build linguisttools_build qmake_build testlib_build + buildtools:build linguisttools:build qmake:build testlib:build USE_LDCONFIG= yes diff --git a/math/asymptote/Makefile b/math/asymptote/Makefile index 6057746fdab79..f8e5ac1f491e3 100644 --- a/math/asymptote/Makefile +++ b/math/asymptote/Makefile @@ -31,7 +31,7 @@ USE_GL= gl glu glut USE_GNOME= librsvg2:run USE_PERL5= build USE_TEX= dvipsk formats -USE_PYQT= pyqt5_run +USE_PYQT= pyqt5:run CPPFLAGS+= -I${LOCALBASE}/include GNU_CONFIGURE= yes diff --git a/math/cantor/Makefile b/math/cantor/Makefile index 6535b8d54aa0c..c752eb9a27837 100644 --- a/math/cantor/Makefile +++ b/math/cantor/Makefile @@ -23,11 +23,11 @@ USE_KDE= attica auth archive bookmarks codecs completion config \ itemmodels itemviews init jobwidgets kdelibs4support kio \ newstuff parts pty service solid sonnet syntaxhighlighting \ texteditor textwidgets widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus declarative gui help location network \ printsupport sql svg webchannel webengine \ widgets xml xmlpatterns \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build USE_XORG= x11 USE_LDCONFIG= yes diff --git a/math/cgal/Makefile b/math/cgal/Makefile index 7be3e8d735043..ce4d47c9b8401 100644 --- a/math/cgal/Makefile +++ b/math/cgal/Makefile @@ -40,7 +40,7 @@ VISUALIZATION_LIB_DEPENDS= libgeomview.so:graphics/geomview .if ${PORT_OPTIONS:MQT5} USES+= gl qt:5 CMAKE_ARGS+= -DWITH_CGAL_Qt5=ON -USE_QT+= core gui opengl widgets svg buildtools_build qmake_build xml +USE_QT+= core gui opengl widgets svg buildtools:build qmake:build xml USE_GL+= gl glu .else CMAKE_ARGS+= -DWITH_CGAL_Qt5=OFF diff --git a/math/g2o/Makefile b/math/g2o/Makefile index 1720d9d9c66da..0ea5b4048a71f 100644 --- a/math/g2o/Makefile +++ b/math/g2o/Makefile @@ -20,7 +20,7 @@ USES= cmake compiler:c++11-lang gl eigen:3 blaslapack:netlib qt:5 USE_GITHUB= yes GH_ACCOUNT= RainerKuemmerle USE_GL= gl glu -USE_QT= core gui opengl xml widgets buildtools_build qmake_build +USE_QT= core gui opengl xml widgets buildtools:build qmake:build USE_LDCONFIG= yes CMAKE_OFF= DO_SSE_AUTODETECT diff --git a/math/gecode/Makefile b/math/gecode/Makefile index 196c23840a941..5b2c780ecee3a 100644 --- a/math/gecode/Makefile +++ b/math/gecode/Makefile @@ -46,7 +46,7 @@ FLATZINC_CONFIGURE_ENABLE= flatzinc GIST_DESC= Enable gist, graphical and interactive search tool GIST_CONFIGURE_ENABLE= gist qt GIST_USES= gl qt:5 -GIST_USE= gl=gl qt=core,gui,printsupport,widgets,qmake_build,buildtools_build +GIST_USE= gl=gl qt=core,gui,printsupport,widgets,qmake:build,buildtools:build GIST_IMPLIES= SHARED # because Qt must be built in a special way: error: "You must build your code with position independent code if Qt was built with -reduce-relocations" GIST_MAKE_ARGS= FREEBSD_LDFLAGS=-L${LOCALBASE}/lib diff --git a/math/kalgebra/Makefile b/math/kalgebra/Makefile index 3da6d7b922dc9..745c5ccc4e953 100644 --- a/math/kalgebra/Makefile +++ b/math/kalgebra/Makefile @@ -15,10 +15,10 @@ USES= cmake compiler:c++11-lang desktop-file-utils gettext gl kde:5 \ USE_GL= glu USE_KDE= auth codecs config configwidgets coreaddons doctools i18n \ kio service widgetsaddons xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus declarative gui location network opengl printsupport \ svg testlib webchannel widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build CMAKE_ARGS= -DBUILD_mobile:BOOL=FALSE OPTIONS_DEFINE= DOCS WEBENGINE diff --git a/math/kbruch/Makefile b/math/kbruch/Makefile index 64656617636cb..8f0342f874de1 100644 --- a/math/kbruch/Makefile +++ b/math/kbruch/Makefile @@ -12,9 +12,9 @@ BUILD_DEPENDS= ${LOCALBASE}/share/xsl/docbook/html/docbook.xsl:textproc/docbook- USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth config crash codecs configwidgets coreaddons doctools \ i18n widgetsaddons xmlgui \ - ecm_build + ecm:build USE_QT= core dbus gui xml widgets \ - buildtools_build qmake_build + buildtools:build qmake:build OPTIONS_DEFINE= DOCS diff --git a/math/kcalc/Makefile b/math/kcalc/Makefile index 022a80ecd382a..482a266f32594 100644 --- a/math/kcalc/Makefile +++ b/math/kcalc/Makefile @@ -14,9 +14,9 @@ BUILD_DEPENDS= ${LOCALBASE}/share/xsl/docbook/html/docbook.xsl:textproc/docbook- USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons crash doctools \ guiaddons i18n init notifications widgetsaddons xmlgui \ - ecm_build + ecm:build USE_QT= core dbus gui widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build OPTIONS_DEFINE= DOCS diff --git a/math/kig/Makefile b/math/kig/Makefile index 1d5309b37c932..46c3f823dec37 100644 --- a/math/kig/Makefile +++ b/math/kig/Makefile @@ -14,9 +14,9 @@ USE_KDE= archive auth codecs completion config configwidgets coreaddons \ crash doctools emoticons i18n iconthemes init itemmodels \ jobwidgets kdelibs4support kio parts service solid sonnet syntaxhighlighting \ texteditor textwidgets widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus gui network printsupport svg widgets xml xmlpatterns \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 SHEBANG_FILES= pykig/pykig.py diff --git a/math/kmplot/Makefile b/math/kmplot/Makefile index 01e0208d702a6..e21f1417082a2 100644 --- a/math/kmplot/Makefile +++ b/math/kmplot/Makefile @@ -13,9 +13,9 @@ USE_KDE= auth bookmarks codecs completion config configwidgets \ iconthemes init itemmodels itemviews jobwidgets \ kdelibs4support kio notifications parts service solid sonnet \ textwidgets unitconversion widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus gui network printsupport svg widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 OPTIONS_DEFINE= DOCS diff --git a/math/labplot/Makefile b/math/labplot/Makefile index f63a3e7d88be2..bb3f7d93d17ab 100644 --- a/math/labplot/Makefile +++ b/math/labplot/Makefile @@ -24,10 +24,10 @@ USE_KDE= archive attica auth bookmarks codecs completion config configwidgets \ jobwidgets kio newstuff notifications parts \ service solid sonnet syntaxhighlighting textwidgets unitconversion \ widgetsaddons windowsystem xmlgui \ - doctools_build ecm_build + doctools:build ecm:build USE_QT= concurrent core dbus gui network printsupport serialport \ sql svg widgets xml \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build USE_XORG= x11 CMAKE_OFF= ENABLE_LIBCERF diff --git a/math/mathgl/Makefile b/math/mathgl/Makefile index c7dbd15e87e1d..8b6a04c897382 100644 --- a/math/mathgl/Makefile +++ b/math/mathgl/Makefile @@ -55,7 +55,7 @@ MPI_CMAKE_BOOL= enable-mpi MPI_LIB_DEPENDS= libmpi.so:net/openmpi QT5_CMAKE_BOOL= enable-qt5 -QT5_USE= QT=core,gui,opengl,printsupport,widgets,buildtools_build,qmake_build +QT5_USE= QT=core,gui,opengl,printsupport,widgets,buildtools:build,qmake:build QT5_USES= desktop-file-utils qt:5 shared-mime-info FLTK_CMAKE_BOOL= enable-fltk diff --git a/math/mathmod/Makefile b/math/mathmod/Makefile index 784d8c82653c8..abfa45dfdc8fb 100644 --- a/math/mathmod/Makefile +++ b/math/mathmod/Makefile @@ -15,7 +15,7 @@ GH_PROJECT= ${PORTNAME:tl} USES= compiler:c++11-lang dos2unix gl qmake qt:5 USE_GL= gl -USE_QT= buildtools_build core gui opengl qmake_build widgets +USE_QT= buildtools:build core gui opengl qmake:build widgets PLIST_FILES= bin/${PORTNAME} diff --git a/math/minizinc-ide/Makefile b/math/minizinc-ide/Makefile index df7951e19a71b..db420bd6b7319 100644 --- a/math/minizinc-ide/Makefile +++ b/math/minizinc-ide/Makefile @@ -14,7 +14,7 @@ RUN_DEPENDS= minizinc:math/minizinc USES= gl compiler:c++11-lang qmake qt:5 USE_QT= core declarative gui location network printsupport \ sql testlib webchannel webengine websockets widgets \ - buildtools_build + buildtools:build USE_GL= gl USE_GITHUB= yes diff --git a/math/mpsolve/Makefile b/math/mpsolve/Makefile index 21dbbb33cd6c9..88281a4eb3080 100644 --- a/math/mpsolve/Makefile +++ b/math/mpsolve/Makefile @@ -30,6 +30,6 @@ OPTIONS_SUB= yes GUI_DESC= Graphical UI to solve polynomial equations visually GUI_CONFIGURE_OFF= --disable-ui GUI_USES= bison desktop-file-utils qt:5 -GUI_USE= QT=core,gui,widgets,buildtools_build +GUI_USE= QT=core,gui,widgets,buildtools:build .include diff --git a/math/octave/Makefile b/math/octave/Makefile index 75ba06759cb05..393e67807a799 100644 --- a/math/octave/Makefile +++ b/math/octave/Makefile @@ -52,7 +52,7 @@ USE_LDCONFIG= ${PREFIX}/lib/${PORTNAME}/${PORTVERSION} USE_PERL5= build GNU_CONFIGURE= yes USE_QT= core gui help network opengl \ - qmake_build buildtools_build linguist_build \ + qmake:build buildtools:build linguist:build \ printsupport sql widgets \ xml USE_XORG= x11 xext xfixes xft \ diff --git a/math/octomap/Makefile b/math/octomap/Makefile index c7d6e958f9837..c352006548f8a 100644 --- a/math/octomap/Makefile +++ b/math/octomap/Makefile @@ -15,7 +15,7 @@ LICENSE_FILE_GPLv2= ${WRKSRC}/octovis/LICENSE.txt LIB_DEPENDS= libQGLViewer-qt5.so:graphics/libQGLViewer USES= cmake:testing compiler:c++11-lang localbase:ldflags gl qt:5 -USE_QT= core gui opengl xml widgets buildtools_build qmake_build +USE_QT= core gui opengl xml widgets buildtools:build qmake:build USE_GL= gl glu USE_LDCONFIG= yes diff --git a/math/openmesh/Makefile b/math/openmesh/Makefile index 032599bed9026..6edebd2bfedca 100644 --- a/math/openmesh/Makefile +++ b/math/openmesh/Makefile @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= cmake compiler:c++11-lang dos2unix gl qt:5 xorg DOS2UNIX_FILES= src/OpenMesh/Tools/CMakeLists.txt USE_QT= core concurrent gui help network opengl printsupport script scripttools sql svg x11extras xml xmlpatterns webkit widgets \ - buildtools_build qmake_build uitools_build + buildtools:build qmake:build uitools:build USE_GL= gl glu glut USE_XORG= xi xmu USE_LDCONFIG= yes diff --git a/math/plplot/Makefile b/math/plplot/Makefile index b25e112f1a760..394f62605c2f2 100644 --- a/math/plplot/Makefile +++ b/math/plplot/Makefile @@ -104,7 +104,7 @@ TCLTK_CMAKE_ON= -DPLPLOT_TK_VERSION:STRING="${TK_VER}" \ THREADS_CMAKE_BOOL= THREADS_HAVE_PTHREAD_ARG QT5_USES= qt:5 -QT5_USE= QT=core,gui,printsupport,svg,xml,widgets,buildtools_build,qmake_build +QT5_USE= QT=core,gui,printsupport,svg,xml,widgets,buildtools:build,qmake:build QT5_CMAKE_BOOL= ENABLE_qt WXGTK_LIB_DEPENDS= libagg.so:graphics/agg diff --git a/math/qalculate-qt/Makefile b/math/qalculate-qt/Makefile index ad14fff6ddd40..d7ed60743a35b 100644 --- a/math/qalculate-qt/Makefile +++ b/math/qalculate-qt/Makefile @@ -19,7 +19,7 @@ RUN_DEPENDS= gnuplot:math/gnuplot USES= compiler:c++11-lib gl pkgconfig qmake qt:5 USE_GL= gl -USE_QT= buildtools_build linguisttools_build core gui network widgets +USE_QT= buildtools:build linguisttools:build core gui network widgets OPTIONS_DEFINE= NLS OPTIONS_SUB= yes diff --git a/math/qwtplot3d/Makefile b/math/qwtplot3d/Makefile index 870cced1ab99b..1e5e0cec2a8e7 100644 --- a/math/qwtplot3d/Makefile +++ b/math/qwtplot3d/Makefile @@ -11,7 +11,7 @@ WWW= https://github.com/SciDAVis/qwtplot3d LIB_DEPENDS= libgl2ps.so:print/gl2ps USES= cmake compiler:c++17-lang gl qt:5 -USE_QT= core gui opengl widgets buildtools_build qmake_build +USE_QT= core gui opengl widgets buildtools:build qmake:build USE_GL= gl glu USE_LDCONFIG= yes diff --git a/math/rkward/Makefile b/math/rkward/Makefile index 6484ab5fbf21c..3b47529751752 100644 --- a/math/rkward/Makefile +++ b/math/rkward/Makefile @@ -23,7 +23,7 @@ USE_QT= buildtools concurrent core dbus declarative gui location \ widgets xml USE_XORG= ice x11 xext USE_KDE= archive auth bookmarks codecs completion config configwidgets coreaddons\ - crash doctools ecm i18n itemviews jobwidgets kate_run kdewebkit kio \ + crash doctools ecm i18n itemviews jobwidgets kate:run kdewebkit kio \ notifications parts service solid sonnet syntaxhighlighting texteditor \ textwidgets widgetsaddons windowsystem xmlgui diff --git a/math/rocs/Makefile b/math/rocs/Makefile index c161622698278..e31f3bc575609 100644 --- a/math/rocs/Makefile +++ b/math/rocs/Makefile @@ -14,10 +14,10 @@ USE_KDE= archive auth codecs completion config configwidgets coreaddons \ crash i18n itemviews jobwidgets kdeclarative kio package parts \ service solid sonnet syntaxhighlighting texteditor textwidgets \ widgetsaddons windowsystem xmlgui \ - doctools_build ecm_build + doctools:build ecm:build USE_QT= concurrent core dbus declarative gui network script scripttools svg webkit \ widgets xml xmlpatterns \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build USE_XORG= x11 USE_LDCONFIG= yes diff --git a/math/speedcrunch/Makefile b/math/speedcrunch/Makefile index e86b5cd4aecc5..04b27cf91e204 100644 --- a/math/speedcrunch/Makefile +++ b/math/speedcrunch/Makefile @@ -16,7 +16,7 @@ BB_PROJECT= ${PORTNAME} BB_COMMIT= c0fc9c68d292 USES= cmake compiler:c++11-lang qt:5 xorg -USE_QT= buildtools_build qmake_build core gui help sql widgets +USE_QT= buildtools:build qmake:build core gui help sql widgets USE_XORG= x11 WRKSRC= ${WRKDIR}/${BB_ACCOUNT}-${BB_PROJECT}-${BB_COMMIT} diff --git a/math/vtk6/Makefile b/math/vtk6/Makefile index 1b94a4fecfb21..ab4d25021d4ab 100644 --- a/math/vtk6/Makefile +++ b/math/vtk6/Makefile @@ -120,8 +120,8 @@ PLIST_SUB+= MPI="@comment " .if ${PORT_OPTIONS:MQT5} USES+= qt:5 -USE_QT= gui_build gui_run network_build network_run sql_build sql_run \ - qmake_build opengl webkit_build buildtools webkit_run +USE_QT= gui:build gui:run network:build network:run sql:build sql:run \ + qmake:build opengl webkit:build buildtools webkit:run CMAKE_ARGS+= -DVTK_QT_VERSION:STRING="5" \ -DCMAKE_PREFIX_PATH:STRING=${LOCALBASE}/lib/qt5 PLIST_SUB+= QTV="qt5" diff --git a/math/vtk8/Makefile b/math/vtk8/Makefile index 9d06610c073a0..dac16c5254599 100644 --- a/math/vtk8/Makefile +++ b/math/vtk8/Makefile @@ -63,7 +63,7 @@ $w_DESC= $w wrapping .endfor QT5_USES= qt:5 -QT5_USE= QT=core,gui,sql,uiplugin,widgets,x11extras,qmake_build,buildtools_build +QT5_USE= QT=core,gui,sql,uiplugin,widgets,x11extras,qmake:build,buildtools:build QT5_CMAKE_ON= -DVTK_QT_VERSION:STRING="5" \ -DCMAKE_PREFIX_PATH:STRING=${LOCALBASE}/lib/qt5 \ -DVTK_Group_Qt:BOOL=ON diff --git a/math/vtk9/Makefile b/math/vtk9/Makefile index 0fff9b6521459..84fe19360a8b4 100644 --- a/math/vtk9/Makefile +++ b/math/vtk9/Makefile @@ -64,7 +64,7 @@ PYTHON_CMAKE_ON= -DVTK_PYTHON_VERSION=${PYTHON_MAJOR_VER} -DPython3_EXECUTABLE=$ PYTHON_VARS= SUB_FILES=PKG-INFO SUB_LIST=PORTVERSION=${PORTVERSION} QT5_USES= qt:5 -QT5_USE= QT=core,declarative,gui,network,opengl,sql,uiplugin,widgets,x11extras,qmake_build,buildtools_build +QT5_USE= QT=core,declarative,gui,network,opengl,sql,uiplugin,widgets,x11extras,qmake:build,buildtools:build QT5_CMAKE_ON= -DCMAKE_PREFIX_PATH:STRING=${LOCALBASE}/lib/qt5 \ -DVTK_GROUP_ENABLE_Qt:STRING=YES \ -DVTK_MODULE_ENABLE_VTK_GUISupportQt:STRING=YES diff --git a/math/zegrapher/Makefile b/math/zegrapher/Makefile index 76b66878ed0de..f21aef2dfd60a 100644 --- a/math/zegrapher/Makefile +++ b/math/zegrapher/Makefile @@ -17,7 +17,7 @@ USES= compiler:c++11-lang desktop-file-utils gl qmake qt:5 USE_GITHUB= yes GH_ACCOUNT= AdelKS GH_TAGNAME= 6832bd61291b3e82bc05233ae74e8d7556abe910 -USE_QT= core gui network printsupport svg widgets buildtools_build +USE_QT= core gui network printsupport svg widgets buildtools:build USE_GL= gl PLIST_FILES= bin/${PORTNAME} \ diff --git a/misc/actiona/Makefile b/misc/actiona/Makefile index 98796115d7618..728fbf518d5e9 100644 --- a/misc/actiona/Makefile +++ b/misc/actiona/Makefile @@ -20,7 +20,7 @@ USES= compiler:c++11-lang desktop-file-utils gl pkgconfig qmake \ USE_GITHUB= yes GH_ACCOUNT= Jmgr USE_QT= concurrent core dbus gui multimedia network script scripttools speech sql widgets x11extras xml xmlpatterns \ - buildtools_build uitools_build + buildtools:build uitools:build USE_GNOME= gdkpixbuf2 glib20 USE_GL= gl USE_XORG= x11 xtst @@ -30,7 +30,7 @@ QMAKE_ARGS= PKGCONFIG_OPENCV=opencv4 OPTIONS_DEFINE= NLS OPTIONS_SUB= yes -NLS_USE= QT=linguisttools_build +NLS_USE= QT=linguisttools:build pre-build-NLS-on: # this is a hackish way to turn NLS on/off, asked the upstream to have the NLS option @cd ${WRKSRC} && ${MAKE_CMD} locale_release diff --git a/misc/artikulate/Makefile b/misc/artikulate/Makefile index c698600f5fb4f..a6e1f390259d2 100644 --- a/misc/artikulate/Makefile +++ b/misc/artikulate/Makefile @@ -10,10 +10,10 @@ USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= archive attica auth codecs config configwidgets coreaddons \ crash i18n kdeclarative newstuff service \ widgetsaddons xmlgui \ - doctools_build ecm_build + doctools:build ecm:build USE_QT= core dbus declarative gui multimedia network sql testlib widgets \ xml xmlpatterns \ - buildtools_build qmake_build + buildtools:build qmake:build USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS diff --git a/misc/bibletime/Makefile b/misc/bibletime/Makefile index 775fa68b108e3..5dff186142677 100644 --- a/misc/bibletime/Makefile +++ b/misc/bibletime/Makefile @@ -14,7 +14,7 @@ LIB_DEPENDS= libclucene-core.so:textproc/clucene \ libsword.so:misc/sword USES= cmake compiler:c11 qt:5 tar:xz ssl -USE_QT= buildtools core dbus gui linguist_build network printsupport \ +USE_QT= buildtools core dbus gui linguist:build network printsupport \ script svg webkit widgets \ - xml qmake_build testlib_build + xml qmake:build testlib:build .include diff --git a/misc/crosti/Makefile b/misc/crosti/Makefile index 87a3423defb46..6cb8377363600 100644 --- a/misc/crosti/Makefile +++ b/misc/crosti/Makefile @@ -17,7 +17,7 @@ USES= compiler:c++11-lang desktop-file-utils dos2unix gl qmake qt:5 \ shared-mime-info zip DOS2UNIX_GLOB= *.cpp *.csc *.h *.pro *.txt *.xml USE_GL= gl -USE_QT= concurrent core gui printsupport svg widgets buildtools_build +USE_QT= concurrent core gui printsupport svg widgets buildtools:build NO_WRKSUBDIR= yes .include diff --git a/misc/ecflow/Makefile b/misc/ecflow/Makefile index a102cd61436a9..fdab028d68387 100644 --- a/misc/ecflow/Makefile +++ b/misc/ecflow/Makefile @@ -18,7 +18,7 @@ LIB_DEPENDS= libboost_program_options.so:devel/boost-libs RUN_DEPENDS= ${PY_DEPENDS} USES= cmake compiler:c++17-lang localbase perl5 pkgconfig python:3.6+ qt:5 shebangfix ssl -USE_QT= charts core gui network svg widgets buildtools_build qmake_build +USE_QT= charts core gui network svg widgets buildtools:build qmake:build SHEBANG_GLOB= *.sh *.in *.py diff --git a/misc/edfbrowser/Makefile b/misc/edfbrowser/Makefile index 416c3d6862dd1..df155f137d9a3 100644 --- a/misc/edfbrowser/Makefile +++ b/misc/edfbrowser/Makefile @@ -12,7 +12,7 @@ LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE USES= desktop-file-utils gl qmake qt:5 shared-mime-info -USE_QT= core gui network printsupport widgets buildtools_build +USE_QT= core gui network printsupport widgets buildtools:build USE_GL= gl OPTIONS_DEFINE= DOCS diff --git a/misc/kde-thumbnailer-chm/Makefile b/misc/kde-thumbnailer-chm/Makefile index e2b2230e4e4d8..c914981c3429c 100644 --- a/misc/kde-thumbnailer-chm/Makefile +++ b/misc/kde-thumbnailer-chm/Makefile @@ -14,9 +14,9 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libchm.so:misc/chmlib USES= cmake compiler:c++11-lang kde:5 qt:5 xorg -USE_KDE= ecm_build completion config coreaddons jobwidgets kio service solid \ +USE_KDE= ecm:build completion config coreaddons jobwidgets kio service solid \ widgetsaddons windowsystem -USE_QT= buildtools_build qmake_build concurrent core dbus gui network widgets +USE_QT= buildtools:build qmake:build concurrent core dbus gui network widgets USE_XORG= x11 USE_GITHUB= yes GH_ACCOUNT= Caig diff --git a/misc/kde-thumbnailer-epub/Makefile b/misc/kde-thumbnailer-epub/Makefile index 108b81e3bc106..4d34465e5254a 100644 --- a/misc/kde-thumbnailer-epub/Makefile +++ b/misc/kde-thumbnailer-epub/Makefile @@ -12,9 +12,9 @@ LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING USES= cmake compiler:c++11-lang kde:5 qt:5 xorg -USE_KDE= ecm_build archive completion config coreaddons jobwidgets kio \ +USE_KDE= ecm:build archive completion config coreaddons jobwidgets kio \ service solid widgetsaddons windowsystem -USE_QT= buildtools_build qmake_build concurrent core dbus gui network \ +USE_QT= buildtools:build qmake:build concurrent core dbus gui network \ widgets xmlpatterns USE_XORG= x11 diff --git a/misc/kde-thumbnailer-fb2/Makefile b/misc/kde-thumbnailer-fb2/Makefile index a1e37a5430d91..9093974d7e4c1 100644 --- a/misc/kde-thumbnailer-fb2/Makefile +++ b/misc/kde-thumbnailer-fb2/Makefile @@ -12,9 +12,9 @@ LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING USES= cmake compiler:c++11-lang kde:5 qt:5 xorg -USE_KDE= ecm_build archive completion config coreaddons jobwidgets kio \ +USE_KDE= ecm:build archive completion config coreaddons jobwidgets kio \ service solid widgetsaddons windowsystem -USE_QT= buildtools_build qmake_build concurrent core dbus gui network \ +USE_QT= buildtools:build qmake:build concurrent core dbus gui network \ widgets USE_XORG= x11 diff --git a/misc/kdeedu-data/Makefile b/misc/kdeedu-data/Makefile index 260a1917bb92e..8c108156d292e 100644 --- a/misc/kdeedu-data/Makefile +++ b/misc/kdeedu-data/Makefile @@ -8,7 +8,7 @@ WWW= https://edu.kde.org/applications/all/parley USES= cmake kde:5 qt:5 tar:xz USE_KDE= ecm -USE_QT= buildtools_build qmake_build +USE_QT= buildtools:build qmake:build OPTIONS_DEFINE= DOCS diff --git a/misc/kf5-purpose/Makefile b/misc/kf5-purpose/Makefile index 4669dd8f81aed..fd468c69af4f0 100644 --- a/misc/kf5-purpose/Makefile +++ b/misc/kf5-purpose/Makefile @@ -16,9 +16,9 @@ USE_GNOME= intltool USE_KDE= config completion coreaddons i18n kdeclarative kio \ kirigami2 notifications jobwidgets service solid \ widgetsaddons windowsystem \ - ecm_build + ecm:build USE_QT= concurrent core dbus declarative gui network widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 .include diff --git a/misc/kgeography/Makefile b/misc/kgeography/Makefile index 8ceb40a504e8a..0936958e6eaa3 100644 --- a/misc/kgeography/Makefile +++ b/misc/kgeography/Makefile @@ -9,9 +9,9 @@ WWW= https://edu.kde.org/kgeography USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons crash doctools \ i18n iconthemes itemviews service widgetsaddons xmlgui \ - ecm_build + ecm:build USE_QT= core dbus gui widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build OPTIONS_DEFINE= DOCS diff --git a/misc/klettres/Makefile b/misc/klettres/Makefile index d902076195d45..d118bfd220069 100644 --- a/misc/klettres/Makefile +++ b/misc/klettres/Makefile @@ -10,9 +10,9 @@ USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= attica auth codecs completion config configwidgets coreaddons \ crash emoticons i18n init itemmodels \ kdelibs4support newstuff service widgetsaddons xmlgui \ - doctools_build ecm_build + doctools:build ecm:build USE_QT= core dbus gui network phonon4 svg widgets xml \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build OPTIONS_DEFINE= DOCS diff --git a/misc/kookbook/Makefile b/misc/kookbook/Makefile index 42d068f01db8f..a40879da352ed 100644 --- a/misc/kookbook/Makefile +++ b/misc/kookbook/Makefile @@ -14,8 +14,8 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libmarkdown.so:textproc/discount USES= cmake compiler:c++11-lang kde:5 qt:5 tar:xz -USE_KDE= ecm_build +USE_KDE= ecm:build USE_QT= core declarative gui network printsupport widgets \ - qmake_build buildtools_build testlib_build + qmake:build buildtools:build testlib:build .include diff --git a/misc/ktouch/Makefile b/misc/ktouch/Makefile index a3a2edc6e237b..f619d2f2b6d1e 100644 --- a/misc/ktouch/Makefile +++ b/misc/ktouch/Makefile @@ -13,10 +13,10 @@ USE_KDE= auth codecs completion config configwidgets coreaddons doctools \ i18n iconthemes itemviews kcmutils kdeclarative kio newstuff package \ parts service sonnet texteditor textwidgets widgetsaddons \ windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= core dbus declarative gui network quickcontrols2 script sql \ testlib widgets x11extras xml xmlpatterns \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= ice sm x11 xcb xext xkbfile OPTIONS_DEFINE= DOCS diff --git a/misc/kwordquiz/Makefile b/misc/kwordquiz/Makefile index a436bafd0fc9f..0588afafadc27 100644 --- a/misc/kwordquiz/Makefile +++ b/misc/kwordquiz/Makefile @@ -14,9 +14,9 @@ USE_KDE= attica auth bookmarks codecs completion config configwidgets \ kdelibs4support kio libkeduvocdocument newstuff notifications \ notifyconfig parts service solid sonnet textwidgets \ unitconversion widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= core dbus gui network phonon4 printsupport widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 OPTIONS_DEFINE= DOCS diff --git a/misc/libkeduvocdocument/Makefile b/misc/libkeduvocdocument/Makefile index f69ba70e516ba..191bf37392876 100644 --- a/misc/libkeduvocdocument/Makefile +++ b/misc/libkeduvocdocument/Makefile @@ -8,9 +8,9 @@ WWW= https://edu.kde.org/ USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= archive config coreaddons i18n kio service \ - ecm_build + ecm:build USE_QT= concurrent core dbus gui network xml \ - buildtools_build qmake_build + buildtools:build qmake:build OPTIONS_DEFINE= DOCS diff --git a/misc/molequeue/Makefile b/misc/molequeue/Makefile index bf3d851a84146..44559b103963e 100644 --- a/misc/molequeue/Makefile +++ b/misc/molequeue/Makefile @@ -12,7 +12,7 @@ LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/LICENSE USES= cmake compiler:c++11-lang qt:5 -USE_QT= core gui network widgets buildtools_build qmake_build +USE_QT= core gui network widgets buildtools:build qmake:build USE_LDCONFIG= yes post-install: diff --git a/misc/nn-insight/Makefile b/misc/nn-insight/Makefile index 3f4998b38fdb5..89937cdb456d4 100644 --- a/misc/nn-insight/Makefile +++ b/misc/nn-insight/Makefile @@ -22,7 +22,7 @@ LIB_DEPENDS= libcgraph.so:graphics/graphviz \ libtcmalloc.so:devel/google-perftools USES= compiler:c++17-lang cmake pkgconfig qt:5 -USE_QT= core gui svg widgets buildtools_build qmake_build +USE_QT= core gui svg widgets buildtools:build qmake:build USE_GITHUB= yes GH_ACCOUNT= yurivict diff --git a/misc/openhantek/Makefile b/misc/openhantek/Makefile index b29276e7a2f30..3ba93f8443e12 100644 --- a/misc/openhantek/Makefile +++ b/misc/openhantek/Makefile @@ -14,7 +14,7 @@ USES= cmake compiler:c++11-lang gl localbase qt:5 USE_GITHUB= yes GH_ACCOUNT= OpenHantek GH_PROJECT= OpenHantek6022 # there's also the openhantek project which OpenHantek6022 is a fork of -USE_QT= core gui opengl printsupport widgets buildtools_build linguist_build qmake_build +USE_QT= core gui opengl printsupport widgets buildtools:build linguist:build qmake:build USE_GL= gl glu OPTIONS_DEFINE= HANTEK_AC diff --git a/misc/openmvg/Makefile b/misc/openmvg/Makefile index be8f1bbaf6f8e..e795d4d3e87fe 100644 --- a/misc/openmvg/Makefile +++ b/misc/openmvg/Makefile @@ -55,7 +55,7 @@ GH_ACCOUNT= openMVG GH_PROJECT= openMVG GH_TUPLE= openMVG-thirdparty:cereal:ac168fe:cereal/dependencies/cereal WRKSRC_SUBDIR= src -USE_QT= core gui opengl svg widgets buildtools_build qmake_build +USE_QT= core gui opengl svg widgets buildtools:build qmake:build USE_LDCONFIG= yes CMAKE_ARGS= -DEIGEN_INCLUDE_DIR_HINTS=${LOCALBASE}/include/eigen3 \ diff --git a/misc/orange3/Makefile b/misc/orange3/Makefile index 310e41fba2618..bcf432b6e8eeb 100644 --- a/misc/orange3/Makefile +++ b/misc/orange3/Makefile @@ -41,7 +41,7 @@ RUN_DEPENDS= ${PYNUMPY} \ USES= python:3.7+ pyqt:5 USE_PYTHON= distutils cython autoplist noflavors -USE_PYQT= pyqt5_run webengine_run +USE_PYQT= pyqt5:run webengine:run USE_GITHUB= yes GH_ACCOUNT= biolab @@ -52,9 +52,9 @@ LDFLAGS+= -Xlinker -strip-all # strip, stage-qa doesn't catch that it isn't stri .include .if ${ARCH} == aarch64 || ${ARCH} == amd64 || ${ARCH} == i386 -USE_PYQT+= webengine_run +USE_PYQT+= webengine:run .else -USE_PYQT+= webkit_run +USE_PYQT+= webkit:run .endif xpost-install: diff --git a/misc/orion/Makefile b/misc/orion/Makefile index 8a61e71dca09a..1e7a8ffba06b2 100644 --- a/misc/orion/Makefile +++ b/misc/orion/Makefile @@ -16,7 +16,7 @@ LIB_DEPENDS= libmpv.so:multimedia/mpv USES= compiler:c++14-lang gl qmake qt:5 USE_GITHUB= yes GH_ACCOUNT= drac69 -USE_QT= core declarative graphicaleffects gui network quickcontrols2 svg widgets buildtools_build +USE_QT= core declarative graphicaleffects gui network quickcontrols2 svg widgets buildtools:build USE_GL= gl PLIST_FILES= bin/${PORTNAME} \ diff --git a/misc/parley/Makefile b/misc/parley/Makefile index 3527971ef06f2..b896af29649b9 100644 --- a/misc/parley/Makefile +++ b/misc/parley/Makefile @@ -16,10 +16,10 @@ USE_KDE= attica auth codecs completion configwidgets coreaddons config \ notifications kross khtml service solid sonnet textwidgets \ widgetsaddons windowsystem xmlgui \ libkeduvocdocument \ - ecm_build + ecm:build USE_QT= concurrent core dbus declarative gui location network multimedia \ printsupport script svg webchannel webengine widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= ice sm x11 xext xrender OPTIONS_DEFINE= DOCS diff --git a/misc/qbrew/Makefile b/misc/qbrew/Makefile index cab323a7907f3..92e1000b8d709 100644 --- a/misc/qbrew/Makefile +++ b/misc/qbrew/Makefile @@ -13,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= compiler:c++11-lang gl qmake qt:5 USE_GL= gl -USE_QT= buildtools_build qmake_build \ +USE_QT= buildtools:build qmake:build \ core gui printsupport widgets xml QMAKE_ARGS= CONFIG+="configure" diff --git a/misc/qt5-l10n/Makefile b/misc/qt5-l10n/Makefile index 75eb251bd02e9..8cccb4f4e4569 100644 --- a/misc/qt5-l10n/Makefile +++ b/misc/qt5-l10n/Makefile @@ -7,7 +7,7 @@ MAINTAINER= kde@FreeBSD.org COMMENT= Qt localized messages USES= qmake qt-dist:5,translations -USE_QT= qmake_build linguisttools_build +USE_QT= qmake:build linguisttools:build NO_ARCH= yes diff --git a/misc/qt5ct/Makefile b/misc/qt5ct/Makefile index cb37304c3e391..eae485672e534 100644 --- a/misc/qt5ct/Makefile +++ b/misc/qt5ct/Makefile @@ -15,7 +15,7 @@ LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \ USES= cmake compiler:c++11-lang gettext-runtime gl gnome qt:5 \ tar:bz2 xorg USE_QT= concurrent core dbus gui paths svg widgets \ - buildtools_build linguisttools_build qmake_build + buildtools:build linguisttools:build qmake:build USE_GL= egl gl USE_XORG= x11 xext xrender USE_GNOME= glib20 diff --git a/misc/tellico/Makefile b/misc/tellico/Makefile index ad2c70e0085ac..baf0695a71bc4 100644 --- a/misc/tellico/Makefile +++ b/misc/tellico/Makefile @@ -29,9 +29,9 @@ USE_KDE= archive attica5 auth bookmarks codecs completion config \ i18n iconthemes itemmodels itemviews jobwidgets js khtml kio \ libkcddb libksane newstuff parts service solid sonnet \ textwidgets wallet widgetsaddons windowsystem xmlgui \ - doctools_build ecm_build + doctools:build ecm:build USE_QT= concurrent core dbus gui network printsupport widgets xml \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build USE_XORG= x11 SHEBANG_FILES= src/fetch/scripts/dark_horse_comics.py \ diff --git a/misc/valentina/Makefile b/misc/valentina/Makefile index 748a24dbc7dad..5a91601b1c3f0 100644 --- a/misc/valentina/Makefile +++ b/misc/valentina/Makefile @@ -12,8 +12,8 @@ LICENSE_FILE= ${WRKSRC}/LICENSE_GPL.txt BROKEN_i386= ld: error: failed to open bin/valentina: Cannot allocate memory USES= compiler:c++11-lang desktop-file-utils dos2unix gl gmake qmake qt:5 -USE_QT= buildtools_build concurrent core gui linguisttools_build network \ - opengl printsupport svg testlib_build widgets xml xmlpatterns +USE_QT= buildtools:build concurrent core gui linguisttools:build network \ + opengl printsupport svg testlib:build widgets xml xmlpatterns USE_GL= gl USE_LDCONFIG= yes diff --git a/misc/veles/Makefile b/misc/veles/Makefile index 58adebb0aad16..6987683274ad3 100644 --- a/misc/veles/Makefile +++ b/misc/veles/Makefile @@ -28,7 +28,7 @@ SHEBANG_GLOB= *.py SHEBANG_FILES= python/plugin python/proxy resources/install/postinst python/test_dis USE_GITHUB= yes GH_ACCOUNT= codilime -USE_QT= core gui network widgets buildtools_build qmake_build +USE_QT= core gui network widgets buildtools:build qmake:build CMAKE_ARGS= -DFREEBSD_PYTHON_CMD:STRING=${PYTHON_CMD} \ -DFREEBSD_PYTHON_EXENAME:STRING=${PYTHON_CMD:C/.*\///} \ diff --git a/multimedia/QtAV/Makefile b/multimedia/QtAV/Makefile index bc557596cc98c..74b0707602116 100644 --- a/multimedia/QtAV/Makefile +++ b/multimedia/QtAV/Makefile @@ -21,7 +21,7 @@ LIB_DEPENDS= libass.so:multimedia/libass \ USES= compiler:c++11-lang gl qmake:outsource qt:5 xorg USE_GL= gl USE_QT= core declarative gui network opengl sql widgets \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 xext xv OPTIONS_DEFINE= OPENAL UCHARDET VAAPI PULSEAUDIO diff --git a/multimedia/audacious/Makefile b/multimedia/audacious/Makefile index a0219a6c53236..c461f287c49bf 100644 --- a/multimedia/audacious/Makefile +++ b/multimedia/audacious/Makefile @@ -38,7 +38,7 @@ CONFIGURE_ARGS= --with-pkgconfigdir=${PREFIX}/libdata/pkgconfig \ .if ${FLAVOR} == qt5 CONFIGURE_ARGS+= --enable-qt --disable-gtk USES+= qt:5 -USE_QT= buildtools_build core gui widgets +USE_QT= buildtools:build core gui widgets PLIST_SUB= QT5="" GTK2="@comment " .elif ${FLAVOR} == gtk2 CONFIGURE_ARGS+= --disable-qt --enable-gtk diff --git a/multimedia/avidemux/Makefile.common b/multimedia/avidemux/Makefile.common index 13e3c6c1328df..9c71ff96fd164 100644 --- a/multimedia/avidemux/Makefile.common +++ b/multimedia/avidemux/Makefile.common @@ -89,7 +89,7 @@ USE_GNOME+= libxslt USES+= gl qt:5 xorg USE_GL= gl glu USE_QT= core gui network widgets \ - qmake_build buildtools_build linguist_build + qmake:build buildtools:build linguist:build USE_XORG= x11 CMAKE_ARGS+= -DENABLE_QT5:BOOL=ON PLIST_SUB+= QT5="" diff --git a/multimedia/baka-mplayer/Makefile b/multimedia/baka-mplayer/Makefile index 89b4367057316..41aaa486e59c0 100644 --- a/multimedia/baka-mplayer/Makefile +++ b/multimedia/baka-mplayer/Makefile @@ -17,7 +17,7 @@ GH_ACCOUNT= u8sand GH_PROJECT= Baka-MPlayer USES= compiler:c++11-lib pkgconfig qmake qt:5 -USE_QT= qmake_build buildtools_build gui network svg widgets x11extras +USE_QT= qmake:build buildtools:build gui network svg widgets x11extras QMAKE_SOURCE_PATH=${WRKSRC}/src QMAKE_ARGS= lupdate="${LUPDATE}" lrelease="${LRELEASE}" @@ -25,7 +25,7 @@ OPTIONS_DEFINE= DOCS NLS NOTO OPTIONS_SUB= yes NLS_USES= qt:5 -NLS_USE= QT=linguisttools_build +NLS_USE= QT=linguisttools:build NLS_QMAKE_ON= CONFIG+="install_translations" NOTO_DESC= Original look with Noto Sans font NOTO_RUN_DEPENDS= noto>0:x11-fonts/noto diff --git a/multimedia/bino/Makefile b/multimedia/bino/Makefile index 3440aab9b8601..c0d7ecd091c0d 100644 --- a/multimedia/bino/Makefile +++ b/multimedia/bino/Makefile @@ -19,7 +19,7 @@ USES= autoreconf compiler:c++11-lang desktop-file-utils gl gmake \ gnome iconv pkgconfig qt:5 tar:xz USE_GL= gl glu glew GNU_CONFIGURE= yes -USE_QT= buildtools_build core gui opengl widgets +USE_QT= buildtools:build core gui opengl widgets USE_CXXSTD= c++11 # no port fow equalizer now, lirc detecting not working diff --git a/multimedia/cineencoder/Makefile b/multimedia/cineencoder/Makefile index d18010cee2f06..ac7b5bfb10b76 100644 --- a/multimedia/cineencoder/Makefile +++ b/multimedia/cineencoder/Makefile @@ -16,7 +16,7 @@ USES= pkgconfig qt:5 xorg USE_GITHUB= yes GH_ACCOUNT= CineEncoder GH_PROJECT= cine-encoder -USE_QT= buildtools_build qmake_build core gui multimedia \ +USE_QT= buildtools:build qmake:build core gui multimedia \ network svg widgets x11extras USE_XORG= x11 xext diff --git a/multimedia/dragon/Makefile b/multimedia/dragon/Makefile index 739c244d4ab51..fd3bfbc845009 100644 --- a/multimedia/dragon/Makefile +++ b/multimedia/dragon/Makefile @@ -15,9 +15,9 @@ USE_KDE= auth codecs completion config configwidgets coreaddons crash \ dbusaddons doctools kio service sonnet textwidgets i18n \ iconthemes jobwidgets notifications parts solid widgetsaddons \ windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus gui network phonon4 widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 CONFLICTS_INSTALL= dragon # bin/dragon diff --git a/multimedia/dvbcut/Makefile b/multimedia/dvbcut/Makefile index 081ff7a228d63..3ba45074085a7 100644 --- a/multimedia/dvbcut/Makefile +++ b/multimedia/dvbcut/Makefile @@ -21,7 +21,7 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} USES= compiler:c++11-lang desktop-file-utils gl pkgconfig \ qmake:outsource qt:5 shared-mime-info -USE_QT= core gui widgets xml buildtools_build linguisttools_build +USE_QT= core gui widgets xml buildtools:build linguisttools:build USE_GL= gl USE_GITHUB= yes GH_ACCOUNT= bernhardu diff --git a/multimedia/ffaudioconverter/Makefile b/multimedia/ffaudioconverter/Makefile index 92cc1fe883d02..fea4ed6a17932 100644 --- a/multimedia/ffaudioconverter/Makefile +++ b/multimedia/ffaudioconverter/Makefile @@ -15,7 +15,7 @@ RUN_DEPENDS= ffmpeg:multimedia/ffmpeg USES= compiler:c++11-lang desktop-file-utils gl qmake qt:5 USE_GITHUB= yes GH_ACCOUNT= Bleuzen -USE_QT= concurrent core gui widgets buildtools_build linguisttools_build +USE_QT= concurrent core gui widgets buildtools:build linguisttools:build USE_GL= gl PLIST_FILES= bin/ffaudioconverter \ diff --git a/multimedia/gstreamer1-plugins/Makefile.common b/multimedia/gstreamer1-plugins/Makefile.common index 5e1d1a5e3ce28..4282b92969ace 100644 --- a/multimedia/gstreamer1-plugins/Makefile.common +++ b/multimedia/gstreamer1-plugins/Makefile.common @@ -402,7 +402,7 @@ gst_pulse_PLIST_FILES= ${GST_LIB_DIR}/libgstpulseaudio.so # qt gst_qt_USES= compiler:c++11-lang qt:5 -gst_qt_USE_QT= core gui declarative buildtools_build network x11extras +gst_qt_USE_QT= core gui declarative buildtools:build network x11extras gst_qt_USE_GSTREAMER= gl gst_qt_PLIST_FILES= ${GST_LIB_DIR}/libgstqmlgl.so diff --git a/multimedia/gstreamer1-qt/Makefile b/multimedia/gstreamer1-qt/Makefile index 8e748bf0b1fc9..59d1cb3e04f2c 100644 --- a/multimedia/gstreamer1-qt/Makefile +++ b/multimedia/gstreamer1-qt/Makefile @@ -21,7 +21,7 @@ CONFLICTS_INSTALL= gstreamer${PKGNAMESUFFIX} USES= bison cmake compiler:c++11-lang gl gnome gstreamer pathfix pkgconfig qt:5 tar:xz USE_GL= gl USE_GNOME= glib20 -USE_QT= buildtools_build qmake_build core declarative gui network opengl \ +USE_QT= buildtools:build qmake:build core declarative gui network opengl \ testlib widgets USE_LDCONFIG= yes diff --git a/multimedia/haruna/Makefile b/multimedia/haruna/Makefile index 9abc3913aa9bd..a61cea4d0611a 100644 --- a/multimedia/haruna/Makefile +++ b/multimedia/haruna/Makefile @@ -17,11 +17,11 @@ USES= cmake compiler:c++11-lang kde:5 qt:5 tar:xz xorg USE_KDE= auth bookmarks codecs completion config configwidgets coreaddons \ doctools filemetadata i18n iconthemes kirigami2 itemviews jobwidgets \ kio service solid widgetsaddons windowsystem xmlgui \ - ecm_build doctools_build \ - breeze_run breeze-icons_run qqc2-desktop-style_run + ecm:build doctools:build \ + breeze:run breeze-icons:run qqc2-desktop-style:run USE_QT= concurrent core dbus declarative gui network quickcontrols2 \ widgets x11extras xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 .include diff --git a/multimedia/kaffeine/Makefile b/multimedia/kaffeine/Makefile index 81cea4b74892a..9c56471de78a6 100644 --- a/multimedia/kaffeine/Makefile +++ b/multimedia/kaffeine/Makefile @@ -20,9 +20,9 @@ USES= cmake compiler:c++11-lang cpe desktop-file-utils gettext \ USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons i18n itemviews kio solid dbusaddons jobwidgets \ service widgetsaddons windowsystem xmlgui \ - doctools_build + doctools:build USE_QT= concurrent core dbus gui network phonon4 sql svg x11extras xml \ - widgets qmake_build buildtools_build + widgets qmake:build buildtools:build USE_XORG= x11 xscrnsaver CPE_VENDOR= kaffeine diff --git a/multimedia/kamoso/Makefile b/multimedia/kamoso/Makefile index 4f50880e77c80..3f0fdbaf4c8f9 100644 --- a/multimedia/kamoso/Makefile +++ b/multimedia/kamoso/Makefile @@ -15,10 +15,10 @@ USE_GNOME= glib20 USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons i18n itemviews jobwidgets kio kirigami2 \ notifications purpose service solid widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus declarative graphicaleffects gui network \ quickcontrols widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 OPTIONS_DEFINE= DOCS diff --git a/multimedia/kdemultimedia-ffmpegthumbs/Makefile b/multimedia/kdemultimedia-ffmpegthumbs/Makefile index 5dd46521e5690..f37050fafb409 100644 --- a/multimedia/kdemultimedia-ffmpegthumbs/Makefile +++ b/multimedia/kdemultimedia-ffmpegthumbs/Makefile @@ -16,7 +16,7 @@ USES= cmake compiler:c++11-lang kde:5 pkgconfig qt:5 tar:xz xorg USE_KDE= completion config coreaddons i18n jobwidgets kio service solid \ widgetsaddons windowsystem USE_QT= concurrent core dbus gui network widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 .include diff --git a/multimedia/kdenlive/Makefile b/multimedia/kdenlive/Makefile index 04b9b5aeaef85..4b80b02955178 100644 --- a/multimedia/kdenlive/Makefile +++ b/multimedia/kdenlive/Makefile @@ -25,12 +25,12 @@ USE_KDE= archive attica auth bookmarks codecs completion config \ kdeclarative newstuff notifications notifyconfig package \ service solid sonnet textwidgets widgetsaddons windowsystem \ xmlgui \ - ecm_build \ - init_run + ecm:build \ + init:run USE_QT= concurrent core dbus declarative gui multimedia network \ networkauth quickcontrols2 xml \ - buildtools_build qmake_build \ - quickcontrols_run script svg webkit widgets + buildtools:build qmake:build \ + quickcontrols:run script svg webkit widgets USE_XORG= x11 CFLAGS+= -isystem${LOCALBASE}/include # linux/input.h CMAKE_ARGS= -DFFMPEG_SUFFIX:STRING="${FFMPEG_SUFX}" diff --git a/multimedia/kf5-kmediaplayer/Makefile b/multimedia/kf5-kmediaplayer/Makefile index 999273298ec38..3b18e6028d01e 100644 --- a/multimedia/kf5-kmediaplayer/Makefile +++ b/multimedia/kf5-kmediaplayer/Makefile @@ -10,9 +10,9 @@ USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz xorg USE_KDE= auth codecs completion config configwidgets coreaddons \ i18n jobwidgets kio parts service solid sonnet textwidgets \ widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus gui network widgets xml \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build USE_XORG= x11 .include diff --git a/multimedia/kmplayer/Makefile b/multimedia/kmplayer/Makefile index 2848b622e74ac..b8164ba408eed 100644 --- a/multimedia/kmplayer/Makefile +++ b/multimedia/kmplayer/Makefile @@ -33,13 +33,13 @@ USES= cmake compiler:c++11-lang cpe desktop-file-utils gettext-runtime \ USE_GNOME= cairo gdkpixbuf2 gtk20 USE_QT= concurrent core dbus gui network phonon4 printsupport \ svg widgets x11extras xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash ecm guiaddons i18n iconthemes init itemviews \ jobwidgets mediaplayer notifications parts service \ textwidgets unitconversion widgetsaddons windowsystem \ xmlgui kdelibs4support kio solid sonnet \ - doctools_build + doctools:build USE_XORG= x11 xcb .include diff --git a/multimedia/libopenshot/Makefile b/multimedia/libopenshot/Makefile index 1b6b3a9864d8c..d0071e89f12ed 100644 --- a/multimedia/libopenshot/Makefile +++ b/multimedia/libopenshot/Makefile @@ -24,7 +24,7 @@ USE_GITHUB= yes GH_ACCOUNT= OpenShot USE_LDCONFIG= yes USE_PYTHON= flavors -USE_QT= core gui network multimedia widgets qmake_build buildtools_build +USE_QT= core gui network multimedia widgets qmake:build buildtools:build CMAKE_ON= USE_SYSTEM_JSONCPP DISABLE_BUNDLED_JSONCPP\ USE_HW_ACCEL ENABLE_PYTHON\ CMAKE_DISABLE_FIND_PACKAGE_Catch2\ diff --git a/multimedia/minitube/Makefile b/multimedia/minitube/Makefile index a67d0795b4b45..52f596ab79e94 100644 --- a/multimedia/minitube/Makefile +++ b/multimedia/minitube/Makefile @@ -24,7 +24,7 @@ GH_TUPLE= \ USE_GL= gl USE_QT= core dbus declarative gui network script sql widgets \ - buildtools_build imageformats_run sql-sqlite3_run \ + buildtools:build imageformats:run sql-sqlite3:run \ x11extras QMAKE_ARGS= QMAKE_LRELEASE=${LRELEASE} \ @@ -32,7 +32,7 @@ QMAKE_ARGS= QMAKE_LRELEASE=${LRELEASE} \ OPTIONS_DEFINE= NLS OPTIONS_SUB= yes -NLS_USE= QT=linguisttools_build +NLS_USE= QT=linguisttools:build post-patch: # Remove BOM diff --git a/multimedia/mkvtoolnix/Makefile b/multimedia/mkvtoolnix/Makefile index 6a7ad593f18d8..f56e5c4f729f4 100644 --- a/multimedia/mkvtoolnix/Makefile +++ b/multimedia/mkvtoolnix/Makefile @@ -26,7 +26,7 @@ LIB_DEPENDS= libvorbis.so:audio/libvorbis \ libgmp.so:math/gmp USES= compiler:c++17-lang iconv localbase pkgconfig qmake:no_env qt:5 tar:xz -USE_QT= buildtools_build concurrent core linguisttools_build multimedia svg +USE_QT= buildtools:build concurrent core linguisttools:build multimedia svg GNU_CONFIGURE= yes CONFIGURE_ENV+= ac_cv_path_PO4A=no diff --git a/multimedia/mlt6-qt5/Makefile b/multimedia/mlt6-qt5/Makefile index fef7bc7449311..55057ea955336 100644 --- a/multimedia/mlt6-qt5/Makefile +++ b/multimedia/mlt6-qt5/Makefile @@ -16,7 +16,7 @@ LIB_DEPENDS= libexif.so:graphics/libexif \ USES= qt:5 xorg USE_CXXSTD= c++11 USE_QT= core gui svg widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 CONFLICTS_INSTALL= mlt7-qt5 diff --git a/multimedia/mlt7-glaxnimate/Makefile b/multimedia/mlt7-glaxnimate/Makefile index 8a16d93261e9a..06e3ed8b2af74 100644 --- a/multimedia/mlt7-glaxnimate/Makefile +++ b/multimedia/mlt7-glaxnimate/Makefile @@ -16,7 +16,7 @@ LIB_DEPENDS= libexif.so:graphics/libexif \ USES= qt:5 xorg USE_CXXSTD= c++11 USE_QT= core gui svg widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 # Only enable Qt binding, and disable everything else diff --git a/multimedia/mlt7-qt5/Makefile b/multimedia/mlt7-qt5/Makefile index 3a14ba98d0ea0..b1b4f5d866131 100644 --- a/multimedia/mlt7-qt5/Makefile +++ b/multimedia/mlt7-qt5/Makefile @@ -16,7 +16,7 @@ LIB_DEPENDS= libexif.so:graphics/libexif \ USES= qt:5 xorg USE_CXXSTD= c++11 USE_QT= core gui svg widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 CONFLICTS_INSTALL= mlt6-qt5 diff --git a/multimedia/mpc-qt/Makefile b/multimedia/mpc-qt/Makefile index e06b230b6d8f0..775c1e8c9f190 100644 --- a/multimedia/mpc-qt/Makefile +++ b/multimedia/mpc-qt/Makefile @@ -15,8 +15,8 @@ LIB_DEPENDS= libmpv.so:multimedia/mpv USES= compiler:c++14-lang desktop-file-utils gl pkgconfig qmake qt:5 USE_GITHUB= yes USE_GL= gl -USE_QT= qmake_build buildtools_build linguisttools_build \ - core dbus gui network svg_run widgets x11extras +USE_QT= qmake:build buildtools:build linguisttools:build \ + core dbus gui network svg:run widgets x11extras QMAKE_ARGS= MPCQT_VERSION="${DISTVERSION}${DISTVERSIONSUFFIX}" OPTIONS_DEFINE= DOCS diff --git a/multimedia/musique/Makefile b/multimedia/musique/Makefile index 675cacbb2fad1..88c5e2ec5377b 100644 --- a/multimedia/musique/Makefile +++ b/multimedia/musique/Makefile @@ -24,7 +24,7 @@ GH_TUPLE= \ flaviotordini:updater:18ce1d0:flaviotordini_updater/lib/updater USE_GL= gl -USE_QT= core dbus declarative gui network sql widgets buildtools_build +USE_QT= core dbus declarative gui network sql widgets buildtools:build QMAKE_ARGS= QMAKE_LRELEASE=${LRELEASE} @@ -34,7 +34,7 @@ OPTIONS_DEFINE= NLS OPTIONS_DEFAULT= NLS OPTIONS_SUB= yes -NLS_USE= QT=linguisttools_build +NLS_USE= QT=linguisttools:build post-patch-NLS-off: @${REINPLACE_CMD} -e '/include(locale\/locale.pri)/d' ${WRKSRC}/${PORTNAME}.pro diff --git a/multimedia/mythtv/Makefile b/multimedia/mythtv/Makefile index bc5310e864477..68e4c7854c39a 100644 --- a/multimedia/mythtv/Makefile +++ b/multimedia/mythtv/Makefile @@ -49,9 +49,9 @@ USE_GITHUB= yes GH_ACCOUNT= MythTV USE_GL= gl USE_LDCONFIG= yes -USE_QT= buildtools_build core dbus gui imageformats_run \ - linguist_build multimedia network opengl qmake_build script \ - sql sql-mysql_run webkit widgets xml +USE_QT= buildtools:build core dbus gui imageformats:run \ + linguist:build multimedia network opengl qmake:build script \ + sql sql-mysql:run webkit widgets xml USE_XORG= x11 xv xrandr xxf86vm xinerama xext xcb HAS_CONFIGURE= yes diff --git a/multimedia/obs-ndi/Makefile b/multimedia/obs-ndi/Makefile index e0df2e978a273..4950fc1ed9d36 100644 --- a/multimedia/obs-ndi/Makefile +++ b/multimedia/obs-ndi/Makefile @@ -16,7 +16,7 @@ RUN_DEPENDS= ${LOCALBASE}/lib/libndi.so:multimedia/libndi USES= cmake compiler:c++11-lang localbase:ldflags qt:5 USE_GITHUB= yes GH_ACCOUNT= Palakis -USE_QT= core gui widgets buildtools_build qmake_build +USE_QT= core gui widgets buildtools:build qmake:build BROKEN= ERROR: NDIlib_v4_load not found in loaded library: https://code.videolan.org/jbk/libndi/-/issues/9, bug#258694 diff --git a/multimedia/obs-scrab/Makefile b/multimedia/obs-scrab/Makefile index aadbe07c36b9c..96a61dff39484 100644 --- a/multimedia/obs-scrab/Makefile +++ b/multimedia/obs-scrab/Makefile @@ -16,7 +16,7 @@ USES= cmake localbase:ldflags qt:5 USE_GITHUB= yes GH_ACCOUNT= univrsal GH_PROJECT= scrab -USE_QT= core gui widgets buildtools_build qmake_build +USE_QT= core gui widgets buildtools:build qmake:build CXXFLAGS+= -I${LOCALBASE}/include/obs diff --git a/multimedia/obs-streamfx/Makefile b/multimedia/obs-streamfx/Makefile index 5d67f269b3dd9..ded6986bbd2f0 100644 --- a/multimedia/obs-streamfx/Makefile +++ b/multimedia/obs-streamfx/Makefile @@ -18,7 +18,7 @@ LIB_DEPENDS= libavcodec.so:multimedia/ffmpeg \ libobs.so:multimedia/obs-studio USES= cmake localbase:ldflags qt:5 # localbase:ldflags is related to https://github.com/Xaymar/obs-StreamFX/issues/828 -USE_QT= core gui widgets buildtools_build qmake_build +USE_QT= core gui widgets buildtools:build qmake:build USE_GITHUB= yes GH_ACCOUNT= Xaymar diff --git a/multimedia/obs-studio/Makefile b/multimedia/obs-studio/Makefile index 70e77690cf683..d75c7a7873249 100644 --- a/multimedia/obs-studio/Makefile +++ b/multimedia/obs-studio/Makefile @@ -51,7 +51,7 @@ LIB_DEPENDS_powerpc64le= libluajit-5.1.so:lang/luajit-openresty USES= cmake compiler:c++17-lang gl gnome lua pkgconfig python:3.4+ \ qt:5 xorg -USE_QT= core gui network svg widgets x11extras xml buildtools_build imageformats_run qmake_build +USE_QT= core gui network svg widgets x11extras xml buildtools:build imageformats:run qmake:build USE_GNOME= glib20 USE_GL= gl USE_XORG= ice sm x11 xcb xcomposite xext xfixes xinerama xrandr diff --git a/multimedia/obs-transition-matrix/Makefile b/multimedia/obs-transition-matrix/Makefile index 044e520d4aba9..230fbdc89a27a 100644 --- a/multimedia/obs-transition-matrix/Makefile +++ b/multimedia/obs-transition-matrix/Makefile @@ -16,7 +16,7 @@ LIB_DEPENDS= libobs.so:multimedia/obs-studio USES= cmake qt:5 compiler:c++11-lang USE_GITHUB= yes GH_ACCOUNT= admshao -USE_QT= core gui widgets buildtools_build qmake_build +USE_QT= core gui widgets buildtools:build qmake:build CMAKE_ARGS= -DLIBOBS_INCLUDE_DIR=${LOCALBASE}/include diff --git a/multimedia/obs-v4l2sink/Makefile b/multimedia/obs-v4l2sink/Makefile index 0b74217e19804..02119fb05c2d2 100644 --- a/multimedia/obs-v4l2sink/Makefile +++ b/multimedia/obs-v4l2sink/Makefile @@ -16,7 +16,7 @@ LIB_DEPENDS= libobs.so:multimedia/obs-studio USES= cmake compiler:c++11-lang qt:5 USE_GITHUB= yes GH_ACCOUNT= CatxFish -USE_QT= core gui widgets buildtools_build qmake_build +USE_QT= core gui widgets buildtools:build qmake:build CMAKE_ARGS= -DLIBOBS_INCLUDE_DIR=${LOCALBASE}/include/obs diff --git a/multimedia/obs-websocket/Makefile b/multimedia/obs-websocket/Makefile index 760f200b217f9..0d31b56aa0fe3 100644 --- a/multimedia/obs-websocket/Makefile +++ b/multimedia/obs-websocket/Makefile @@ -13,7 +13,7 @@ BUILD_DEPENDS= websocketpp>0:devel/websocketpp LIB_DEPENDS= libobs.so:multimedia/obs-studio USES= cmake:insource compiler:c++17-lang localbase:ldflags qt:5 # insource because of https://github.com/obsproject/obs-websocket/issues/973 -USE_QT= core gui widgets buildtools_build concurrent_build qmake_build +USE_QT= core gui widgets buildtools:build concurrent:build qmake:build USE_GITHUB= yes GH_ACCOUNT= obsproject diff --git a/multimedia/olive/Makefile b/multimedia/olive/Makefile index 4abed255847b0..f75f6bec5bc57 100644 --- a/multimedia/olive/Makefile +++ b/multimedia/olive/Makefile @@ -22,7 +22,7 @@ GH_ACCOUNT= olive-editor DOS2UNIX_FILES= olive.pro \ ui/graphview.cpp \ ui/timelineheader.cpp -USE_QT= core gui multimedia network opengl svg widgets buildtools_build linguisttools_build +USE_QT= core gui multimedia network opengl svg widgets buildtools:build linguisttools:build USE_GL= gl DATADIR= ${PREFIX}/share/olive-editor diff --git a/multimedia/opentoonz/Makefile b/multimedia/opentoonz/Makefile index 757a62c05d0ab..da0fb427c6dae 100644 --- a/multimedia/opentoonz/Makefile +++ b/multimedia/opentoonz/Makefile @@ -28,7 +28,7 @@ USE_GITHUB= yes USE_GL= gl glew glu glut USE_QT= core gui multimedia network opengl printsupport \ script serialport svg widgets xml \ - buildtools_build linguisttools_build qmake_build + buildtools:build linguisttools:build qmake:build CMAKE_ARGS= -DWITH_SYSTEM_LZO:BOOL=ON \ -DWITH_SYSTEM_SUPERLU:BOOL=ON CMAKE_SOURCE_PATH= ${WRKSRC}/toonz/sources diff --git a/multimedia/phonon-designerplugin/Makefile b/multimedia/phonon-designerplugin/Makefile index 4569960b8df30..5459e67875567 100644 --- a/multimedia/phonon-designerplugin/Makefile +++ b/multimedia/phonon-designerplugin/Makefile @@ -14,7 +14,7 @@ LICENSE= LGPL21 USES= cmake:insource compiler:c++11-lang kde:5 qt:5 tar:xz USE_KDE= ecm USE_QT= core designer gui phonon4 widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build CMAKE_ON= PHONON_BUILD_PHONON4QT5 PLIST_FILES= ${QT_PLUGINDIR_REL}/designer/phononwidgets.so diff --git a/multimedia/phonon-gstreamer/Makefile b/multimedia/phonon-gstreamer/Makefile index c356f7169c692..cc5e4df8c3fee 100644 --- a/multimedia/phonon-gstreamer/Makefile +++ b/multimedia/phonon-gstreamer/Makefile @@ -18,7 +18,7 @@ USE_GL= gl USE_GNOME= glib20 libxml2 USE_KDE= ecm USE_QT= core gui opengl phonon4 widgets x11extras \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 CMAKE_ON= PHONON_BUILD_PHONON4QT5 diff --git a/multimedia/phonon-vlc/Makefile b/multimedia/phonon-vlc/Makefile index 4fa07ad05d5e0..244668a6311f7 100644 --- a/multimedia/phonon-vlc/Makefile +++ b/multimedia/phonon-vlc/Makefile @@ -20,7 +20,7 @@ USES= cmake pkgconfig tar:xz USES+= compiler:c++11-lang kde:5 qt:5 USE_KDE= ecm USE_QT= core gui widgets phonon4 \ - buildtools_build qmake_build + buildtools:build qmake:build CMAKE_ON= PHONON_BUILD_PHONON4QT5 PHONON_PLUGIN= vlc diff --git a/multimedia/phonon/Makefile b/multimedia/phonon/Makefile index da865359e8d87..e1aa76acc3763 100644 --- a/multimedia/phonon/Makefile +++ b/multimedia/phonon/Makefile @@ -21,7 +21,7 @@ CMAKE_OFF= PHONON_BUILD_DESIGNER_PLUGIN \ USE_LDCONFIG= yes USE_KDE= ecm USE_QT= core dbus gui opengl widgets \ - buildtools_build qmake_build + buildtools:build qmake:build PLIST_SUB= SHLIB_VER=${DISTVERSION} diff --git a/multimedia/qmmp-plugin-pack-qt5/Makefile b/multimedia/qmmp-plugin-pack-qt5/Makefile index 84845d602f2b9..4ae384d23c964 100644 --- a/multimedia/qmmp-plugin-pack-qt5/Makefile +++ b/multimedia/qmmp-plugin-pack-qt5/Makefile @@ -20,7 +20,7 @@ PORTSCOUT= limit:^1\..* USES= cmake pkgconfig qt:5 tar:bzip2 USE_QT= core gui widgets \ - buildtools_build linguisttools_build qmake_build + buildtools:build linguisttools:build qmake:build USE_LDCONFIG= yes OPTIONS_SUB= yes diff --git a/multimedia/qmmp-plugin-pack-qt6/Makefile b/multimedia/qmmp-plugin-pack-qt6/Makefile index 811b041b2a394..dfe04b9a930aa 100644 --- a/multimedia/qmmp-plugin-pack-qt6/Makefile +++ b/multimedia/qmmp-plugin-pack-qt6/Makefile @@ -19,7 +19,7 @@ CONFLICTS= ${PORTNAME}-qt5 PORTSCOUT= limit:^1\..* USES= cmake pkgconfig qt:6 tar:bzip2 -USE_QT= base tools_build +USE_QT= base tools:build USE_LDCONFIG= yes OPTIONS_SUB= yes diff --git a/multimedia/qmmp-qt5/Makefile b/multimedia/qmmp-qt5/Makefile index e76ff5be51a36..1f19cca37ee6a 100644 --- a/multimedia/qmmp-qt5/Makefile +++ b/multimedia/qmmp-qt5/Makefile @@ -18,7 +18,7 @@ PORTSCOUT= limit:^1\..* USES= cmake gnome pathfix pkgconfig tar:bzip2 USE_QT= core gui network widgets xml \ - buildtools_build linguisttools_build qmake_build + buildtools:build linguisttools:build qmake:build USE_LDCONFIG= yes CMAKE_OFF= USE_MMS diff --git a/multimedia/qmmp-qt6/Makefile b/multimedia/qmmp-qt6/Makefile index 4ed77ca25f43c..a97ede3718639 100644 --- a/multimedia/qmmp-qt6/Makefile +++ b/multimedia/qmmp-qt6/Makefile @@ -18,7 +18,7 @@ PORTSCOUT= limit:^1\..* USES= cmake gl gnome pathfix pkgconfig qt:6 tar:bzip2 USE_GL= gl opengl -USE_QT= base_build declarative_build tools_build +USE_QT= base:build declarative:build tools:build USE_LDCONFIG= yes CMAKE_OFF= USE_MMS diff --git a/multimedia/qpwgraph/Makefile b/multimedia/qpwgraph/Makefile index e75082216bdf4..34f3f0c226bd8 100644 --- a/multimedia/qpwgraph/Makefile +++ b/multimedia/qpwgraph/Makefile @@ -12,7 +12,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.md LIB_DEPENDS= libpipewire-0.3.so:multimedia/pipewire USES= cmake pkgconfig qt:5 -USE_QT= core gui network widgets buildtools_build qmake_build +USE_QT= core gui network widgets buildtools:build qmake:build USE_GITLAB= yes GL_SITE= https://gitlab.freedesktop.org diff --git a/multimedia/qt5-multimedia/Makefile b/multimedia/qt5-multimedia/Makefile index a7c958564a5b7..f71d29e039675 100644 --- a/multimedia/qt5-multimedia/Makefile +++ b/multimedia/qt5-multimedia/Makefile @@ -13,7 +13,7 @@ USES= compiler:c++11-lang gl gnome pkgconfig qmake:norecursive \ USE_GL= gl USE_GNOME= glib20 USE_QT= core declarative gui network opengl widgets \ - buildtools_build + buildtools:build USE_XORG= x11 xext xv QT_CONFIG= xlib diff --git a/multimedia/qwinff/Makefile b/multimedia/qwinff/Makefile index 1a1501bef89b8..49551e1128682 100644 --- a/multimedia/qwinff/Makefile +++ b/multimedia/qwinff/Makefile @@ -16,8 +16,8 @@ RUN_DEPENDS= ffmpeg:multimedia/ffmpeg \ USES= cmake:noninja compiler:c++11-lang qt:5 USE_GITHUB= yes -USE_QT= core gui linguisttools network widgets buildtools_build \ - qmake_build +USE_QT= core gui linguisttools network widgets buildtools:build \ + qmake:build post-patch: @${REINPLACE_CMD} -e "s|%%DATADIR%%|${DATADIR}|" \ diff --git a/multimedia/shotcut/Makefile b/multimedia/shotcut/Makefile index a6e5e7ab5ad65..1216cb9ae9ad2 100644 --- a/multimedia/shotcut/Makefile +++ b/multimedia/shotcut/Makefile @@ -22,7 +22,7 @@ GH_ACCOUNT= mltframework USE_GL= gl USE_QT= core declarative gui multimedia network opengl quickcontrols2 sql \ - websockets widgets xml buildtools_build concurrent_build linguisttools_build + websockets widgets xml buildtools:build concurrent:build linguisttools:build USE_SDL= sdl2 USE_XORG= x11 # Needed to be able to correctly check for updates in-app. diff --git a/multimedia/simplescreenrecorder/Makefile b/multimedia/simplescreenrecorder/Makefile index 92306902fed75..799cf6d4f9dc9 100644 --- a/multimedia/simplescreenrecorder/Makefile +++ b/multimedia/simplescreenrecorder/Makefile @@ -12,7 +12,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libavformat.so:multimedia/ffmpeg USES= cmake compiler:c++11-lang pkgconfig qt:5 xorg -USE_QT= core gui widgets x11extras buildtools_build linguisttools_build qmake_build +USE_QT= core gui widgets x11extras buildtools:build linguisttools:build qmake:build USE_XORG= x11 xext xfixes xi xinerama USE_GITHUB= yes diff --git a/multimedia/smplayer-skins/Makefile b/multimedia/smplayer-skins/Makefile index 41624f93f2520..f6b305cb29ae9 100644 --- a/multimedia/smplayer-skins/Makefile +++ b/multimedia/smplayer-skins/Makefile @@ -10,7 +10,7 @@ COMMENT= Skins for SMPlayer (Skinnable GUI) WWW= http://smplayer.sourceforge.net/ USES= qt:5 tar:bzip2 -USE_QT= buildtools_build +USE_QT= buildtools:build NO_ARCH= yes diff --git a/multimedia/smplayer-themes/Makefile b/multimedia/smplayer-themes/Makefile index 2d693a00db619..38b94dc25bbc4 100644 --- a/multimedia/smplayer-themes/Makefile +++ b/multimedia/smplayer-themes/Makefile @@ -10,7 +10,7 @@ COMMENT= Themes for SMPlayer WWW= http://smplayer.sourceforge.net/ USES= qt:5 tar:bzip2 -USE_QT= buildtools_build +USE_QT= buildtools:build NO_ARCH= yes diff --git a/multimedia/smplayer/Makefile b/multimedia/smplayer/Makefile index efb5479599623..31cecb9e7ddd3 100644 --- a/multimedia/smplayer/Makefile +++ b/multimedia/smplayer/Makefile @@ -13,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/Copying.txt USES= cpe compiler:c++11-lang desktop-file-utils dos2unix gl \ gmake qmake qt:5 tar:bzip2 xorg USE_GL= gl -USE_QT= buildtools_build linguisttools_build \ +USE_QT= buildtools:build linguisttools:build \ core dbus gui network script widgets xml USE_XORG= x11 xext diff --git a/multimedia/smtube/Makefile b/multimedia/smtube/Makefile index 709afb5b8f1c1..535c73d2f23dd 100644 --- a/multimedia/smtube/Makefile +++ b/multimedia/smtube/Makefile @@ -15,7 +15,7 @@ RUN_DEPENDS= yt-dlp:www/yt-dlp USES= gl gmake qt:5 tar:bzip2 USE_GL= gl -USE_QT= qmake_build buildtools_build linguisttools_build \ +USE_QT= qmake:build buildtools:build linguisttools:build \ core network script gui webkit widgets ALL_TARGET= #empty diff --git a/multimedia/subtitlecomposer/Makefile b/multimedia/subtitlecomposer/Makefile index 4160a19de95e6..6c27e24b0f898 100644 --- a/multimedia/subtitlecomposer/Makefile +++ b/multimedia/subtitlecomposer/Makefile @@ -20,8 +20,8 @@ USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons jobwidgets i18n itemviews kio kross \ parts service solid sonnet textwidgets widgetsaddons \ windowsystem xmlgui \ - doctools_build ecm_build -USE_QT= buildtools_build qmake_build testlib_build \ + doctools:build ecm:build +USE_QT= buildtools:build qmake:build testlib:build \ concurrent core dbus gui network script widgets xml USE_XORG= x11 diff --git a/multimedia/vlc/Makefile b/multimedia/vlc/Makefile index 2b9c0eddc1202..550079d0020a5 100644 --- a/multimedia/vlc/Makefile +++ b/multimedia/vlc/Makefile @@ -275,7 +275,7 @@ PULSEAUDIO_LIB_DEPENDS= libpulse.so:audio/pulseaudio PULSEAUDIO_CONFIGURE_ENABLE= pulse QT5_USES= qt:5 -QT5_USE= QT=gui,core,svg,widgets,x11extras,buildtools_build +QT5_USE= QT=gui,core,svg,widgets,x11extras,buildtools:build QT5_CONFIGURE_ENABLE= qt QT5_IMPLIES= X11 diff --git a/multimedia/webcamoid/Makefile b/multimedia/webcamoid/Makefile index 259238581cd42..749b1b4ad6b35 100644 --- a/multimedia/webcamoid/Makefile +++ b/multimedia/webcamoid/Makefile @@ -22,7 +22,7 @@ USE_GITHUB= yes USE_GNOME= glib20 USE_GL= gl USE_QT= concurrent core declarative gui multimedia network opengl quickcontrols2 svg widgets xml \ - buildtools_build quickcontrols_run + buildtools:build quickcontrols:run MAKE_ENV= NOOSS=1 # NOOSS is because the OSS module attempts to use kevent on OSS devices, which is broken in the base QMAKE_ARGS= INSTALLQMLDIR=${QT_QMLDIR} \ diff --git a/multimedia/zart/Makefile b/multimedia/zart/Makefile index b5475892f0c8a..23cb8b8097ab5 100644 --- a/multimedia/zart/Makefile +++ b/multimedia/zart/Makefile @@ -25,7 +25,7 @@ USES= compiler:c++11-lang pkgconfig qmake qt:5 USE_GITHUB= yes GH_ACCOUNT= c-koi GH_TAGNAME= 099554f -USE_QT= core gui network widgets xml buildtools_build +USE_QT= core gui network widgets xml buildtools:build GMIC_VERSION= 2.8.1 diff --git a/net-im/beebeep/Makefile b/net-im/beebeep/Makefile index a02b7387c097a..f5871657e0e81 100644 --- a/net-im/beebeep/Makefile +++ b/net-im/beebeep/Makefile @@ -17,7 +17,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= compiler:c++17-lang pkgconfig \ qmake qt:5 zip USE_QT= core gui multimedia network printsupport widgets x11extras xml \ - buildtools_build linguist_build + buildtools:build linguist:build do-install: ${MKDIR} ${STAGEDIR}${LOCALBASE}/bin ${STAGEDIR}${QT_PLUGINDIR}/ diff --git a/net-im/chatterino2/Makefile b/net-im/chatterino2/Makefile index 1f64015ac043d..26b9649a9daf5 100644 --- a/net-im/chatterino2/Makefile +++ b/net-im/chatterino2/Makefile @@ -18,7 +18,7 @@ LIB_DEPENDS= libboost_system.so:devel/boost-libs \ USES= compiler:c++17-lang gl pkgconfig qmake qt:5 ssl USE_QT= concurrent core gui multimedia network svg widgets \ - buildtools_build qmake_build + buildtools:build qmake:build USE_GL= gl PLIST_FILES= bin/chatterino \ diff --git a/net-im/cutegram/Makefile b/net-im/cutegram/Makefile index cb5d320393000..a36632ca30eb8 100644 --- a/net-im/cutegram/Makefile +++ b/net-im/cutegram/Makefile @@ -24,7 +24,7 @@ GH_SUBDIR= Cutegram/asemantools:tools USES= compiler:c++11-lang desktop-file-utils gl gnome qmake:outsource \ qt:5 ssl USE_GL= gl -USE_QT= qmake_build buildtools_build dbus core declarative graphicaleffects \ +USE_QT= qmake:build buildtools:build dbus core declarative graphicaleffects \ gui multimedia network quickcontrols sql sql-sqlite3 xml \ widgets webkit QMAKE_ARGS= LIBQTELEGRAM_INCLUDE_PATH="${LOCALBASE}/include/libqtelegram-ae" \ diff --git a/net-im/gitterdone/Makefile b/net-im/gitterdone/Makefile index 4e1c4da618a8e..c0957119b0013 100644 --- a/net-im/gitterdone/Makefile +++ b/net-im/gitterdone/Makefile @@ -10,8 +10,8 @@ WWW= https://github.com/trueos/gitterdone LICENSE= BSD2CLAUSE USES= compiler:c++11-lang gl qmake qt:5 shebangfix tar:xz -USE_QT= core gui network linguist_build \ - buildtools_build widgets webkit svg +USE_QT= core gui network linguist:build \ + buildtools:build widgets webkit svg USE_GL+= gl USE_LDCONFIG= yes diff --git a/net-im/kaccounts-integration/Makefile b/net-im/kaccounts-integration/Makefile index 22c65db775958..9bf11365a359c 100644 --- a/net-im/kaccounts-integration/Makefile +++ b/net-im/kaccounts-integration/Makefile @@ -18,8 +18,8 @@ USES= cmake compiler:c++11-lang gettext pkgconfig kde:5 \ USE_KDE= auth codecs config configwidgets coreaddons dbusaddons \ i18n iconthemes kcmutils kdeclarative kio service wallet widgetsaddons \ akonadi \ - ecm_build + ecm:build USE_QT= concurrent core dbus declarative gui network widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build .include diff --git a/net-im/kaccounts-providers/Makefile b/net-im/kaccounts-providers/Makefile index 954d5b09cc377..14dfcafc35e6e 100644 --- a/net-im/kaccounts-providers/Makefile +++ b/net-im/kaccounts-providers/Makefile @@ -17,7 +17,7 @@ USE_GNOME= intltool USE_KDE= config coreaddons i18n kdeclarative kio package service USE_QT= concurrent core dbus declarative gui location network \ xml webchannel webengine \ - buildtools_build qmake_build + buildtools:build qmake:build OPTIONS_DEFINE= DOCS diff --git a/net-im/kaidan/Makefile b/net-im/kaidan/Makefile index 6faaea16ee5bb..58210d81ad650 100644 --- a/net-im/kaidan/Makefile +++ b/net-im/kaidan/Makefile @@ -15,6 +15,6 @@ USES= cmake compiler:c++11-lang desktop-file-utils kde:5 \ USE_KDE= ecm kirigami2 notifications qqc2-desktop-style USE_QT= core dbus declarative gui location multimedia network \ quickcontrols2 sql svg widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build .include diff --git a/net-im/kopete/Makefile b/net-im/kopete/Makefile index 0a36e35993ade..9183d2c3f4d35 100644 --- a/net-im/kopete/Makefile +++ b/net-im/kopete/Makefile @@ -21,11 +21,11 @@ USE_KDE= archive auth bookmarks codecs completion config configwidgets \ khtml kio notifications notifyconfig parts service solid sonnet \ syntaxhighlighting texteditor textwidgets unitconversion wallet widgetsaddons \ windowsystem xmlgui \ - ecm_build + ecm:build # KDE PIM components USE_KDE+= contacts identitymanagement libkleo pimtextedit USE_QT= concurrent core dbus gui network phonon4 printsupport sql widgets xml \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build USE_XORG= x11 SHEBANG_FILES= protocols/winpopup/winpopup-install \ diff --git a/net-im/ktp-accounts-kcm/Makefile b/net-im/ktp-accounts-kcm/Makefile index fc00881c7b496..5b43460377c6b 100644 --- a/net-im/ktp-accounts-kcm/Makefile +++ b/net-im/ktp-accounts-kcm/Makefile @@ -26,9 +26,9 @@ USE_GNOME= intltool USE_KDE= auth codecs config configwidgets coreaddons i18n \ iconthemes itemviews kcmutils kio notifications notifyconfig \ service texteditor wallet widgetsaddons windowsystem \ - ecm_build + ecm:build USE_QT= core dbus declarative gui network sql widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_LDCONFIG= yes OPTIONS_DEFINE= IRC JABBER SALUT DOCS diff --git a/net-im/ktp-approver/Makefile b/net-im/ktp-approver/Makefile index 2873ce512579c..21cd8e6b10bda 100644 --- a/net-im/ktp-approver/Makefile +++ b/net-im/ktp-approver/Makefile @@ -15,9 +15,9 @@ RUN_DEPENDS= ${KDE_PREFIX}/bin/ktp-contactlist:net-im/ktp-contact-list USES= compiler:c++11-lang cmake gettext kde:5 qt:5 tar:xz USE_KDE= config coreaddons dbusaddons service i18n notifications \ - ecm_build + ecm:build USE_QT= core dbus gui network widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build OPTIONS_DEFINE= DOCS diff --git a/net-im/ktp-auth-handler/Makefile b/net-im/ktp-auth-handler/Makefile index 6d5bda951a4ef..412752b2bb81a 100644 --- a/net-im/ktp-auth-handler/Makefile +++ b/net-im/ktp-auth-handler/Makefile @@ -19,9 +19,9 @@ USES= compiler:c++11-lang cmake gettext kde:5 pkgconfig \ qca qt:5 tar:xz xorg USE_KDE= completion config coreaddons i18n jobwidgets kdewebkit \ kio wallet service solid widgetsaddons windowsystem \ - ecm_build + ecm:build USE_QT= concurrent core dbus gui network webkit widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 OPTIONS_DEFINE= DOCS diff --git a/net-im/ktp-call-ui/Makefile b/net-im/ktp-call-ui/Makefile index 9c9500858aeaa..18bba0e0d5707 100644 --- a/net-im/ktp-call-ui/Makefile +++ b/net-im/ktp-call-ui/Makefile @@ -25,9 +25,9 @@ USE_GNOME= glib20 USE_KDE= auth codecs config configwidgets coreaddons iconthemes \ i18n kcmutils kdeclarative notifications package service \ wallet widgetsaddons xmlgui \ - ecm_build + ecm:build USE_QT= core dbus declarative gui network widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS diff --git a/net-im/ktp-common-internals/Makefile b/net-im/ktp-common-internals/Makefile index cdaf8d65d5c56..426c01c0f6edc 100644 --- a/net-im/ktp-common-internals/Makefile +++ b/net-im/ktp-common-internals/Makefile @@ -26,9 +26,9 @@ USE_KDE= auth bookmarks codecs completion config configwidgets \ kio notifications notifyconfig parts people service solid \ sonnet syntaxhighlighting texteditor textwidgets wallet widgetsaddons \ windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus declarative gui network sql widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 USE_LDCONFIG= yes diff --git a/net-im/ktp-contact-list/Makefile b/net-im/ktp-contact-list/Makefile index 6c68edba09cfe..09c3cec32633c 100644 --- a/net-im/ktp-contact-list/Makefile +++ b/net-im/ktp-contact-list/Makefile @@ -17,9 +17,9 @@ USE_KDE= auth codecs completion config configwidgets coreaddons \ dbusaddons i18n iconthemes jobwidgets kcmutils kio \ notifications notifyconfig people service solid wallet widgetsaddons \ windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus gui network widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 OPTIONS_DEFINE= DOCS diff --git a/net-im/ktp-contact-runner/Makefile b/net-im/ktp-contact-runner/Makefile index 8ee783baea10f..1e85a9525c020 100644 --- a/net-im/ktp-contact-runner/Makefile +++ b/net-im/ktp-contact-runner/Makefile @@ -15,9 +15,9 @@ LICENSE_FILE= ${WRKSRC}/COPYING USES= compiler:c++11-lang cmake gettext kde:5 qt:5 tar:xz USE_KDE= config coreaddons i18n package plasma-framework runner \ service wallet \ - ecm_build + ecm:build USE_QT= core dbus gui network widgets xml\ - buildtools_build qmake_build + buildtools:build qmake:build OPTIONS_DEFINE= DOCS diff --git a/net-im/ktp-desktop-applets/Makefile b/net-im/ktp-desktop-applets/Makefile index 8b7821acc2235..b3a5bf47767d9 100644 --- a/net-im/ktp-desktop-applets/Makefile +++ b/net-im/ktp-desktop-applets/Makefile @@ -13,9 +13,9 @@ LICENSE_FILE= ${WRKSRC}/COPYING.LIB USES= compiler:c++11-lang cmake gettext kde:5 qt:5 tar:xz xorg USE_KDE= plasma-framework windowsystem \ - ecm_build + ecm:build USE_QT= core dbus declarative gui network widgets \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 OPTIONS_DEFINE= DOCS diff --git a/net-im/ktp-filetransfer-handler/Makefile b/net-im/ktp-filetransfer-handler/Makefile index 6f2c98c326cea..08052bfaa42ad 100644 --- a/net-im/ktp-filetransfer-handler/Makefile +++ b/net-im/ktp-filetransfer-handler/Makefile @@ -16,9 +16,9 @@ USES= compiler:c++11-lang cmake gettext kde:5 qt:5 tar:xz xorg USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons i18n itemviews jobwidgets kio service solid \ wallet widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus gui network xml widgets \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 OPTIONS_DEFINE= DOCS diff --git a/net-im/ktp-kded-module/Makefile b/net-im/ktp-kded-module/Makefile index 9e7c9a2d9e5ca..3f491b20dcef0 100644 --- a/net-im/ktp-kded-module/Makefile +++ b/net-im/ktp-kded-module/Makefile @@ -17,7 +17,7 @@ USE_KDE= activities auth codecs completion config configwidgets coreaddons \ dbusaddons i18n idletime jobwidgets kcmutils kio notifications \ service solid wallet widgetsaddons windowsystem USE_QT= concurrent core dbus gui network sql widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 OPTIONS_DEFINE= DOCS diff --git a/net-im/ktp-send-file/Makefile b/net-im/ktp-send-file/Makefile index 9eb2143322615..bb135c7a0eb7c 100644 --- a/net-im/ktp-send-file/Makefile +++ b/net-im/ktp-send-file/Makefile @@ -18,9 +18,9 @@ USES= compiler:c++11-lang cmake gettext kde:5 qt:5 tar:xz xorg USE_KDE= auth codecs completion config configwidgets coreaddons \ i18n iconthemes jobwidgets kcmutils kio service solid wallet \ widgetsaddons windowsystem \ - ecm_build + ecm:build USE_QT= concurrent core dbus gui network widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 OPTIONS_DEFINE= DOCS diff --git a/net-im/ktp-text-ui/Makefile b/net-im/ktp-text-ui/Makefile index a6bded6c509d5..65ac865e96abf 100644 --- a/net-im/ktp-text-ui/Makefile +++ b/net-im/ktp-text-ui/Makefile @@ -20,10 +20,10 @@ USE_KDE= archive auth codecs completion config configwidgets coreaddons \ kcmutils kdewebkit kio notifications notifyconfig people \ service solid sonnet textwidgets wallet widgetsaddons windowsystem \ xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus declarative gui location network \ printsupport speech webchannel webengine widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 USE_LDCONFIG= yes diff --git a/net-im/libaccounts-qt5/Makefile b/net-im/libaccounts-qt5/Makefile index a6ebfafcf0283..2f0544669e28b 100644 --- a/net-im/libaccounts-qt5/Makefile +++ b/net-im/libaccounts-qt5/Makefile @@ -16,7 +16,7 @@ LIB_DEPENDS= libaccounts-glib.so:net-im/libaccounts-glib USES= compiler:c++17-lang gettext-runtime gnome qmake \ pathfix pkgconfig python qt:5 tar:bz2 USE_GNOME= glib20 -USE_QT= buildtools_build core qmake_build testlib xml +USE_QT= buildtools:build core qmake:build testlib xml # gitlab variables USE_GITLAB= yes diff --git a/net-im/libqtelegram-ae/Makefile b/net-im/libqtelegram-ae/Makefile index 1549a14ccce74..8109df50dc014 100644 --- a/net-im/libqtelegram-ae/Makefile +++ b/net-im/libqtelegram-ae/Makefile @@ -17,7 +17,7 @@ GH_ACCOUNT= Aseman-Land GH_PROJECT= libqtelegram-aseman-edition USES= compiler:c++11-lang qmake:outsource qt:5 ssl -USE_QT= qmake_build buildtools_build core gui network multimedia +USE_QT= qmake:build buildtools:build core gui network multimedia USE_LDCONFIG= yes post-patch: diff --git a/net-im/libquotient/Makefile b/net-im/libquotient/Makefile index 2ed0adc84bd03..d2a325adce273 100644 --- a/net-im/libquotient/Makefile +++ b/net-im/libquotient/Makefile @@ -13,7 +13,7 @@ CONFLICTS= libqmatrixclient\* USES= cmake compiler:c++14-lang qt:5 tar:xz USE_QT= core gui multimedia network \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build USE_GITHUB= yes GH_ACCOUNT= quotient-im diff --git a/net-im/neochat/Makefile b/net-im/neochat/Makefile index e9fda93183360..b2fac50deee75 100644 --- a/net-im/neochat/Makefile +++ b/net-im/neochat/Makefile @@ -24,9 +24,9 @@ USE_GL= gl USE_QT= core dbus declarative graphicaleffects gui imageformats \ multimedia network quickcontrols quickcontrols2 \ svg widgets xml \ - buildtools_build linguist_build qmake_build + buildtools:build linguist:build qmake:build USE_KDE= config coreaddons dbusaddons i18n itemmodels kirigami2 notifications \ qqc2-desktop-style \ - ecm_build + ecm:build .include diff --git a/net-im/nheko/Makefile b/net-im/nheko/Makefile index 9cc4c609a090c..ce8977c5ec177 100644 --- a/net-im/nheko/Makefile +++ b/net-im/nheko/Makefile @@ -29,8 +29,8 @@ USES= cmake compiler:c++17-lang desktop-file-utils \ localbase:ldflags pkgconfig qt:5 ssl tar:xz USE_QT= concurrent core dbus declarative gui multimedia network \ quickcontrols2 svg widgets \ - graphicaleffects_run \ - buildtools_build linguist_build qmake_build + graphicaleffects:run \ + buildtools:build linguist:build qmake:build # There is one external dependency: lmdb++ # - lmdb++ is a single header file, it just needs to be included diff --git a/net-im/psi/Makefile b/net-im/psi/Makefile index ac19614c38bac..5f7ab2e140323 100644 --- a/net-im/psi/Makefile +++ b/net-im/psi/Makefile @@ -15,7 +15,7 @@ LIB_DEPENDS= libidn.so:dns/libidn USES= cmake compiler:c++11-lang desktop-file-utils minizip pkgconfig \ qca qt:5 tar:xz xorg USE_QT= concurrent core dbus gui multimedia network svg widgets \ - x11extras xml buildtools_build qmake_build imageformats_run + x11extras xml buildtools:build qmake:build imageformats:run USE_XORG= ice sm x11 xcb xext xscrnsaver CMAKE_ARGS= -DIDN_LIBRARY:FILEPATH="${LOCALBASE}/lib/libidn.so" \ diff --git a/net-im/qTox/Makefile b/net-im/qTox/Makefile index 922e9218be222..40e091ced4753 100644 --- a/net-im/qTox/Makefile +++ b/net-im/qTox/Makefile @@ -26,8 +26,8 @@ LIB_DEPENDS= libavcodec.so:multimedia/ffmpeg \ USES= cmake compiler:c++11-lib desktop-file-utils gettext openal:soft pkgconfig qt:5 USE_GITHUB= yes -USE_QT= core gui network xml opengl sql sql-sqlite3_run widgets svg \ - concurrent_build buildtools_build linguisttools_build qmake_build testlib_build +USE_QT= core gui network xml opengl sql sql-sqlite3:run widgets svg \ + concurrent:build buildtools:build linguisttools:build qmake:build testlib:build CMAKE_ARGS= -DGIT_DESCRIBE:STRING=${DISTVERSIONPREFIX}${DISTVERSION}${DISTVERSIONSUFFIX} CMAKE_OFF= USE_CCACHE diff --git a/net-im/quaternion/Makefile b/net-im/quaternion/Makefile index 9e34bfc26be1f..7c8f8535b938c 100644 --- a/net-im/quaternion/Makefile +++ b/net-im/quaternion/Makefile @@ -20,7 +20,7 @@ USES= cmake compiler:c++17-lang gettext-runtime gnome \ USE_GNOME= glib20 USE_QT= core dbus declarative gui multimedia network widgets \ quickcontrols quickcontrols2 \ - buildtools_build linguist_build qmake_build + buildtools:build linguist:build qmake:build USE_GITHUB= yes GH_ACCOUNT= quotient-im diff --git a/net-im/qxmpp-qt5/Makefile b/net-im/qxmpp-qt5/Makefile index df88e7958c876..6ab8edcfe4b7f 100644 --- a/net-im/qxmpp-qt5/Makefile +++ b/net-im/qxmpp-qt5/Makefile @@ -13,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.LGPL USES= cmake compiler:c++17-lang libtool pathfix pkgconfig qt:5 USE_QT= core gui network xml \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build USE_GITHUB= yes GH_ACCOUNT= qxmpp-project diff --git a/net-im/ricochet/Makefile b/net-im/ricochet/Makefile index b989084f2cb8f..55873b6f9f9ae 100644 --- a/net-im/ricochet/Makefile +++ b/net-im/ricochet/Makefile @@ -19,7 +19,7 @@ USES= compiler:c++11-lib gl gmake pkgconfig qmake qt:5 ssl USE_GITHUB= yes GH_ACCOUNT= ricochet-im USE_QT= core declarative gui multimedia network quickcontrols widgets \ - buildtools_build linguisttools_build + buildtools:build linguisttools:build USE_GL= gl QMAKE_ARGS+= DEFINES+=RICOCHET_NO_PORTABLE OPENSSLDIR=${OPENSSLBASE} diff --git a/net-im/ruqola/Makefile b/net-im/ruqola/Makefile index f5b4cc8dbbf1b..10bac95a8345d 100644 --- a/net-im/ruqola/Makefile +++ b/net-im/ruqola/Makefile @@ -20,10 +20,10 @@ USE_KDE= auth bookmarks codecs completion config configwidgets coreaddons crash dbusaddons i18n iconthemes idletime itemviews jobwidgets kio kirigami2 \ notifications notifyconfig prison service solid sonnet syntaxhighlighting \ textwidgets widgetsaddons windowsystem xmlgui \ - doctools_build ecm_build + doctools:build ecm:build USE_QT= concurrent core dbus declarative declarative gui multimedia \ network networkauth speech sql xml websockets widgets \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build USE_XORG= x11 PLIST_SUB= SO_VER=${DISTVERSION} diff --git a/net-im/scudcloud/Makefile b/net-im/scudcloud/Makefile index 9cef2ca790094..37c0200249ece 100644 --- a/net-im/scudcloud/Makefile +++ b/net-im/scudcloud/Makefile @@ -22,7 +22,7 @@ HUNSPELL_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}hunspell>0:textproc/py-hunspell@${P OPTIONS_DEFINE= HUNSPELL USES= gnome python:3.5+ pyqt:5 -USE_PYQT= sip_run pyqt5_run +USE_PYQT= sip:run pyqt5:run USE_GITHUB= yes USE_PYTHON= autoplist distutils optsuffix NO_ARCH= yes diff --git a/net-im/spectral/Makefile b/net-im/spectral/Makefile index 90b05ec85bb74..59bd8e71fcae9 100644 --- a/net-im/spectral/Makefile +++ b/net-im/spectral/Makefile @@ -17,7 +17,7 @@ USES= cmake compiler:c++17-lang gl pkgconfig qt:5 tar:bz2 USE_GL= gl USE_QT= core dbus declarative graphicaleffects gui imageformats \ multimedia network quickcontrols quickcontrols2 svg widgets \ - buildtools_build linguist_build qmake_build testlib_build + buildtools:build linguist:build qmake:build testlib:build CMAKE_ON= USE_INTREE_LIBQMC diff --git a/net-im/teamwords/Makefile b/net-im/teamwords/Makefile index 82cd39011dd7e..f9c9083ac8fc1 100644 --- a/net-im/teamwords/Makefile +++ b/net-im/teamwords/Makefile @@ -12,7 +12,7 @@ LICENSE= LGPL3 USES= compiler:c++11-lang gl qmake qt:5 USE_LDCONFIG= yes -USE_QT= core gui network webkit widgets buildtools_build +USE_QT= core gui network webkit widgets buildtools:build USE_GL= gl QMAKE_ARGS= CONFIG+="configure" diff --git a/net-im/telegram-desktop/Makefile b/net-im/telegram-desktop/Makefile index 5bd0665822090..cb67a778ec67f 100644 --- a/net-im/telegram-desktop/Makefile +++ b/net-im/telegram-desktop/Makefile @@ -58,7 +58,7 @@ GH_PROJECT= tdesktop .if ${FLAVOR} == qt5 USES+= qt:5 -USE_QT= buildtools_build core dbus gui imageformats network qmake_build \ +USE_QT= buildtools:build core dbus gui imageformats network qmake:build \ svg wayland widgets .else USES+= qt:6 diff --git a/net-im/telegramqml/Makefile b/net-im/telegramqml/Makefile index 0991083e234e5..cd256cc14c3a4 100644 --- a/net-im/telegramqml/Makefile +++ b/net-im/telegramqml/Makefile @@ -18,7 +18,7 @@ GH_ACCOUNT= Aseman-Land GH_PROJECT= TelegramQML USES= compiler:c++11-lang qmake:outsource qt:5 ssl -USE_QT= qmake_build buildtools_build core declarative sql xml multimedia +USE_QT= qmake:build buildtools:build core declarative sql xml multimedia USE_LDCONFIG= yes QMAKE_ARGS= BUILD_MODE+=lib \ LIBQTELEGRAM_INCLUDE_PATH="${LOCALBASE}/include/libqtelegram-ae" diff --git a/net-im/telepathy-logger-qt5/Makefile b/net-im/telepathy-logger-qt5/Makefile index a8f99a423e328..1218db54aa826 100644 --- a/net-im/telepathy-logger-qt5/Makefile +++ b/net-im/telepathy-logger-qt5/Makefile @@ -23,7 +23,7 @@ USES= bison:build cmake compiler:c++11-lang gnome kde:5 \ pkgconfig python:3.5+,build qt:5 tar:xz USE_GNOME= glib20 libxml2 USE_KDE= ecm -USE_QT= core buildtools_build dbus network qmake_build xml +USE_QT= core buildtools:build dbus network qmake:build xml CMAKE_ARGS= -DUSE_COMMON_CMAKE_PACKAGE_CONFIG_DIR:BOOL=True USE_LDCONFIG= yes diff --git a/net-im/telepathy-qt/Makefile b/net-im/telepathy-qt/Makefile index 0b46704a59fe2..3ea76878b8a5c 100644 --- a/net-im/telepathy-qt/Makefile +++ b/net-im/telepathy-qt/Makefile @@ -20,7 +20,7 @@ USES= cmake compiler:c++11-lang gettext gnome gstreamer localbase:ldflags pathf pkgconfig python:3.5+,build qt:5 USE_GNOME= glib20 libxslt:build USE_QT= core dbus gui network xml \ - buildtools_build qmake_build testlib_build widgets_build + buildtools:build qmake:build testlib:build widgets:build CMAKE_ON= ENABLE_FARSTREAM CMAKE_DISABLE_FIND_PACKAGE_Doxygen CMAKE_OFF= ENABLE_EXAMPLES ENABLE_FARSIGHT ENABLE_TESTS diff --git a/net-mgmt/nagstamon/Makefile b/net-mgmt/nagstamon/Makefile index 3d2d4c988fd05..3a7a3c012442a 100644 --- a/net-mgmt/nagstamon/Makefile +++ b/net-mgmt/nagstamon/Makefile @@ -26,7 +26,7 @@ CPE_VENDOR= henri_wahl USE_GITHUB= yes GH_ACCOUNT= HenriWahl GH_PROJECT= Nagstamon -USE_PYQT= pyqt5_run sip_run +USE_PYQT= pyqt5:run sip:run USE_PYTHON= autoplist distutils noflavors NO_ARCH= yes diff --git a/net-mgmt/seafile-gui/Makefile b/net-mgmt/seafile-gui/Makefile index 34d7906be8733..e041bd5e1cd11 100644 --- a/net-mgmt/seafile-gui/Makefile +++ b/net-mgmt/seafile-gui/Makefile @@ -27,7 +27,7 @@ GH_PROJECT= seafile-client USE_GNOME= glib20 USE_QT= core dbus gui network widgets \ - qmake_build buildtools_build linguisttools_build + qmake:build buildtools:build linguisttools:build CMAKE_ARGS= -DCMAKE_INCLUDE_PATH:PATH=include/glib-2.0 \ -DOPENSSL_INCLUDE_DIRS=${OPENSSLINC} \ -DOPENSSL_LIBRARIES="-L${OPENSSLLIB} -lcrypto" diff --git a/net-p2p/bitcoin/Makefile b/net-p2p/bitcoin/Makefile index 521c13f063e87..93689e888cd93 100644 --- a/net-p2p/bitcoin/Makefile +++ b/net-p2p/bitcoin/Makefile @@ -26,7 +26,7 @@ SLAVE_PORT?= no .if defined(SLAVE_PORT) && ${SLAVE_PORT} == "no" USES+= desktop-file-utils USE_QT= core gui network widgets \ - buildtools_build linguisttools_build qmake_build + buildtools:build linguisttools:build qmake:build BUILD_DEPENDS+= protoc:devel/protobuf LIB_DEPENDS+= libprotobuf.so:devel/protobuf diff --git a/net-p2p/ktorrent/Makefile b/net-p2p/ktorrent/Makefile index aafd7840a3ef7..27b57fc019a88 100644 --- a/net-p2p/ktorrent/Makefile +++ b/net-p2p/ktorrent/Makefile @@ -22,10 +22,10 @@ USE_KDE= archive auth bookmarks codecs completion config configwidgets \ notifyconfig parts plotting service \ solid sonnet syndication textwidgets widgetsaddons \ windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus declarative gui location network phonon4 printsupport \ script webchannel widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 OPTIONS_DEFINE= DOCS WORKSPACE diff --git a/net-p2p/libktorrent/Makefile b/net-p2p/libktorrent/Makefile index 9fc374696681a..7353cb5f9c366 100644 --- a/net-p2p/libktorrent/Makefile +++ b/net-p2p/libktorrent/Makefile @@ -13,9 +13,9 @@ LIB_DEPENDS= libgcrypt.so:security/libgcrypt \ USES= cmake compiler:c++11-lang gettext kde:5 qca qt:5 tar:xz xorg USE_KDE= archive completion config coreaddons crash i18n \ jobwidgets kio service solid widgetsaddons windowsystem \ - ecm_build + ecm:build USE_QT= concurrent core dbus gui network widgets xml \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build USE_XORG= x11 OPTIONS_DEFINE= DOCS diff --git a/net-p2p/litecoin/Makefile b/net-p2p/litecoin/Makefile index ee7b47b7351e2..33517f0b2bdf5 100644 --- a/net-p2p/litecoin/Makefile +++ b/net-p2p/litecoin/Makefile @@ -24,7 +24,7 @@ SLAVE_PORT?= no .if defined(SLAVE_PORT) && ${SLAVE_PORT} == "no" USES+= desktop-file-utils USE_QT= core gui network widgets \ - buildtools_build linguisttools_build qmake_build + buildtools:build linguisttools:build qmake:build BUILD_DEPENDS+= protoc:devel/protobuf LIB_DEPENDS+= libprotobuf.so:devel/protobuf diff --git a/net-p2p/namecoin/Makefile b/net-p2p/namecoin/Makefile index 468944d48fea8..2fc0bb1c225a5 100644 --- a/net-p2p/namecoin/Makefile +++ b/net-p2p/namecoin/Makefile @@ -26,7 +26,7 @@ SLAVE_PORT?= no .if defined(SLAVE_PORT) && ${SLAVE_PORT} == "no" USES+= desktop-file-utils qt:5 -USE_QT= core buildtools gui linguisttools_build network qmake_build xml widgets +USE_QT= core buildtools gui linguisttools:build network qmake:build xml widgets BUILD_DEPENDS+= protoc:devel/protobuf \ svg2png:graphics/svg2png diff --git a/net-p2p/qbittorrent/Makefile b/net-p2p/qbittorrent/Makefile index 02bf6d8b169a5..161a364f20442 100644 --- a/net-p2p/qbittorrent/Makefile +++ b/net-p2p/qbittorrent/Makefile @@ -21,7 +21,7 @@ nox_PLIST= ${MASTERDIR}/pkg-plist-nox USES= compiler:c++14-lang cpe pkgconfig qmake:no_env qt:5 ssl tar:xz GNU_CONFIGURE= yes -USE_QT= core network sql xml buildtools_build linguisttools_build qmake_build +USE_QT= core network sql xml buildtools:build linguisttools:build qmake:build DESTDIRNAME= INSTALL_ROOT CONFIGURE_ENV+= openssl_CFLAGS="-I${OPENSSLINC}" openssl_LIBS="-L${OPENSSLLIB} -lssl" diff --git a/net-p2p/retroshare/Makefile b/net-p2p/retroshare/Makefile index bb490a545ab8f..77661cf29b6b6 100644 --- a/net-p2p/retroshare/Makefile +++ b/net-p2p/retroshare/Makefile @@ -29,7 +29,7 @@ RS_REVISION= 0e6d27a USE_GNOME= libxml2 libxslt USE_GL= gl USE_QT= core gui multimedia printsupport network widgets xml \ - buildtools_build uitools_build + buildtools:build uitools:build DOS2UNIX_FILES= retroshare-nogui/src/retroshare-nogui.pro \ retroshare-gui/src/gui/elastic/node.cpp diff --git a/net-p2p/torrent-file-editor/Makefile b/net-p2p/torrent-file-editor/Makefile index 34c0669a8da62..23ea32847f694 100644 --- a/net-p2p/torrent-file-editor/Makefile +++ b/net-p2p/torrent-file-editor/Makefile @@ -11,7 +11,7 @@ LICENSE= GPLv3+ USES= cmake compiler:c++11-lang desktop-file-utils qt:5 USE_GITHUB= yes -USE_QT= buildtools_build linguisttools_build qmake_build \ +USE_QT= buildtools:build linguisttools:build qmake:build \ core gui widgets CMAKE_ARGS= -DQT5_BUILD:BOOL=ON \ diff --git a/net-p2p/transmission-qt/Makefile b/net-p2p/transmission-qt/Makefile index 2d87b5ad3725e..40531b695402e 100644 --- a/net-p2p/transmission-qt/Makefile +++ b/net-p2p/transmission-qt/Makefile @@ -6,7 +6,7 @@ LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \ USES= compiler:c++11-lang qt:5 NLS_USES= gettext-runtime:run qt:5 -USE_QT= buildtools_build linguisttools_build qmake_build \ +USE_QT= buildtools:build linguisttools:build qmake:build \ core dbus gui network widgets CMAKE_ON= USE_QT diff --git a/net-p2p/zetacoin/Makefile b/net-p2p/zetacoin/Makefile index 0baff5761e62a..0ca9f0e143749 100644 --- a/net-p2p/zetacoin/Makefile +++ b/net-p2p/zetacoin/Makefile @@ -26,7 +26,7 @@ SLAVE_PORT?= no .if defined(SLAVE_PORT) && ${SLAVE_PORT} == "no" USES+= desktop-file-utils qt:5 USE_QT= core gui network widgets \ - buildtools_build linguisttools_build qmake_build + buildtools:build linguisttools:build qmake:build BUILD_DEPENDS+= protoc:devel/protobuf LIB_DEPENDS+= libprotobuf.so:devel/protobuf diff --git a/net/akonadi-calendar/Makefile b/net/akonadi-calendar/Makefile index bc912289dd145..3d5649a8a1389 100644 --- a/net/akonadi-calendar/Makefile +++ b/net/akonadi-calendar/Makefile @@ -13,12 +13,12 @@ USE_KDE= auth codecs completion config configwidgets coreaddons \ dbusaddons kdelibs4support i18n iconthemes itemmodels \ jobwidgets kio notifications service solid wallet \ widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build # pim components USE_KDE+= akonadi akonadicontacts akonadimime calendarcore calendarutils \ contacts grantleetheme identitymanagement mailtransport mime pimtextedit USE_QT= concurrent core dbus gui network widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 USE_LDCONFIG= yes diff --git a/net/akonadi-contacts/Makefile b/net/akonadi-contacts/Makefile index 26442ae4e4b2c..cf73b42db1057 100644 --- a/net/akonadi-contacts/Makefile +++ b/net/akonadi-contacts/Makefile @@ -17,11 +17,11 @@ USES= cmake compiler:c++11-lib gettext grantlee:5 kde:5 \ USE_KDE= auth codecs completion config configwidgets coreaddons \ dbusaddons i18n iconthemes itemmodels jobwidgets kcmutils kio \ prison service solid sonnet textwidgets widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build # pim components USE_KDE+= akonadi akonadimime calendarcore contacts grantleetheme libkleo mime USE_QT= concurrent core dbus gui network testlib widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 USE_LDCONFIG= yes diff --git a/net/akonadi-mime/Makefile b/net/akonadi-mime/Makefile index ea7143288a3c9..d5576c8e0202b 100644 --- a/net/akonadi-mime/Makefile +++ b/net/akonadi-mime/Makefile @@ -10,11 +10,11 @@ LICENSE= LGPL21 USES= cmake compiler:c++11-lib gettext kde:5 qt:5 shared-mime-info tar:xz USE_KDE= auth codecs config configwidgets coreaddons dbusaddons \ i18n itemmodels kio service widgetsaddons xmlgui \ - ecm_build + ecm:build # pim components USE_KDE+= akonadi mime USE_QT= concurrent core dbus gui network widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr diff --git a/net/akonadi-notes/Makefile b/net/akonadi-notes/Makefile index f3f51886d0d9b..43f56ed567ceb 100644 --- a/net/akonadi-notes/Makefile +++ b/net/akonadi-notes/Makefile @@ -9,11 +9,11 @@ LICENSE= LGPL21 USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= i18n \ - ecm_build + ecm:build # pim components USE_KDE+= akonadi mime USE_QT= core xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr diff --git a/net/akonadi-search/Makefile b/net/akonadi-search/Makefile index 96bd8edb1612a..a2b15c56fc40f 100644 --- a/net/akonadi-search/Makefile +++ b/net/akonadi-search/Makefile @@ -13,11 +13,11 @@ USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons \ crash i18n itemmodels kcmutils package plasma-framework \ runner service widgetsaddons \ - ecm_build + ecm:build # pim components USE_KDE+= akonadi akonadimime calendarcore contacts mime USE_QT= core dbus gui widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr diff --git a/net/avahi-qt5/Makefile b/net/avahi-qt5/Makefile index 8c7dd4cbaafc5..dc6bea621a028 100644 --- a/net/avahi-qt5/Makefile +++ b/net/avahi-qt5/Makefile @@ -15,7 +15,7 @@ PLIST= ${.CURDIR}/pkg-plist AVAHI_SLAVE= qt5 USES= compiler:c++11-lang qt:5 -USE_QT= core buildtools_build +USE_QT= core buildtools:build AVAHI_PKGCONFIG=avahi-qt5.pc .include "${MASTERDIR}/Makefile" diff --git a/net/calendarsupport/Makefile b/net/calendarsupport/Makefile index 058205883ae1c..dab264b23810d 100644 --- a/net/calendarsupport/Makefile +++ b/net/calendarsupport/Makefile @@ -14,14 +14,14 @@ USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz xorg USE_KDE= auth codecs completion config configwidgets coreaddons \ guiaddons i18n iconthemes itemmodels jobwidgets kio service \ solid widgetsaddons windowsystem \ - ecm_build + ecm:build # pim components USE_KDE+= akonadi akonadicalendar akonadinotes calendarcore calendarutils \ holidays identitymanagement mime pimcommon \ pimtextedit USE_QT= concurrent core dbus gui network printsupport uitools \ widgets xml \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build USE_XORG= x11 USE_LDCONFIG= yes diff --git a/net/eventviews/Makefile b/net/eventviews/Makefile index e980094fc094a..fdb1fe9f95182 100644 --- a/net/eventviews/Makefile +++ b/net/eventviews/Makefile @@ -14,13 +14,13 @@ LIB_DEPENDS= libKGantt.so:graphics/kdiagram USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons \ guiaddons i18n iconthemes itemmodels service widgetsaddons \ - ecm_build + ecm:build # pim components USE_KDE+= akonadi akonadicalendar akonadicontacts calendarcore \ calendarsupport calendarutils contacts holidays identitymanagement \ libkdepim mime pimtextedit USE_QT= core gui printsupport uitools widgets xml \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS diff --git a/net/incidenceeditor/Makefile b/net/incidenceeditor/Makefile index 6ac2087749985..0e7123df3d466 100644 --- a/net/incidenceeditor/Makefile +++ b/net/incidenceeditor/Makefile @@ -15,7 +15,7 @@ USES= cmake compiler:c++11-lib gettext grantlee:5 kde:5 qt:5 tar:xz xorg USE_KDE= auth codecs completion config configwidgets coreaddons \ i18n iconthemes itemmodels jobwidgets kio service solid sonnet \ textwidgets wallet widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build # pim components USE_KDE+= akonadi akonadicalendar akonadicontacts akonadimime calendarcore \ calendarsupport calendarutils contacts eventviews grantleetheme \ @@ -23,7 +23,7 @@ USE_KDE+= akonadi akonadicalendar akonadicontacts akonadimime calendarcore \ pimtextedit USE_QT= concurrent core dbus gui network printsupport uitools \ webkit widgets xml \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build USE_XORG= x11 USE_LDCONFIG= yes diff --git a/net/kcalutils/Makefile b/net/kcalutils/Makefile index c72f265593c46..50e3b324f0be8 100644 --- a/net/kcalutils/Makefile +++ b/net/kcalutils/Makefile @@ -10,11 +10,11 @@ LICENSE= LGPL21 USES= cmake compiler:c++11-lib gettext grantlee:5 kde:5 qt:5 tar:xz USE_KDE= codecs config coreaddons i18n iconthemes kdelibs4support \ widgetsaddons \ - ecm_build + ecm:build # pim components USE_KDE+= calendarcore identitymanagement pimtextedit USE_QT= core gui widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr diff --git a/net/kdenetwork-filesharing/Makefile b/net/kdenetwork-filesharing/Makefile index 5220311b9a980..17e550c3c4106 100644 --- a/net/kdenetwork-filesharing/Makefile +++ b/net/kdenetwork-filesharing/Makefile @@ -8,9 +8,9 @@ COMMENT= KDE Filesharing via Samba USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz xorg USE_KDE= auth completion config coreaddons doctools i18n jobwidgets \ kdeclarative kio package service solid widgetsaddons windowsystem \ - ecm_build + ecm:build USE_QT= concurrent core dbus declarative gui network widgets \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 OPTIONS_DEFINE= DOCS diff --git a/net/kf5-kcalendarcore/Makefile b/net/kf5-kcalendarcore/Makefile index 520639749afe4..e8b18b4f2b6bf 100644 --- a/net/kf5-kcalendarcore/Makefile +++ b/net/kf5-kcalendarcore/Makefile @@ -12,9 +12,9 @@ LIB_DEPENDS= libical.so:devel/libical USES= bison cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= init \ - ecm_build + ecm:build USE_QT= core gui \ - buildtools_build qmake_build + buildtools:build qmake:build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr diff --git a/net/kf5-kcontacts/Makefile b/net/kf5-kcontacts/Makefile index 35f1f8749ef58..fb49bf63310c5 100644 --- a/net/kf5-kcontacts/Makefile +++ b/net/kf5-kcontacts/Makefile @@ -13,9 +13,9 @@ RUN_DEPENDS= iso-codes>=0:misc/iso-codes USES= cmake compiler:c++11-lib gettext kde:5 pkgconfig qt:5 tar:xz USE_KDE= codecs config coreaddons i18n \ - ecm_build + ecm:build USE_QT= core gui \ - buildtools_build qmake_build + buildtools:build qmake:build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr diff --git a/net/kf5-kdav/Makefile b/net/kf5-kdav/Makefile index 28174d7daddf7..2cd628140e8c1 100644 --- a/net/kf5-kdav/Makefile +++ b/net/kf5-kdav/Makefile @@ -8,9 +8,9 @@ COMMENT= DAV protocol implementation with KJobs USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= config coreaddons i18n kio service \ - ecm_build + ecm:build USE_QT= concurrent core dbus gui network xml xmlpatterns \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr diff --git a/net/kf5-kholidays/Makefile b/net/kf5-kholidays/Makefile index 8bd6faf2ec4d9..f0afad79cef70 100644 --- a/net/kf5-kholidays/Makefile +++ b/net/kf5-kholidays/Makefile @@ -9,9 +9,9 @@ LICENSE= LGPL21 USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= emoticons init itemmodels itemviews \ - ecm_build + ecm:build USE_QT= core declarative gui network \ - buildtools_build qmake_build + buildtools:build qmake:build USE_LDCONFIG= yes .include diff --git a/net/kf5-kxmlrpcclient/Makefile b/net/kf5-kxmlrpcclient/Makefile index ef1292a4797b0..30fbc4a3ecf53 100644 --- a/net/kf5-kxmlrpcclient/Makefile +++ b/net/kf5-kxmlrpcclient/Makefile @@ -7,8 +7,8 @@ COMMENT= KF5 interaction with XMLRPC services USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= config coreaddons i18n kio service \ - doctools_build ecm_build + doctools:build ecm:build USE_QT= concurrent core dbus gui network xml \ - buildtools_build qmake_build + buildtools:build qmake:build .include diff --git a/net/kf5-syndication/Makefile b/net/kf5-syndication/Makefile index 79984a71170fe..4a4bc57af5bd5 100644 --- a/net/kf5-syndication/Makefile +++ b/net/kf5-syndication/Makefile @@ -10,9 +10,9 @@ LICENSE= LGPL21 USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= codecs service \ - ecm_build + ecm:build USE_QT= core xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_LDCONFIG= yes .include diff --git a/net/kget/Makefile b/net/kget/Makefile index 1fc34ee00b66e..e69edb9ca4668 100644 --- a/net/kget/Makefile +++ b/net/kget/Makefile @@ -24,9 +24,9 @@ USE_KDE= archive auth bookmarks codecs completion config configwidgets \ kdelibs4support kio notifications notifyconfig parts service \ solid sonnet textwidgets unitconversion wallet widgetsaddons \ windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus gui network printsupport sql widgets xml \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build USE_XORG= x11 USE_LDCONFIG= yes diff --git a/net/kidentitymanagement/Makefile b/net/kidentitymanagement/Makefile index 35c762971a768..6a1e1eb09ebee 100644 --- a/net/kidentitymanagement/Makefile +++ b/net/kidentitymanagement/Makefile @@ -11,11 +11,11 @@ USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz xorg USE_KDE= auth codecs completion config configwidgets coreaddons \ emoticons i18n init itemmodels itemviews jobwidgets \ kdelibs4support kio service solid widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build # pim components USE_KDE+= pimtextedit USE_QT= concurrent core dbus gui network widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 USE_LDCONFIG= yes diff --git a/net/kimap/Makefile b/net/kimap/Makefile index a82dcc22e5bc2..b8472e6941ed1 100644 --- a/net/kimap/Makefile +++ b/net/kimap/Makefile @@ -12,11 +12,11 @@ LIB_DEPENDS= libsasl2.so:security/cyrus-sasl2 USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= codecs config coreaddons i18n kio service \ - ecm_build + ecm:build # pim components USE_KDE+= mime USE_QT= concurrent core dbus network \ - buildtools_build qmake_build + buildtools:build qmake:build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr diff --git a/net/kio-gdrive/Makefile b/net/kio-gdrive/Makefile index 0e008dd9cb226..7ab260f3edc2c 100644 --- a/net/kio-gdrive/Makefile +++ b/net/kio-gdrive/Makefile @@ -19,9 +19,9 @@ USE_GNOME= intltool USE_KDE= completion config coreaddons i18n jobwidgets kio \ notifications service solid widgetsaddons windowsystem \ gapi \ - ecm_build + ecm:build USE_QT= concurrent core dbus gui network widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build OPTIONS_DEFINE= DOCS diff --git a/net/kio-zeroconf/Makefile b/net/kio-zeroconf/Makefile index 0d848d543b867..786f224dfd344 100644 --- a/net/kio-zeroconf/Makefile +++ b/net/kio-zeroconf/Makefile @@ -8,7 +8,7 @@ COMMENT= KDE Network monitor for DNS-SD services (Zeroconf) USES= cmake compiler:c++11-lang kde:5 qt:5 tar:xz xorg USE_KDE= config coreaddons dbusaddons dnssd i18n kio service USE_QT= concurrent core dbus network \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 OPTIONS_DEFINE= DOCS diff --git a/net/kitinerary/Makefile b/net/kitinerary/Makefile index 238a8b338d9b5..578f9ef339942 100644 --- a/net/kitinerary/Makefile +++ b/net/kitinerary/Makefile @@ -16,11 +16,11 @@ USES= compiler:c++11-lang cmake gettext gnome kde:5 pkgconfig qt:5 \ shared-mime-info ssl tar:xz USE_GNOME= libxml2 USE_KDE= archive codecs coreaddons i18n \ - ecm_build + ecm:build # Pim components USE_KDE+= calendarcore contacts kpkpass mime USE_QT= core declarative gui network \ - buildtools_build qmake_build + buildtools:build qmake:build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr diff --git a/net/kldap/Makefile b/net/kldap/Makefile index 76eec80cacc18..b498f5de50057 100644 --- a/net/kldap/Makefile +++ b/net/kldap/Makefile @@ -12,11 +12,11 @@ LIB_DEPENDS= libsasl2.so:security/cyrus-sasl2 \ USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= completion config coreaddons i18n kio widgetsaddons service \ - ecm_build + ecm:build # pim components USE_KDE+= mbox USE_QT= concurrent core dbus gui network widgets \ - buildtools_build qmake_build + buildtools:build qmake:build USE_OPENLDAP= yes USE_LDCONFIG= yes diff --git a/net/kmailtransport/Makefile b/net/kmailtransport/Makefile index 12e51dbf86e98..a6c54a4f802da 100644 --- a/net/kmailtransport/Makefile +++ b/net/kmailtransport/Makefile @@ -17,7 +17,7 @@ USE_KDE= auth codecs completion config configwidgets coreaddons i18n \ # pim components USE_KDE+= akonadi akonadimime gapi ksmtp mime pimcommon USE_QT= concurrent core dbus gui network widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 USE_LDCONFIG= yes diff --git a/net/kmbox/Makefile b/net/kmbox/Makefile index 36ddb32181e76..2a0caaceb406f 100644 --- a/net/kmbox/Makefile +++ b/net/kmbox/Makefile @@ -12,7 +12,7 @@ USE_KDE= ecm # pim components USE_KDE+= mime USE_QT= core gui \ - buildtools_build qmake_build + buildtools:build qmake:build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr diff --git a/net/kmime/Makefile b/net/kmime/Makefile index fe84af0f448ab..0d425fd9d44cb 100644 --- a/net/kmime/Makefile +++ b/net/kmime/Makefile @@ -11,9 +11,9 @@ BUILD_DEPENDS= ${LOCALBASE}/include/boost/range/algorithm.hpp:devel/boost-libs USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= codecs emoticons i18n init itemmodels itemviews \ - ecm_build + ecm:build USE_QT= core \ - buildtools_build qmake_build + buildtools:build qmake:build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr diff --git a/net/kontactinterface/Makefile b/net/kontactinterface/Makefile index 6a7280390a55e..f45ce1d3f2977 100644 --- a/net/kontactinterface/Makefile +++ b/net/kontactinterface/Makefile @@ -12,9 +12,9 @@ USE_KDE= auth codecs completion config configwidgets coreaddons \ emoticons i18n iconthemes init itemmodels itemviews jobwidgets \ kdelibs4support kio parts service solid sonnet textwidgets \ widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus gui network widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 USE_LDCONFIG= yes diff --git a/net/kpeoplevcard/Makefile b/net/kpeoplevcard/Makefile index 4966b1be70bb9..8bcb535f2fbfa 100644 --- a/net/kpeoplevcard/Makefile +++ b/net/kpeoplevcard/Makefile @@ -13,9 +13,9 @@ LICENSE_FILE= ${WRKSRC}/COPYING USES= cmake compiler:c++11-lang kde:5 qt:5 tar:xz USE_KDE= contacts coreaddons i18n people \ - ecm_build + ecm:build USE_QT= core gui widgets \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build PLIST_FILES= lib/cmake/KF5PeopleVCard/KF5PeopleVCardConfig.cmake \ ${QT_PLUGINDIR}/kpeople/datasource/KPeopleVCard.so diff --git a/net/kpimtextedit/Makefile b/net/kpimtextedit/Makefile index 9eeb4135c6ca1..904b4a3a1c293 100644 --- a/net/kpimtextedit/Makefile +++ b/net/kpimtextedit/Makefile @@ -12,9 +12,9 @@ USE_KDE= auth codecs completion config configwidgets coreaddons \ emoticons i18n iconthemes init itemmodels itemviews jobwidgets \ kdelibs4support kio service solid sonnet syntaxhighlighting textwidgets \ widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus gui network speech widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 USE_LDCONFIG= yes diff --git a/net/krdc/Makefile b/net/krdc/Makefile index 0d247605984f6..316e368b82209 100644 --- a/net/krdc/Makefile +++ b/net/krdc/Makefile @@ -15,9 +15,9 @@ USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons dnssd doctools i18n iconthemes kcmutils \ notifications notifyconfig service wallet widgetsaddons \ windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= core dbus gui network widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 USE_LDCONFIG= yes diff --git a/net/krfb/Makefile b/net/krfb/Makefile index 075f9865169be..1cce8d9618a22 100644 --- a/net/krfb/Makefile +++ b/net/krfb/Makefile @@ -14,9 +14,9 @@ USES= alias cmake compiler:c++11-lib gettext jpeg \ USE_KDE= auth codecs completion config configwidgets coreaddons \ crash dbusaddons dnssd doctools i18n notifications \ wallet wayland widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= core dbus gui network widgets x11extras xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 xcb xdamage xext xtst OPTIONS_DEFINE= TELEPATHY DOCS diff --git a/net/ksmtp/Makefile b/net/ksmtp/Makefile index ceda6edaa6e6a..73aaaaad73c01 100644 --- a/net/ksmtp/Makefile +++ b/net/ksmtp/Makefile @@ -14,7 +14,7 @@ USE_KDE= config coreaddons i18n kio service # pim components USE_KDE+= mime USE_QT= concurrent core dbus network \ - buildtools_build qmake_build + buildtools:build qmake:build USE_LDCONFIG= yes diff --git a/net/ktnef/Makefile b/net/ktnef/Makefile index ad90a506b6aa6..20586b826011d 100644 --- a/net/ktnef/Makefile +++ b/net/ktnef/Makefile @@ -9,11 +9,11 @@ LICENSE= LGPL21 USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= config coreaddons i18n kdelibs4support \ - ecm_build + ecm:build # pim components USE_KDE+= calendarcore calendarutils contacts USE_QT= core gui widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr diff --git a/net/landrop/Makefile b/net/landrop/Makefile index faed192b99995..d4c048f7001e1 100644 --- a/net/landrop/Makefile +++ b/net/landrop/Makefile @@ -20,7 +20,7 @@ GH_ACCOUNT= LANDrop GH_PROJECT= LANDrop USE_GL= gl -USE_QT= buildtools_build core gui network widgets +USE_QT= buildtools:build core gui network widgets QMAKE_SOURCE_PATH= ${WRKSRC}/LANDrop/LANDrop.pro diff --git a/net/libgravatar/Makefile b/net/libgravatar/Makefile index ce4b434ce86e2..fbf0546ecfb6c 100644 --- a/net/libgravatar/Makefile +++ b/net/libgravatar/Makefile @@ -11,11 +11,11 @@ LICENSE= LGPL21 USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons i18n kio \ service sonnet textwidgets widgetsaddons \ - ecm_build + ecm:build # pim components USE_KDE+= pimcommon USE_QT= concurrent core dbus gui network testlib widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS diff --git a/net/libkgapi/Makefile b/net/libkgapi/Makefile index 65c9dd0063b07..63a9fb7a9d60c 100644 --- a/net/libkgapi/Makefile +++ b/net/libkgapi/Makefile @@ -20,12 +20,12 @@ USE_KDE= auth bookmarks codecs completion config configwidgets \ itemmodels itemviews jobwidgets kdelibs4support kio \ notifications parts service textwidgets unitconversion \ widgetsaddons windowsystem xmlgui solid sonnet wallet \ - ecm_build + ecm:build # pim components USE_KDE+= calendarcore contacts USE_QT= concurrent core dbus declarative gui location network \ printsupport webchannel webengine widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_LDCONFIG= yes diff --git a/net/libksieve/Makefile b/net/libksieve/Makefile index be629d39419c7..35fd7a732df35 100644 --- a/net/libksieve/Makefile +++ b/net/libksieve/Makefile @@ -14,13 +14,13 @@ USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz xorg USE_KDE= archive attica auth codecs completion config configwidgets \ coreaddons i18n iconthemes jobwidgets kio newstuff service \ solid sonnet syntaxhighlighting wallet widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build # pim components USE_KDE+= akonadi identitymanagement libkdepim mailtransport mime \ pimcommon pimtextedit USE_QT= concurrent core dbus declarative gui location network printsupport \ uitools webchannel webengine widgets xml \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build USE_XORG= x11 USE_LDCONFIG= yes diff --git a/net/libkvkontakte/Makefile b/net/libkvkontakte/Makefile index a8e294ece1eee..b93c359fcfb1a 100644 --- a/net/libkvkontakte/Makefile +++ b/net/libkvkontakte/Makefile @@ -15,6 +15,6 @@ LICENSE_FILE= ${WRKSRC}/COPYING.LIB USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= config coreaddons ecm i18n kdewebkit kio service widgetsaddons USE_QT= concurrent core dbus gui network webkit widgets \ - buildtools_build qmake_build + buildtools:build qmake:build .include diff --git a/net/libmaia/Makefile b/net/libmaia/Makefile index 57eb36fb6c94f..127f76b9ae186 100644 --- a/net/libmaia/Makefile +++ b/net/libmaia/Makefile @@ -11,7 +11,7 @@ WWW= https://github.com/wiedi/libmaia USES= compiler:c++11-lang gmake qmake qt:5 USE_GITHUB= yes GH_ACCOUNT= wiedi -USE_QT= buildtools_build network xml +USE_QT= buildtools:build network xml PLIST_FILES= include/maia/maiaObject.h \ include/maia/maiaXmlRpcClient.h \ diff --git a/net/libmediawiki/Makefile b/net/libmediawiki/Makefile index 94d44487b8781..917b0b4a9efb7 100644 --- a/net/libmediawiki/Makefile +++ b/net/libmediawiki/Makefile @@ -14,6 +14,6 @@ LICENSE_FILE= ${WRKSRC}/COPYING.LIB USES= cmake compiler:c++11-lang kde:5 qt:5 tar:xz USE_KDE= coreaddons ecm USE_QT= core network testlib \ - buildtools_build qmake_build + buildtools:build qmake:build .include diff --git a/net/linphone/Makefile b/net/linphone/Makefile index abb3005be7bad..0d07bc4cf2ffd 100644 --- a/net/linphone/Makefile +++ b/net/linphone/Makefile @@ -23,8 +23,8 @@ GL_ACCOUNT= public GL_PROJECT= linphone-desktop GL_COMMIT= da40aed848da44e851d67a2039e7e966c5257d3b USE_QT= concurrent core dbus declarative gui linguisttools network \ - quickcontrols2 speech svg testlib widgets buildtools_build \ - qmake_build graphicaleffects_run quickcontrols_run + quickcontrols2 speech svg testlib widgets buildtools:build \ + qmake:build graphicaleffects:run quickcontrols:run # Linphone's plugin API is implemented in a shared object with rather generic # SONAME and filename, libapp-plugin.so. For classic installation in the diff --git a/net/mailcommon/Makefile b/net/mailcommon/Makefile index ced308aaecbc7..ac75dcc9f7a76 100644 --- a/net/mailcommon/Makefile +++ b/net/mailcommon/Makefile @@ -20,14 +20,14 @@ USE_KDE= archive auth codecs completion config configwidgets coreaddons \ guiaddons i18n iconthemes itemmodels itemviews jobwidgets kio \ service solid sonnet syntaxhighlighting textwidgets wallet \ widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build # pim components USE_KDE+= akonadi akonadicontacts akonadimime contacts grantleetheme identitymanagement \ imap ldap libkdepim libkleo mailimporter \ mailtransport messagelib mime pimcommon pimtextedit USE_QT= concurrent core dbus network xml designer gui multimedia \ phonon4 testlib uiplugin uitools webkit widgets \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 USE_LDCONFIG= yes diff --git a/net/mailimporter/Makefile b/net/mailimporter/Makefile index b4500437c4cd3..fa8f81fa5c4af 100644 --- a/net/mailimporter/Makefile +++ b/net/mailimporter/Makefile @@ -12,11 +12,11 @@ BUILD_DEPENDS= ${LOCALBASE}/include/boost/range/algorithm.hpp:devel/boost-libs USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= auth archive codecs config configwidgets coreaddons i18n itemmodels \ kio service widgetsaddons \ - ecm_build + ecm:build # pim components USE_KDE+= akonadi akonadimime libkdepim mime pimcommon pimtextedit USE_QT= concurrent core dbus gui network uitools widgets xml \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr diff --git a/net/mediastreamer/Makefile b/net/mediastreamer/Makefile index d15abcb90583e..bb5480f77980f 100644 --- a/net/mediastreamer/Makefile +++ b/net/mediastreamer/Makefile @@ -71,7 +71,7 @@ OPUS_LIB_DEPENDS= libopus.so:audio/opus OPUS_CMAKE_BOOL= ENABLE_OPUS QTGL_IMPLIES= VIDEO QTGL_USES= qt:5 -QTGL_USE= QT=core,declarative,gui,network,buildtools_build,qmake_build +QTGL_USE= QT=core,declarative,gui,network,buildtools:build,qmake:build QTGL_CMAKE_BOOL= ENABLE_QT_GL SPEEX_LIB_DEPENDS= libspeex.so:audio/speex SPEEX_CMAKE_BOOL= ENABLE_SPEEX_CODEC diff --git a/net/messagelib/Makefile b/net/messagelib/Makefile index 150b05e8fa607..7df0f58d11ef0 100644 --- a/net/messagelib/Makefile +++ b/net/messagelib/Makefile @@ -22,7 +22,7 @@ USE_KDE= archive auth bookmarks codecs completion config configwidgets \ coreaddons guiaddons i18n iconthemes imap itemmodels itemviews jobwidgets \ kdewebkit kio notifications service solid sonnet syntaxhighlighting \ textwidgets wallet widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build # pim components USE_KDE+= akonadi akonadicontacts akonadimime akonadisearch calendarcore \ contacts grantleetheme gravatar identitymanagement \ @@ -30,7 +30,7 @@ USE_KDE+= akonadi akonadicontacts akonadimime akonadisearch calendarcore \ mime pimcommon pimtextedit USE_QT= concurrent core dbus declarative gui location network printsupport \ uitools webchannel webengine widgets xml \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build USE_XORG= x11 USE_LDCONFIG= yes diff --git a/net/nitroshare/Makefile b/net/nitroshare/Makefile index 20a19dca4228b..33e88b8af9691 100644 --- a/net/nitroshare/Makefile +++ b/net/nitroshare/Makefile @@ -17,7 +17,7 @@ LIB_DEPENDS= libqhttpengine.so:www/qhttpengine \ USES= cmake compiler:c++11-lang qt:5 USE_GITHUB= yes GH_PROJECT= ${PORTNAME}-desktop -USE_QT= core gui network widgets buildtools_build qmake_build +USE_QT= core gui network widgets buildtools:build qmake:build USE_LDCONFIG= yes .include diff --git a/net/pimcommon/Makefile b/net/pimcommon/Makefile index 024727a04f061..5c7416d72f26d 100644 --- a/net/pimcommon/Makefile +++ b/net/pimcommon/Makefile @@ -14,13 +14,13 @@ USE_KDE= archive attica auth codecs completion config configwidgets \ coreaddons dbusaddons emoticons i18n init iconthemes itemmodels itemviews \ jobwidgets kcmutils kio newstuff service solid sonnet textwidgets \ wallet widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build # pim components USE_KDE+= akonadi akonadicontacts akonadisearch contacts grantleetheme imap ldap \ libkdepim mime pimtextedit purpose USE_QT= concurrent core dbus designer gui network printsupport script testlib \ uiplugin uitools webkit widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 USE_LDCONFIG= yes diff --git a/net/py-qt5-networkauth/Makefile b/net/py-qt5-networkauth/Makefile index c8b4c706eccba..4f8bc246ca8a5 100644 --- a/net/py-qt5-networkauth/Makefile +++ b/net/py-qt5-networkauth/Makefile @@ -17,7 +17,7 @@ LIB_DEPENDS= libqscintilla2_qt5.so:devel/qscintilla2-qt5 USES= gl pyqt:5 python:3.8+ qt:5 USE_GL= gl -USE_PYQT= sip_build pyqt5 +USE_PYQT= sip:build pyqt5 USE_PYTHON= concurrent flavors py3kplist USE_QT= core gui network networkauth diff --git a/net/qoauth-qt5/Makefile b/net/qoauth-qt5/Makefile index 6ec7ae90dff06..2bbca7113f359 100644 --- a/net/qoauth-qt5/Makefile +++ b/net/qoauth-qt5/Makefile @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= compiler:c++11-lang qmake:outsource qca qt:5 USE_LDCONFIG= yes -USE_QT= core network testlib buildtools_build qmake_build +USE_QT= core network testlib buildtools:build qmake:build USE_GITHUB= yes GH_ACCOUNT= ayoy diff --git a/net/qt5-network/Makefile b/net/qt5-network/Makefile index 0f6cf1e330d59..c5263f8dd3dfe 100644 --- a/net/qt5-network/Makefile +++ b/net/qt5-network/Makefile @@ -11,7 +11,7 @@ RUN_DEPENDS= ${LOCALBASE}/share/certs/ca-root-nss.crt:security/ca_root_nss USES= compiler:c++11-lang perl5 qmake:no_env qt-dist:5,base ssl USE_PERL5= extract -USE_QT= core buildtools_build +USE_QT= core buildtools:build HAS_CONFIGURE= yes CONFIGURE_ARGS= -no-gui -no-xcb diff --git a/net/qt5-networkauth/Makefile b/net/qt5-networkauth/Makefile index d3a3422d36367..2255dfdc9dbfa 100644 --- a/net/qt5-networkauth/Makefile +++ b/net/qt5-networkauth/Makefile @@ -9,6 +9,6 @@ COMMENT= Qt network auth module USES= compiler:c++11-lang perl5 qmake:no_env qt-dist:5 USE_PERL5= extract USE_QT= core network \ - buildtools_build + buildtools:build .include diff --git a/net/quiterss/Makefile b/net/quiterss/Makefile index 3536b0f9b6333..34a59daac0aae 100644 --- a/net/quiterss/Makefile +++ b/net/quiterss/Makefile @@ -14,8 +14,8 @@ LICENSE_FILE= ${WRKSRC}/COPYING USES= compiler:c++11-lang desktop-file-utils gl pkgconfig \ qmake:outsource qt:5 sqlite -USE_QT= buildtools_build linguisttools_build core xml gui widgets \ - network multimedia printsupport webkit sql sql-sqlite3_run +USE_QT= buildtools:build linguisttools:build core xml gui widgets \ + network multimedia printsupport webkit sql sql-sqlite3:run USE_GL= gl NO_WRKSUBDIR= yes diff --git a/net/rclone-browser/Makefile b/net/rclone-browser/Makefile index 6bc8367dc5b00..088026d12b32a 100644 --- a/net/rclone-browser/Makefile +++ b/net/rclone-browser/Makefile @@ -15,7 +15,7 @@ USES= cmake pkgconfig qt:5 USE_GITHUB= yes GH_ACCOUNT= kapitainsky GH_PROJECT= RcloneBrowser -USE_QT= buildtools_build core gui qmake_build widgets +USE_QT= buildtools:build core gui qmake:build widgets # Prepare for Qt5-5.15 CFLAGS+= -Wno-deprecated diff --git a/net/remmina/Makefile b/net/remmina/Makefile index 7c900da7a8020..8f97ba52850bf 100644 --- a/net/remmina/Makefile +++ b/net/remmina/Makefile @@ -83,7 +83,7 @@ GCRYPT_LIB_DEPENDS= libgcrypt.so:security/libgcrypt GCRYPT_CMAKE_BOOL= WITH_GCRYPT KWALLET_USES= kde:5 qt:5 -KWALLET_USE= kde=wallet qt=buildtools_build,core,gui,qmake_build +KWALLET_USE= kde=wallet qt=buildtools:build,core,gui,qmake:build KWALLET_CMAKE_BOOL= WITH_KF5WALLET NLS_CMAKE_BOOL= WITH_TRANSLATIONS diff --git a/net/rsplib/Makefile b/net/rsplib/Makefile index fa5a8ca97a901..8b2fe1ddd2c92 100644 --- a/net/rsplib/Makefile +++ b/net/rsplib/Makefile @@ -12,7 +12,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING USES= cmake compiler:c++11-lang qt:5 shebangfix tar:xz USE_LDCONFIG= yes -USE_QT= buildtools_build core gui qmake widgets xml +USE_QT= buildtools:build core gui qmake widgets xml CMAKE_ARGS+= -DCMAKE_INSTALL_MANDIR=${PREFIX}/man \ -DDOCSDIR="${DOCSDIR}" \ diff --git a/net/rssguard/Makefile b/net/rssguard/Makefile index d9afbea05964a..ee4bfdaded0ba 100644 --- a/net/rssguard/Makefile +++ b/net/rssguard/Makefile @@ -9,7 +9,7 @@ WWW= https://github.com/martinrotter/rssguard LICENSE= GPLv3+ USES= cmake qt:5 -USE_QT= buildtools_build linguisttools_build qmake_build \ +USE_QT= buildtools:build linguisttools:build qmake:build \ core dbus declarative gui multimedia network sql \ widgets xml USE_GITHUB= yes diff --git a/net/savvycan/Makefile b/net/savvycan/Makefile index 5a08c6593fc8f..fb201fb9c0cb9 100644 --- a/net/savvycan/Makefile +++ b/net/savvycan/Makefile @@ -12,7 +12,7 @@ LICENSE= MIT BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sphinx>=0,1:textproc/py-sphinx@${PY_FLAVOR} USES= compiler:c++11-lang gmake python:build,3.6+ qmake qt:5 -USE_QT= buildtools_build core gui help printsupport serialbus \ +USE_QT= buildtools:build core gui help printsupport serialbus \ serialport websockets-qml widgets USE_GITHUB= yes diff --git a/net/smb4k/Makefile b/net/smb4k/Makefile index eced41c0cdde8..b36c6a3970a2e 100644 --- a/net/smb4k/Makefile +++ b/net/smb4k/Makefile @@ -18,10 +18,10 @@ USE_KDE= auth codecs completion config configwidgets coreaddons crash \ dbusaddons dnssd i18n iconthemes jobwidgets kio notifications \ plasma-framework service solid wallet widgetsaddons \ windowsystem xmlgui \ - doctools_build ecm_build + doctools:build ecm:build USE_QT= concurrent core dbus declarative gui network printsupport \ testlib widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 KDE_INVENT= 992987421af68f2695867722b8dc4ca30a4669ec network diff --git a/net/spoofer/Makefile b/net/spoofer/Makefile index 4aaae16eadadf..57e6344f9a172 100644 --- a/net/spoofer/Makefile +++ b/net/spoofer/Makefile @@ -25,7 +25,7 @@ OPTIONS_DEFAULT=GUI OPTIONS_SUB= yes GUI_USES= gl qt:5 -GUI_USE= GL=gl QT=buildtools_build,qmake_build,core,network,gui,widgets +GUI_USE= GL=gl QT=buildtools:build,qmake:build,core,network,gui,widgets GUI_CONFIGURE_ENABLE= manager GUI_VARS= USE_RC_SUBR=${PORTNAME} diff --git a/net/wireshark/Makefile b/net/wireshark/Makefile index f00d10fc51d59..85add2094feb8 100644 --- a/net/wireshark/Makefile +++ b/net/wireshark/Makefile @@ -81,7 +81,7 @@ CISCODUMP_DESC= Build ciscodump extcap tool OPUS_DESC= Build opus decoder plugin GUI_USES= qt:5 -GUI_USE= qt=core,gui,multimedia,widgets,printsupport,svg,buildtools_build,linguisttools_build,qmake_build +GUI_USE= qt=core,gui,multimedia,widgets,printsupport,svg,buildtools:build,linguisttools:build,qmake:build LTO_CMAKE_BOOL= ENABLE_LTO LUA_USES= lua:51-52 diff --git a/net/wpa_supplicant_gui/Makefile b/net/wpa_supplicant_gui/Makefile index cfb9ea2270ad6..92be0645ef9d0 100644 --- a/net/wpa_supplicant_gui/Makefile +++ b/net/wpa_supplicant_gui/Makefile @@ -15,8 +15,8 @@ LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/../COPYING USES= gl gmake qt:5 xorg -USE_QT= qmake_build buildtools_build linguisttools_build core gui \ - widgets svg_run +USE_QT= qmake:build buildtools:build linguisttools:build core gui \ + widgets svg:run USE_GL= gl ALL_TARGET= wpa_gui-qt4 diff --git a/net/x2goclient/Makefile b/net/x2goclient/Makefile index c5f2dfccf24a4..e6833a5fcec26 100644 --- a/net/x2goclient/Makefile +++ b/net/x2goclient/Makefile @@ -22,7 +22,7 @@ USES= compiler:c++11-lang gl pkgconfig qmake qt:5 xorg USE_GL= gl USE_XORG= x11 xpm USE_QT= core gui network svg widgets x11extras \ - buildtools_build linguisttools_build qmake_build + buildtools:build linguisttools:build qmake:build QMAKE_ARGS= QMAKE_LRELEASE="${LRELEASE}" OPTIONS_DEFINE= DOCS LDAP diff --git a/polish/kadu/Makefile b/polish/kadu/Makefile index 05d6b51554f8a..514d1274af60f 100644 --- a/polish/kadu/Makefile +++ b/polish/kadu/Makefile @@ -40,8 +40,8 @@ USE_GNOME= glib20 USE_QT= concurrent core dbus declarative gui multimedia network \ script scripttools sql webkit widgets x11extras \ xml xmlpatterns \ - buildtools_build linguisttools_build testlib_build \ - qmake_build imageformats_run sql-sqlite3_run + buildtools:build linguisttools:build testlib:build \ + qmake:build imageformats:run sql-sqlite3:run # Setting KADU_VERSION disables git invocation CMAKE_ARGS= -DKADU_VERSION:STRING="${DISTVERSION}" -DWITH_ENCHANT=ON \ -DENABLE_TESTS=OFF diff --git a/polish/qnapi/Makefile b/polish/qnapi/Makefile index 1c8b35dde4742..0c50a70691e0b 100644 --- a/polish/qnapi/Makefile +++ b/polish/qnapi/Makefile @@ -20,7 +20,7 @@ USE_GITHUB= yes USES= compiler:c++11-lib gl pkgconfig qmake qt:5 USE_GL= gl -USE_QT= buildtools_build core gui network widgets xml +USE_QT= buildtools:build core gui network widgets xml CXXFLAGS+= -I${LOCALBASE}/include/maia diff --git a/ports-mgmt/octopkg/Makefile b/ports-mgmt/octopkg/Makefile index cd245f12892cb..0e2e5534cf848 100644 --- a/ports-mgmt/octopkg/Makefile +++ b/ports-mgmt/octopkg/Makefile @@ -16,7 +16,7 @@ USE_GITHUB= yes GH_ACCOUNT= aarnt USE_QT= core concurrent declarative gui linguist network xml widgets \ - buildtools_build + buildtools:build PLIST_FILES= bin/${PORTNAME} \ lib/${PORTNAME}/${PORTNAME}-doas \ diff --git a/ports-mgmt/portrac/Makefile b/ports-mgmt/portrac/Makefile index efdc61df83ac4..d3287d4c0ef1f 100644 --- a/ports-mgmt/portrac/Makefile +++ b/ports-mgmt/portrac/Makefile @@ -13,7 +13,7 @@ LICENSE= BSD2CLAUSE USES= compiler:c++11-lib gl qmake qt:5 tar:bzip2 USE_CXXSTD= c++11 USE_GL= gl -USE_QT= buildtools_build core gui widgets +USE_QT= buildtools:build core gui widgets PLIST_FILES= bin/portrac \ share/portrac/portrac.png \ diff --git a/print/hplip/Makefile b/print/hplip/Makefile index fecead4632c86..f806d60e9e8ac 100644 --- a/print/hplip/Makefile +++ b/print/hplip/Makefile @@ -68,7 +68,7 @@ NETWORK_CONFIGURE_ENABLE= network-build X11_DESC= Graphical User Interface (Qt) X11_CONFIGURE_ENABLE= gui-build qt5 X11_USES= pyqt:5 -X11_USE= PYQT=pyqt5_run +X11_USE= PYQT=pyqt5:run XSANE_DESC= Install XSane for scanning (implies SCAN) XSANE_IMPLIES= SCAN diff --git a/print/limereport/Makefile b/print/limereport/Makefile index 8b5345fd45f13..8c178dd6c6c2b 100644 --- a/print/limereport/Makefile +++ b/print/limereport/Makefile @@ -11,8 +11,8 @@ LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE USES= cmake compiler:c++11-lang dos2unix gl qt:5 -USE_QT+= buildtools_build core gui script sql xml svg quickcontrols2 \ - printsupport uitools network widgets declarative qmake_build +USE_QT+= buildtools:build core gui script sql xml svg quickcontrols2 \ + printsupport uitools network widgets declarative qmake:build USE_GL= gl USE_GITHUB= yes diff --git a/print/lyx/Makefile b/print/lyx/Makefile index a45afd79cebfa..4193e5809c4df 100644 --- a/print/lyx/Makefile +++ b/print/lyx/Makefile @@ -22,7 +22,7 @@ MINOR_VERSION= 6.1 USES= autoreconf compiler:c++11-lang desktop-file-utils gmake iconv \ pkgconfig perl5 python qt:5 shebangfix tar:xz xorg -USE_QT= core concurrent gui svg widgets x11extras buildtools_build qmake_build +USE_QT= core concurrent gui svg widgets x11extras buildtools:build qmake:build USE_XORG= xcb GNU_CONFIGURE= yes CONFIGURE_ARGS= --without-included-boost \ diff --git a/print/miktex/Makefile b/print/miktex/Makefile index e67c41ad34540..e90f7a9eae656 100644 --- a/print/miktex/Makefile +++ b/print/miktex/Makefile @@ -64,7 +64,7 @@ MANPAGES_CMAKE_BOOL= WITH_MAN_PAGES UIQT_CMAKE_BOOL= WITH_UI_QT UIQT_USES= qt:5 gl -UIQT_USE= qt=core,concurrent,declarative,dbus,gui,linguisttools,network,printsupport,script,scripttools,uitools,widgets,xml,buildtools_build,qmake_build gl=gl +UIQT_USE= qt=core,concurrent,declarative,dbus,gui,linguisttools,network,printsupport,script,scripttools,uitools,widgets,xml,buildtools:build,qmake:build gl=gl CMAKE_ARGS= -DMIKTEX_SYSTEM_ETC_FONTS_CONFD_DIR=${LOCALBASE}/etc/fonts/conf.d \ -DMIKTEX_SYSTEM_VAR_CACHE_DIR=${DATADIR}/cache \ diff --git a/print/posterazor/Makefile b/print/posterazor/Makefile index 87a80a64bb4bd..86a57bef4c27f 100644 --- a/print/posterazor/Makefile +++ b/print/posterazor/Makefile @@ -15,7 +15,7 @@ USES= compiler:c++11-lang dos2unix gl localbase:ldflags qmake qt:5 USE_GITHUB= yes GH_ACCOUNT= ehaupt USE_GL= gl -USE_QT= core gui printsupport widgets buildtools_build +USE_QT= core gui printsupport widgets buildtools:build QMAKE_SOURCE_PATH= ${WRKSRC}/src/posterazor.pro diff --git a/print/print-manager/Makefile b/print/print-manager/Makefile index 15fe820453fe1..aecca33560249 100644 --- a/print/print-manager/Makefile +++ b/print/print-manager/Makefile @@ -13,9 +13,9 @@ USE_KDE= auth codecs completion config configwidgets coreaddons \ dbusaddons i18n iconthemes itemviews jobwidgets kcmutils \ kio notifications plasma-framework service solid widgetsaddons \ windowsystem \ - ecm_build + ecm:build USE_QT= concurrent core dbus declarative gui network widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 post-patch: diff --git a/print/qpdfview/Makefile b/print/qpdfview/Makefile index 8678a86868e88..75a643885ab02 100644 --- a/print/qpdfview/Makefile +++ b/print/qpdfview/Makefile @@ -18,7 +18,7 @@ USES= compiler:c++11-lang desktop-file-utils gl pkgconfig qmake qt:5 USE_GL= gl USE_LDCONFIG= yes USE_QT= concurrent core dbus gui imageformats linguisttools \ - printsupport sql sql-sqlite3 svg widgets xml buildtools_build + printsupport sql sql-sqlite3 svg widgets xml buildtools:build QMAKE_SOURCE_PATH= ${PORTNAME}.pro diff --git a/print/qt5-printsupport/Makefile b/print/qt5-printsupport/Makefile index 38fe74a6cafb8..a62b8603597dc 100644 --- a/print/qt5-printsupport/Makefile +++ b/print/qt5-printsupport/Makefile @@ -8,7 +8,7 @@ COMMENT= Qt print support module USES= compiler:c++11-lang perl5 qmake:no_env qt-dist:5,base USE_PERL5= extract -USE_QT= core gui widgets qmake_build buildtools_build +USE_QT= core gui widgets qmake:build buildtools:build HAS_CONFIGURE= yes BUILD_WRKSRC= ${WRKSRC}/src/${PORTNAME} diff --git a/print/scribus-devel/Makefile b/print/scribus-devel/Makefile index f7f9109ce148f..be5eb8c733f23 100644 --- a/print/scribus-devel/Makefile +++ b/print/scribus-devel/Makefile @@ -39,8 +39,8 @@ LIB_DEPENDS= liblcms2.so:graphics/lcms2 \ USES= cmake compiler:c++17-lang desktop-file-utils dos2unix gnome \ jpeg pkgconfig python:3.6+ qt:5 shared-mime-info tar:xz -USE_QT= buildtools_build core declarative gui linguisttools_build \ - network opengl printsupport qmake_build widgets xml +USE_QT= buildtools:build core declarative gui linguisttools:build \ + network opengl printsupport qmake:build widgets xml DOS2UNIX_REGEX= .*\.(cpp|h|txt) USE_GNOME= libxml2 diff --git a/science/avogadro2/Makefile b/science/avogadro2/Makefile index bedc48281854b..59499185dd912 100644 --- a/science/avogadro2/Makefile +++ b/science/avogadro2/Makefile @@ -17,7 +17,7 @@ LIB_DEPENDS= libAvogadroCore.so:science/avogadrolibs \ libMoleQueueClient.so:misc/molequeue USES= cmake compiler:c++11-lang desktop-file-utils gl libarchive qt:5 -USE_QT= core concurrent gui network widgets buildtools_build qmake_build +USE_QT= core concurrent gui network widgets buildtools:build qmake:build USE_GL= gl glew glu USE_LDCONFIG= yes diff --git a/science/avogadrolibs/Makefile b/science/avogadrolibs/Makefile index 9ad02d76245ca..582ad40e44c94 100644 --- a/science/avogadrolibs/Makefile +++ b/science/avogadrolibs/Makefile @@ -51,7 +51,7 @@ OPENGL_USE= GL=gl,glew,glu QT5_CMAKE_BOOL= USE_QT QT5_USES= qt:5 -QT5_USE= QT=core,concurrent,gui,network,svg,widgets,buildtools_build,qmake_build +QT5_USE= QT=core,concurrent,gui,network,svg,widgets,buildtools:build,qmake:build QT5_IMPLIES= OPENGL SPGLIB_DESC= Enable optional features using spglib diff --git a/science/elmerfem/Makefile b/science/elmerfem/Makefile index e28d39ab35826..30a7b9adef4a7 100644 --- a/science/elmerfem/Makefile +++ b/science/elmerfem/Makefile @@ -69,8 +69,8 @@ OCC_CMAKE_ON= -DVTK_DIR=${LOCALBASE}/lib/cmake/vtk-9.0 \ _LIBSTAGEDIR= ${STAGEDIR}/${PREFIX}/lib/elmersolver _PYVERSION= ${PYTHON_VER}${PYTHON_ABIVER} -_QT5_LIBS= buildtools_build concurrent core declarative gui location \ - network opengl printsupport qmake_build script sensors \ +_QT5_LIBS= buildtools:build concurrent core declarative gui location \ + network opengl printsupport qmake:build script sensors \ sql svg webchannel webkit widgets xml .include diff --git a/science/iboview/Makefile b/science/iboview/Makefile index ef39b8c584287..766a460f6ebd2 100644 --- a/science/iboview/Makefile +++ b/science/iboview/Makefile @@ -19,7 +19,7 @@ ONLY_FOR_ARCHS= amd64 USES= blaslapack:openblas fortran gl qmake:outsource qt:5 tar:bz2 USE_GL= gl glu -USE_QT= buildtools_build core gui widgets opengl script svg +USE_QT= buildtools:build core gui widgets opengl script svg PLIST_FILES= bin/iboview diff --git a/science/kalzium/Makefile b/science/kalzium/Makefile index c8c86f84505d2..3b6ee7652626d 100644 --- a/science/kalzium/Makefile +++ b/science/kalzium/Makefile @@ -24,12 +24,12 @@ USE_KDE= auth archive attica bookmarks codecs completion config configwidgets \ khtml kio newstuff notifications parts plotting service solid \ sonnet textwidgets unitconversion widgetsaddons windowsystem \ xmlgui \ - ecm_build + ecm:build USE_OCAML= yes NO_OCAML_RUNDEPENDS= yes USE_QT= concurrent core dbus declarative gui network opengl printsupport script svg \ widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 USE_LDCONFIG= yes diff --git a/science/kst2/Makefile b/science/kst2/Makefile index 70391638d64e9..2074f7dc4790d 100644 --- a/science/kst2/Makefile +++ b/science/kst2/Makefile @@ -19,7 +19,7 @@ LIB_DEPENDS= libgsl.so:math/gsl \ USES= cmake compiler:c++11-lang desktop-file-utils kde:5 pkgconfig \ qt:5 shared-mime-info USE_QT= concurrent core gui network printsupport svg widgets xml \ - buildtools_build linguisttools_build qmake_build + buildtools:build linguisttools:build qmake:build USE_LDCONFIG= yes KST_VERSION= 2.0.8 diff --git a/science/liggghts/Makefile b/science/liggghts/Makefile index 0804f65620a05..f82dddcb90a73 100644 --- a/science/liggghts/Makefile +++ b/science/liggghts/Makefile @@ -23,7 +23,7 @@ LIB_DEPENDS= libexpat.so:textproc/expat2 \ USES= compiler:c++17-lang cmake fortran gl jpeg python qt:5 xorg USE_XORG= ice sm x11 xext xt -USE_QT= core declarative gui network opengl sql widgets qmake_build buildtools_build +USE_QT= core declarative gui network opengl sql widgets qmake:build buildtools:build USE_GL= gl USE_LDCONFIG= yes diff --git a/science/massxpert/Makefile b/science/massxpert/Makefile index 695c763c27fe9..caadb75a9ceac 100644 --- a/science/massxpert/Makefile +++ b/science/massxpert/Makefile @@ -21,8 +21,8 @@ GL_SITE= https://salsa.debian.org/ GL_ACCOUNT= debichem-team GL_COMMIT= a21ad33eee0314df202146392023dfb3868b7d84 USE_GNOME= glib20 -USE_QT= core gui printsupport svg widgets xml buildtools_build \ - qmake_build +USE_QT= core gui printsupport svg widgets xml buildtools:build \ + qmake:build USE_XORG= ice sm x11 xau xcb xdmcp xext xrender .include diff --git a/science/molsketch/Makefile b/science/molsketch/Makefile index 7f7824fe9e9d6..7f4aeb71af130 100644 --- a/science/molsketch/Makefile +++ b/science/molsketch/Makefile @@ -17,7 +17,7 @@ LIB_DEPENDS= libopenbabel.so:science/openbabel USES= cmake:noninja compiler:c++14-lang desktop-file-utils localbase:ldflags \ pkgconfig qt:5 shared-mime-info # build fails with ninja, see https://sourceforge.net/p/molsketch/bugs/41/ -USE_QT= core gui network printsupport svg widgets buildtools_build linguisttools_build qmake_build +USE_QT= core gui network printsupport svg widgets buildtools:build linguisttools:build qmake:build USE_LDCONFIG= ${PREFIX}/lib/molsketch CMAKE_ARGS= -DMSK_PREFIX:STRING=${PREFIX} diff --git a/science/paraview/Makefile b/science/paraview/Makefile index b6e3f60930a52..6493a3ce5c597 100644 --- a/science/paraview/Makefile +++ b/science/paraview/Makefile @@ -63,7 +63,7 @@ USES= alias cmake compiler:c11 eigen:3 fortran gl gnome jpeg localbase \ pkgconfig python qt:5 shebangfix tar:xz xorg USE_GL= gl glew glu glut USE_GNOME= libxml2 -USE_QT= buildtools_build core gui help network opengl qmake_build sql svg \ +USE_QT= buildtools:build core gui help network opengl qmake:build sql svg \ widgets x11extras xmlpatterns USE_XORG= ice sm x11 xau xcb xcursor xdamage xdmcp xext xfixes xorgproto xrender \ xxf86vm diff --git a/science/pulseview/Makefile b/science/pulseview/Makefile index c636f77ba17d0..95c488f726e2b 100644 --- a/science/pulseview/Makefile +++ b/science/pulseview/Makefile @@ -21,7 +21,7 @@ LIB_DEPENDS= libboost_thread.so:devel/boost-libs \ USES= cmake compiler:c++14-lang desktop-file-utils gnome pkgconfig qt:5 USE_GNOME= glibmm glib20 libsigc++20 -USE_QT= buildtools_build core gui linguisttools_build qmake_build svg widgets +USE_QT= buildtools:build core gui linguisttools:build qmake:build svg widgets CMAKE_ARGS+= -DCMAKE_INSTALL_MANDIR:PATH=${MANPREFIX}/man \ -DDISABLE_WERROR:BOOL=TRUE diff --git a/science/py-pymol/Makefile b/science/py-pymol/Makefile index 0c1a7ad8a18f1..557a96a731515 100644 --- a/science/py-pymol/Makefile +++ b/science/py-pymol/Makefile @@ -41,7 +41,7 @@ OPTIONS_SINGLE_GUI= QT5 TK OPTIONS_DEFAULT= QT5 QT5_USES= pyqt:5 -QT5_USE= PYQT=pyqt5_run +QT5_USE= PYQT=pyqt5:run post-patch-TK-on: @${REINPLACE_CMD} -e ' \ diff --git a/science/py-veusz/Makefile b/science/py-veusz/Makefile index 54276771619dd..33b24d000ecd5 100644 --- a/science/py-veusz/Makefile +++ b/science/py-veusz/Makefile @@ -19,7 +19,7 @@ USES= compiler:c++11-lang python:3.5+ pyqt:5 qt:5 shebangfix USE_GITHUB= yes USE_PYQT= pyqt5 sip USE_PYTHON= distutils concurrent autoplist -USE_QT= core gui xml widgets qmake_build +USE_QT= core gui xml widgets qmake:build SHEBANG_FILES= examples/embedexample.py post-install: diff --git a/science/scidavis/Makefile b/science/scidavis/Makefile index 7696ac3f56b8a..203845f00e394 100644 --- a/science/scidavis/Makefile +++ b/science/scidavis/Makefile @@ -20,7 +20,7 @@ USES= cmake compiler:c++17-lang desktop-file-utils gl pkgconfig \ qt:5 shared-mime-info USE_GL= gl glu USE_QT= core gui opengl printsupport svg widgets xml \ - buildtools_build linguisttools_build qmake_build + buildtools:build linguisttools:build qmake:build USE_GITHUB= yes GH_ACCOUNT= highperformancecoder diff --git a/science/shelxle/Makefile b/science/shelxle/Makefile index d156d2c4f8bf3..9cb85ddf906a6 100644 --- a/science/shelxle/Makefile +++ b/science/shelxle/Makefile @@ -12,7 +12,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING USES= compiler:c++11-lang dos2unix gl qmake qt:5 tar:bz2 DOS2UNIX_FILES= shelXle.pro -USE_QT= core gui network opengl widgets buildtools_build +USE_QT= core gui network opengl widgets buildtools:build USE_GL= gl PLIST_FILES= bin/shelxle \ diff --git a/science/step/Makefile b/science/step/Makefile index 7db083b0caba0..f49105d0f5c98 100644 --- a/science/step/Makefile +++ b/science/step/Makefile @@ -18,10 +18,10 @@ USE_KDE= attica auth bookmarks codecs completion config configwidgets \ kdelibs4support khtml kio newstuff notifications parts \ plotting service solid sonnet textwidgets unitconversion \ widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus declarative gui network opengl printsupport svg \ widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 CXXFLAGS_sparc64= -Wno-error=return-type diff --git a/science/vipster/Makefile b/science/vipster/Makefile index 26405e2fb1f18..a755d0f21c06f 100644 --- a/science/vipster/Makefile +++ b/science/vipster/Makefile @@ -33,7 +33,7 @@ CMAKE_OFF= VIPSTER_DOWNLOAD_DEPENDENCIES DESKTOP_DESC= Build QT-based desktop app DESKTOP_CMAKE_BOOL= VIPSTER_DESKTOP DESKTOP_USES= qt:5 -DESKTOP_USE= QT=core,gui,widgets,buildtools_build,qmake_build +DESKTOP_USE= QT=core,gui,widgets,buildtools:build,qmake:build LAMMPS_DESC= Interactive LAMMPS in desktop app LAMMPS_CMAKE_BOOL= VIPSTER_LAMMPS diff --git a/science/xdrawchem/Makefile b/science/xdrawchem/Makefile index 69fa9e399fdf7..b2462ab9dec34 100644 --- a/science/xdrawchem/Makefile +++ b/science/xdrawchem/Makefile @@ -13,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt LIB_DEPENDS= libopenbabel.so:science/openbabel USES= compiler:c++11-lang gl qmake qt:5 -USE_QT= core gui network printsupport svg widgets xml buildtools_build +USE_QT= core gui network printsupport svg widgets xml buildtools:build USE_GL= gl USE_GITLAB= yes diff --git a/security/fwbuilder/Makefile b/security/fwbuilder/Makefile index 5a64565fab6fd..48f5d4cd30e0a 100644 --- a/security/fwbuilder/Makefile +++ b/security/fwbuilder/Makefile @@ -27,9 +27,9 @@ USES= autoreconf:build gmake libtool qmake:no_configure qt:5 ssl USE_GITHUB= yes PLIST_SUB= PORTVERSION=${PORTVERSION} USE_QT= buildtools gui \ - linguist_build \ + linguist:build \ printsupport \ - qmake_build \ + qmake:build \ svg \ xml diff --git a/security/globalprotect-openconnect/Makefile b/security/globalprotect-openconnect/Makefile index 3e2adc4aae17e..094e23f89c5ba 100644 --- a/security/globalprotect-openconnect/Makefile +++ b/security/globalprotect-openconnect/Makefile @@ -14,7 +14,7 @@ LIB_DEPENDS= libopenconnect.so:security/openconnect USES= cmake:noninja qt:5 USE_GITHUB= yes -USE_QT= buildtools core dbus declarative gui location network printsupport qmake_build webchannel webengine websockets widgets +USE_QT= buildtools core dbus declarative gui location network printsupport qmake:build webchannel webengine websockets widgets GH_ACCOUNT= yuezk GH_PROJECT= GlobalProtect-openconnect diff --git a/security/gpgme/Makefile b/security/gpgme/Makefile index 2521bb5920f66..5afaf41f3f23c 100644 --- a/security/gpgme/Makefile +++ b/security/gpgme/Makefile @@ -67,14 +67,14 @@ NO_TEST= yes . if ${SLAVEPORT} == "qt5" LIB_DEPENDS+= libgpgmepp.so:security/gpgme-cpp USES+= compiler:c++11-lib pkgconfig qt:5 -USE_QT= buildtools_build core +USE_QT= buildtools:build core CONFIGURE_ARGS+=--enable-languages="cpp qt" DOCSDIR= ${PORTNAME}${PKGNAMESUFFIX} OPTIONS_DEFINE+= DOXYGEN DOXYGEN_BUILD_DEPENDS= doxygen:devel/doxygen \ dot:graphics/graphviz -TEST_USE= QT=testlib_build +TEST_USE= QT=testlib:build . endif . if ${SLAVEPORT} == "python" diff --git a/security/keepassxc/Makefile b/security/keepassxc/Makefile index 02667c2d6154d..b97c7692c73c7 100644 --- a/security/keepassxc/Makefile +++ b/security/keepassxc/Makefile @@ -23,8 +23,8 @@ LIB_DEPENDS= libargon2.so:security/libargon2 \ USES= cmake compiler:c++17-lang desktop-file-utils pkgconfig qt:5 \ readline shared-mime-info tar:xz xorg -USE_QT= concurrent core dbus gui network svg widgets buildtools_build \ - linguisttools_build qmake_build testlib_build x11extras +USE_QT= concurrent core dbus gui network svg widgets buildtools:build \ + linguisttools:build qmake:build testlib:build x11extras USE_XORG= x11 WRKSRC= ${WRKDIR}/${DISTNAME:S/-src//} diff --git a/security/kf5-kdesu/Makefile b/security/kf5-kdesu/Makefile index 44155e49f970d..e72bea29f65ee 100644 --- a/security/kf5-kdesu/Makefile +++ b/security/kf5-kdesu/Makefile @@ -7,9 +7,9 @@ COMMENT= KF5 integration with su for elevated privileges USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz xorg USE_KDE= config coreaddons dbusaddons i18n pty service \ - ecm_build + ecm:build USE_QT= core dbus xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= ice sm x11 xext .include diff --git a/security/kgpg/Makefile b/security/kgpg/Makefile index 59d92f97c6c8c..412682febae0e 100644 --- a/security/kgpg/Makefile +++ b/security/kgpg/Makefile @@ -15,9 +15,9 @@ USE_KDE= akonadi akonadicontacts archive auth bookmarks codecs \ dbusaddons doctools grantleetheme i18n iconthemes itemmodels itemviews \ jobwidgets kio notifications service solid sonnet textwidgets \ widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus gui network printsupport widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 OPTIONS_DEFINE= DOCS diff --git a/security/kleopatra/Makefile b/security/kleopatra/Makefile index 35cd6ede9d87e..2f107e7347249 100644 --- a/security/kleopatra/Makefile +++ b/security/kleopatra/Makefile @@ -19,9 +19,9 @@ USE_KDE= auth codecs config configwidgets coreaddons crash dbusaddons \ doctools i18n iconthemes itemmodels kcmutils notifications \ service sonnet textwidgets widgetsaddons windowsystem xmlgui \ libkleo mime \ - ecm_build + ecm:build USE_QT= core dbus gui network printsupport testlib widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 OPTIONS_DEFINE= DOCS diff --git a/security/kpkpass/Makefile b/security/kpkpass/Makefile index b603030d299ee..bf62bf18ea7f9 100644 --- a/security/kpkpass/Makefile +++ b/security/kpkpass/Makefile @@ -9,7 +9,7 @@ USES= cmake compiler:c++11-lang gettext kde:5 qt:5 \ shared-mime-info tar:xz USE_KDE= archive ecm USE_QT= core gui testlib \ - buildtools_build qmake_build + buildtools:build qmake:build DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr diff --git a/security/kwalletmanager/Makefile b/security/kwalletmanager/Makefile index 04c4119680441..ef288c093645a 100644 --- a/security/kwalletmanager/Makefile +++ b/security/kwalletmanager/Makefile @@ -13,9 +13,9 @@ USE_KDE= archive auth codecs config configwidgets coreaddons crash \ itemmodels itemviews kcmutils kdelibs4support kio \ jobwidgets notifications service wallet widgetsaddons \ windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus gui network widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 OPTIONS_DEFINE= DOCS diff --git a/security/libkleo/Makefile b/security/libkleo/Makefile index e653245426bfd..1929b6f41a98e 100644 --- a/security/libkleo/Makefile +++ b/security/libkleo/Makefile @@ -18,7 +18,7 @@ USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons \ i18n itemmodels pimtextedit widgetsaddons windowsystem USE_QT= core gui widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build _CORETOOLS= md5sum sha1sum sha256sum sha512sum diff --git a/security/lxqt-openssh-askpass/Makefile b/security/lxqt-openssh-askpass/Makefile index a083c792957a1..0b68b2ec7d2ae 100644 --- a/security/lxqt-openssh-askpass/Makefile +++ b/security/lxqt-openssh-askpass/Makefile @@ -11,7 +11,7 @@ LICENSE= LGPL21+ USES= cmake compiler:c++11-lang gettext-runtime kde:5 lxqt \ pkgconfig qt:5 tar:xz gnome xorg -USE_QT= buildtools_build qmake_build core dbus gui linguisttools \ +USE_QT= buildtools:build qmake:build core dbus gui linguisttools \ svg widgets x11extras xml USE_KDE= windowsystem USE_LXQT= buildtools lxqt diff --git a/security/lxqt-sudo/Makefile b/security/lxqt-sudo/Makefile index deb20921135e5..2698e42b47f73 100644 --- a/security/lxqt-sudo/Makefile +++ b/security/lxqt-sudo/Makefile @@ -13,7 +13,7 @@ RUN_DEPENDS= sudo:security/sudo USES= cmake compiler:c++14-lang gettext kde:5 lxqt qt:5 \ pkgconfig tar:xz gnome xorg -USE_QT= buildtools_build qmake_build core dbus gui svg widgets \ +USE_QT= buildtools:build qmake:build core dbus gui svg widgets \ x11extras xml USE_KDE= windowsystem diff --git a/security/nitrokey-app/Makefile b/security/nitrokey-app/Makefile index 167cb755f2802..4d7709393efab 100644 --- a/security/nitrokey-app/Makefile +++ b/security/nitrokey-app/Makefile @@ -19,7 +19,7 @@ GH_ACCOUNT= Nitrokey GH_TUPLE= Nitrokey:nitrokey-app:${DISTVERSIONPREFIX}${DISTVERSION}\ tplgy:cppcodec:61d9b04:cppcodec -USE_QT= buildtools_build concurrent gui linguisttools_build qmake_build svg widgets +USE_QT= buildtools:build concurrent gui linguisttools:build qmake:build svg widgets post-extract: @${RMDIR} ${WRKSRC}/3rdparty/cppcodec diff --git a/security/openconnect-gui/Makefile b/security/openconnect-gui/Makefile index 40b3bf1cc608d..7ddb88867f26a 100644 --- a/security/openconnect-gui/Makefile +++ b/security/openconnect-gui/Makefile @@ -23,7 +23,7 @@ RUN_DEPENDS= openconnect:security/openconnect \ USES= cmake:insource compiler:c++11-lang pkgconfig qt:5 USE_GITHUB= nodefault GH_TUPLE= qtproject:qt-solutions:a8dda66d:qtsolutions/external/src/qt-solutions-master -USE_QT= buildtools_build concurrent core gui network qmake_build widgets +USE_QT= buildtools:build concurrent core gui network qmake:build widgets CMAKE_ARGS+= -DCMAKE_BUILD_TYPE=Release PLIST_FILES= bin/openconnect-gui diff --git a/security/ophcrack/Makefile b/security/ophcrack/Makefile index a099218ae623c..e6381fdc677b9 100644 --- a/security/ophcrack/Makefile +++ b/security/ophcrack/Makefile @@ -25,7 +25,7 @@ OPTIONS_DEFAULT= X11 X11_DESC= Build with Qt 5 GUI frontend X11_USES= pkgconfig qt:5 -X11_USE= QT=buildtools_build,qmake_build,charts,core,gui,widgets +X11_USE= QT=buildtools:build,qmake:build,charts,core,gui,widgets X11_CONFIGURE_OFF= --disable-gui post-patch: diff --git a/security/pinentry/Makefile b/security/pinentry/Makefile index 6ca0e1fc46253..f0708de888224 100644 --- a/security/pinentry/Makefile +++ b/security/pinentry/Makefile @@ -97,7 +97,7 @@ CONFIGURE_ARGS+=--disable-pinentry-gnome3 .if ${PINENTRY_GUI} == "qt5" USES+= compiler:c++11-lib qt:5 -USE_QT= core gui widgets buildtools_build +USE_QT= core gui widgets buildtools:build PLIST_FILES= bin/pinentry-qt5 CONFIGURE_ARGS+=--enable-pinentry-qt5 \ --program-suffix=5 diff --git a/security/plasma5-kscreenlocker/Makefile b/security/plasma5-kscreenlocker/Makefile index 210444f2191ef..7ba9e78e7c747 100644 --- a/security/plasma5-kscreenlocker/Makefile +++ b/security/plasma5-kscreenlocker/Makefile @@ -20,9 +20,9 @@ USE_KDE= auth codecs config configwidgets coreaddons crash emoticons \ kdeclarative layer-shell-qt notifications package \ plasma-framework service sonnet textwidgets wayland \ widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= core dbus declarative gui network qdbus widgets x11extras xml \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build USE_XORG= ice sm x11 xcb xcursor xext xi CPE_VENDOR= kde diff --git a/security/plasma5-ksshaskpass/Makefile b/security/plasma5-ksshaskpass/Makefile index 954e116caed98..19a6d38b9a108 100644 --- a/security/plasma5-ksshaskpass/Makefile +++ b/security/plasma5-ksshaskpass/Makefile @@ -8,8 +8,8 @@ WWW= https://www.kde.org/plasma-desktop USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= coreaddons i18n wallet widgetsaddons \ - doctools_build ecm_build + doctools:build ecm:build USE_QT= core gui widgets \ - buildtools_build qmake_build + buildtools:build qmake:build .include diff --git a/security/plasma5-kwallet-pam/Makefile b/security/plasma5-kwallet-pam/Makefile index c6f01076fd611..714c3f1295583 100644 --- a/security/plasma5-kwallet-pam/Makefile +++ b/security/plasma5-kwallet-pam/Makefile @@ -12,7 +12,7 @@ LIB_DEPENDS= libgcrypt.so:security/libgcrypt \ USES= cmake gettext kde:5 qt:5 tar:xz USE_KDE= ecm wallet USE_QT= gui \ - buildtools_build qmake_build + buildtools:build qmake:build post-patch: @${REINPLACE_CMD} -e 's,socat,nc,' -e 's,/security,,' \ diff --git a/security/qtkeychain/Makefile b/security/qtkeychain/Makefile index f666872a7a71e..a9b92b829cb78 100644 --- a/security/qtkeychain/Makefile +++ b/security/qtkeychain/Makefile @@ -21,7 +21,7 @@ _WITH_QT6_qt6= ON CMAKE_ARGS= -DBUILD_WITH_QT6=${_WITH_QT6_${FLAVOR}} \ -DQT_MKSPECDIR_REL=${QT_MKSPECDIR_REL} USE_GITHUB= yes -_USE_QT_qt5= core dbus buildtools_build qmake_build +_USE_QT_qt5= core dbus buildtools:build qmake:build _USE_QT_qt6= base USE_QT= ${_USE_QT_${FLAVOR}} GH_ACCOUNT= frankosterfeld @@ -37,8 +37,8 @@ LIBSECRET_DESC= Enable libsecret backend LIBSECRET_LIB_DEPENDS= libsecret-1.so:security/libsecret LIBSECRET_CMAKE_BOOL= LIBSECRET_SUPPORT -_QT_LINGUIST_qt5= linguisttools_build -_QT_LINGUIST_qt6= tools_build +_QT_LINGUIST_qt5= linguisttools:build +_QT_LINGUIST_qt6= tools:build NLS_USE= qt=${_QT_LINGUIST_${FLAVOR}} NLS_CMAKE_BOOL= BUILD_TRANSLATIONS diff --git a/security/spass-qt5/Makefile b/security/spass-qt5/Makefile index a1e61b1188fbe..7bcdca060cc88 100644 --- a/security/spass-qt5/Makefile +++ b/security/spass-qt5/Makefile @@ -4,7 +4,7 @@ PKGNAMESUFFIX= -qt5 COMMENT= Secure password generator with a true RNG (Qt5 GUI) USES= qmake:no_env qt:5 -USE_QT= buildtools_build core gui widgets +USE_QT= buildtools:build core gui widgets MASTERDIR= ${.CURDIR}/../spass diff --git a/security/xca/Makefile b/security/xca/Makefile index 71917f724d404..9d64c47d3390f 100644 --- a/security/xca/Makefile +++ b/security/xca/Makefile @@ -15,7 +15,7 @@ LIB_DEPENDS= libltdl.so:devel/libltdl USES= compiler:c++11-lang desktop-file-utils gmake localbase \ pkgconfig qt:5 shared-mime-info ssl -USE_QT= buildtools_build core gui help linguist_build sql widgets +USE_QT= buildtools:build core gui help linguist:build sql widgets USE_CXXSTD= c++11 GNU_CONFIGURE= yes diff --git a/security/yubikey-manager-qt/Makefile b/security/yubikey-manager-qt/Makefile index f8284724e12ab..deaf894a3c470 100644 --- a/security/yubikey-manager-qt/Makefile +++ b/security/yubikey-manager-qt/Makefile @@ -20,7 +20,7 @@ USES= compiler:c++11-lang gl pkgconfig python:3.5+ qt:5 qmake \ shebangfix USE_GL= gl USE_QT= core declarative graphicaleffects gui network quickcontrols \ - quickcontrols2 svg widgets buildtools_build + quickcontrols2 svg widgets buildtools:build USE_GITHUB= yes GH_ACCOUNT= Yubico diff --git a/security/yubikey-personalization-gui/Makefile b/security/yubikey-personalization-gui/Makefile index 01c6987d0e402..7f9c70bdeb991 100644 --- a/security/yubikey-personalization-gui/Makefile +++ b/security/yubikey-personalization-gui/Makefile @@ -16,7 +16,7 @@ LIB_DEPENDS= libykpers-1.so:security/ykpers \ USES= compiler:c++11-lang pkgconfig qmake qt:5 USE_GITHUB= yes -USE_QT= buildtools_build core gui testlib_build widgets +USE_QT= buildtools:build core gui testlib:build widgets GH_ACCOUNT= Yubico diff --git a/security/yubioath-desktop/Makefile b/security/yubioath-desktop/Makefile index 4ebf2c87bb453..ba0cf1f571dac 100644 --- a/security/yubioath-desktop/Makefile +++ b/security/yubioath-desktop/Makefile @@ -21,7 +21,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}yubikey-manager>=0.7.0:security/py-yubikey-m USES= compiler:c++11-lang desktop-file-utils gl python:3.5+ qmake qt:5 \ shebangfix ssl USE_GL= gl -USE_QT= core declarative gui network quickcontrols2 svg widgets buildtools_build +USE_QT= core declarative gui network quickcontrols2 svg widgets buildtools:build USE_GITHUB= yes GH_ACCOUNT= Yubico diff --git a/sysutils/UEFITool/Makefile b/sysutils/UEFITool/Makefile index ef5072ab60b21..701f9d78402b3 100644 --- a/sysutils/UEFITool/Makefile +++ b/sysutils/UEFITool/Makefile @@ -13,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/../LICENSE.md USES= compiler:c++11-lang gl qmake:outsource qt:5 USE_GITHUB= yes USE_GL= gl -USE_QT= core gui widgets buildtools_build qmake_build +USE_QT= core gui widgets buildtools:build qmake:build WRKSRC_SUBDIR= ${PORTNAME} GH_ACCOUNT= LongSoft diff --git a/sysutils/accounts-qml-module/Makefile b/sysutils/accounts-qml-module/Makefile index eeeb1bbea7b20..f1eec00b6702f 100644 --- a/sysutils/accounts-qml-module/Makefile +++ b/sysutils/accounts-qml-module/Makefile @@ -17,7 +17,7 @@ LIB_DEPENDS= libaccounts-qt5.so:net-im/libaccounts-qt5 \ USES= compiler:c++11-lang gl pkgconfig qmake qt:5 tar:bz2 USE_GL= gl USE_QT= core declarative gui network testlib xml \ - buildtools_build qdoc_build qmake_build + buildtools:build qdoc:build qmake:build # gitlab variables USE_GITLAB= yes GL_ACCOUNT= accounts-sso diff --git a/sysutils/android-file-transfer/Makefile b/sysutils/android-file-transfer/Makefile index 68425866f1b57..c2dfb8a1ffac7 100644 --- a/sysutils/android-file-transfer/Makefile +++ b/sysutils/android-file-transfer/Makefile @@ -39,7 +39,7 @@ PYTHON_CMAKE_BOOL= BUILD_PYTHON PYTHON_PLIST_FILES= %%PYTHON_SITELIBDIR%%/aftl%%PYTHON_EXT_SUFFIX%%.so QT5_USES= qt:5 -QT5_USE= QT=qmake_build,buildtools_build,linguisttools_build,core,gui,network,widgets +QT5_USE= QT=qmake:build,buildtools:build,linguisttools:build,core,gui,network,widgets QT5_CMAKE_BOOL= BUILD_QT_UI QT5_CMAKE_ON= -DDESIRED_QT_VERSION:STRING=5 QT5_PLIST_FILES= bin/android-file-transfer \ diff --git a/sysutils/angrysearch/Makefile b/sysutils/angrysearch/Makefile index 555616540e407..0982317ab624f 100644 --- a/sysutils/angrysearch/Makefile +++ b/sysutils/angrysearch/Makefile @@ -19,7 +19,7 @@ GH_PROJECT= ANGRYsearch USES= python pyqt:5 USE_PYTHON= autoplist distutils noflavors -USE_PYQT= pyqt5_run +USE_PYQT= pyqt5:run post-patch: @${REINPLACE_CMD} -e 's,Linux,${OPSYS}, ; s,linux,${OPSYS:tl}, \ diff --git a/sysutils/baloo-widgets/Makefile b/sysutils/baloo-widgets/Makefile index 9ea6f51b3a3e8..4afd18e28f2bd 100644 --- a/sysutils/baloo-widgets/Makefile +++ b/sysutils/baloo-widgets/Makefile @@ -10,9 +10,9 @@ USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz xorg USE_KDE= baloo completion config coreaddons emoticons filemetadata \ i18n init itemmodels jobwidgets kio service solid \ widgetsaddons windowsystem \ - ecm_build + ecm:build USE_QT= concurrent core dbus gui network testlib widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 USE_LDCONFIG= yes diff --git a/sysutils/bareos-traymonitor/Makefile b/sysutils/bareos-traymonitor/Makefile index ca17ee09c3500..7f18df2180b0f 100644 --- a/sysutils/bareos-traymonitor/Makefile +++ b/sysutils/bareos-traymonitor/Makefile @@ -10,7 +10,7 @@ LIB_DEPENDS+= libqwt5-qt5.so:x11-toolkits/qwt5-qt5 \ CONFLICTS= bareos18-traymonitor bareos19-traymonitor bareos20-traymonitor USES= desktop-file-utils gettext-runtime pkgconfig qt:5 -USE_QT= buildtools_build qmake_build uitools_build gui core widgets +USE_QT= buildtools:build qmake:build uitools:build gui core widgets WITH_BAT= yes PLIST= ${.CURDIR}/pkg-plist diff --git a/sysutils/bareos18-traymonitor/Makefile b/sysutils/bareos18-traymonitor/Makefile index 8911cd7965bda..d716a3f173a9f 100644 --- a/sysutils/bareos18-traymonitor/Makefile +++ b/sysutils/bareos18-traymonitor/Makefile @@ -10,7 +10,7 @@ LIB_DEPENDS+= libqwt5-qt5.so:x11-toolkits/qwt5-qt5 \ CONFLICTS= bacula*-bat bareos-traymonitor USES= pkgconfig gettext-runtime desktop-file-utils qt:5 -USE_QT= buildtools_build qmake_build uitools_build gui core widgets +USE_QT= buildtools:build qmake:build uitools:build gui core widgets WITH_BAT= yes PLIST= ${.CURDIR}/pkg-plist diff --git a/sysutils/bareos19-traymonitor/Makefile b/sysutils/bareos19-traymonitor/Makefile index 08b73bdd8c823..569f712255caa 100644 --- a/sysutils/bareos19-traymonitor/Makefile +++ b/sysutils/bareos19-traymonitor/Makefile @@ -10,7 +10,7 @@ LIB_DEPENDS+= libqwt5-qt5.so:x11-toolkits/qwt5-qt5 \ CONFLICTS= bareos18-traymonitor bareos17-traymonitor bareos-traymonitor USES= desktop-file-utils gettext-runtime pkgconfig qt:5 -USE_QT= buildtools_build qmake_build uitools_build gui core widgets +USE_QT= buildtools:build qmake:build uitools:build gui core widgets WITH_BAT= yes PLIST= ${.CURDIR}/pkg-plist diff --git a/sysutils/bareos20-traymonitor/Makefile b/sysutils/bareos20-traymonitor/Makefile index fd346e6732849..c75159ff10eea 100644 --- a/sysutils/bareos20-traymonitor/Makefile +++ b/sysutils/bareos20-traymonitor/Makefile @@ -10,7 +10,7 @@ LIB_DEPENDS+= libqwt5-qt5.so:x11-toolkits/qwt5-qt5 \ CONFLICTS= bareos-traymonitor bareos18-traymonitor bareos19-traymonitor USES= desktop-file-utils gettext-runtime pkgconfig qt:5 -USE_QT= buildtools_build qmake_build uitools_build gui core widgets +USE_QT= buildtools:build qmake:build uitools:build gui core widgets WITH_BAT= yes PLIST= ${.CURDIR}/pkg-plist diff --git a/sysutils/barrier/Makefile b/sysutils/barrier/Makefile index 2f7714c1f0265..6e7b9abdf0d8b 100644 --- a/sysutils/barrier/Makefile +++ b/sysutils/barrier/Makefile @@ -34,7 +34,7 @@ GUI_DESC= Build configuration utility (requires Qt 5) GUI_LIB_DEPENDS= libcurl.so:ftp/curl \ libdns_sd.so:net/avahi-libdns GUI_USES= qt:5 -GUI_USE= QT=core,gui,network,widgets,buildtools_build,qmake_build +GUI_USE= QT=core,gui,network,widgets,buildtools:build,qmake:build GUI_CMAKE_BOOL= BARRIER_BUILD_GUI post-extract: diff --git a/sysutils/bsdisks/Makefile b/sysutils/bsdisks/Makefile index 9661ae73c2aaa..96f543a847d5e 100644 --- a/sysutils/bsdisks/Makefile +++ b/sysutils/bsdisks/Makefile @@ -10,7 +10,7 @@ LICENSE= BSD3CLAUSE USES= cmake compiler:c++11-lang qt:5 -USE_QT= qmake_build buildtools_build core dbus +USE_QT= qmake:build buildtools:build core dbus USE_GITLAB= yes GL_SITE= https://foss.heptapod.net diff --git a/sysutils/calamares/Makefile b/sysutils/calamares/Makefile index 9baad15557f3c..2ec09ea9ef378 100644 --- a/sysutils/calamares/Makefile +++ b/sysutils/calamares/Makefile @@ -14,10 +14,10 @@ LIB_DEPENDS= libicui18n.so:devel/icu \ USES= cmake compiler:c++17-lang cpe gettext kde:5 python qt:5 USE_KDE= coreaddons dbusaddons \ - ecm_build + ecm:build USE_QT= concurrent core dbus declarative gui network quickcontrols2 \ svg widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build CMAKE_OFF= INSTALL_POLKIT diff --git a/sysutils/daggy/Makefile b/sysutils/daggy/Makefile index bc84df1190f85..2fe78e8176dc2 100644 --- a/sysutils/daggy/Makefile +++ b/sysutils/daggy/Makefile @@ -16,7 +16,7 @@ LIB_DEPENDS= libbotan-2.so:security/botan2 \ libyaml-cpp.so:devel/yaml-cpp USES= gl cmake compiler:c++17-lang localbase:ldflags pkgconfig qt:6 ssl -USE_QT= base tools_build +USE_QT= base tools:build USE_GL= gl USE_LDCONFIG= yes diff --git a/sysutils/dsbbatmon/Makefile b/sysutils/dsbbatmon/Makefile index aacd1db9bfe5d..f3d647528a7b5 100644 --- a/sysutils/dsbbatmon/Makefile +++ b/sysutils/dsbbatmon/Makefile @@ -14,6 +14,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= compiler:c++11-lang gl qmake qt:5 tar:tgz USE_GL= gl -USE_QT= buildtools_build core gui linguisttools_build widgets +USE_QT= buildtools:build core gui linguisttools:build widgets .include diff --git a/sysutils/dsblogoutmgr/Makefile b/sysutils/dsblogoutmgr/Makefile index e6728b1ce330f..18e25af36e687 100644 --- a/sysutils/dsblogoutmgr/Makefile +++ b/sysutils/dsblogoutmgr/Makefile @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= compiler:c++11-lang gl qmake qt:5 tar:tgz USE_GL= gl -USE_QT= buildtools_build core gui linguisttools_build widgets +USE_QT= buildtools:build core gui linguisttools:build widgets OPTIONS_DEFINE= METALOCK diff --git a/sysutils/dsbmc/Makefile b/sysutils/dsbmc/Makefile index 97fb872975f5d..6e9fd336389c9 100644 --- a/sysutils/dsbmc/Makefile +++ b/sysutils/dsbmc/Makefile @@ -15,7 +15,7 @@ RUN_DEPENDS= dsbmd>=0.3:sysutils/dsbmd USES= compiler:c++11-lang desktop-file-utils gl qmake qt:5 tar:tgz USE_GL= gl -USE_QT= buildtools_build core gui linguisttools_build widgets +USE_QT= buildtools:build core gui linguisttools:build widgets USE_GITHUB= yes GH_ACCOUNT= mrclksr diff --git a/sysutils/dsbsu/Makefile b/sysutils/dsbsu/Makefile index e29d58ff25f99..a88eb1789824e 100644 --- a/sysutils/dsbsu/Makefile +++ b/sysutils/dsbsu/Makefile @@ -12,7 +12,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= compiler:c++11-lang gl qmake qt:5 tar:tgz xorg USE_GL= gl -USE_QT= buildtools_build core gui linguisttools_build widgets +USE_QT= buildtools:build core gui linguisttools:build widgets USE_GITHUB= yes GH_ACCOUNT= mrclksr diff --git a/sysutils/filelight/Makefile b/sysutils/filelight/Makefile index 291bb81ebe1fd..e0f318baf3a7b 100644 --- a/sysutils/filelight/Makefile +++ b/sysutils/filelight/Makefile @@ -14,10 +14,10 @@ USES= cmake compiler:c++11-lang desktop-file-utils gettext \ USE_KDE= auth codecs completion config configwidgets coreaddons \ i18n jobwidgets kdeclarative kio package parts service \ solid sonnet textwidgets widgetsaddons windowsystem xmlgui \ - doctools_build ecm_build + doctools:build ecm:build USE_QT= concurrent core dbus declarative gui network quickcontrols2 \ script svg widgets xml \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build USE_XORG= x11 OPTIONS_DEFINE= DOCS diff --git a/sysutils/glogg/Makefile b/sysutils/glogg/Makefile index bb9c8e11c6654..49848d1c7e0d4 100644 --- a/sysutils/glogg/Makefile +++ b/sysutils/glogg/Makefile @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libboost_program_options.so:devel/boost-libs USES= compiler:c++11-lang desktop-file-utils qmake qt:5 -USE_QT= core gui widgets dbus buildtools_build +USE_QT= core gui widgets dbus buildtools:build LDFLAGS+= -Wl,--as-needed # prevents stray USE_GL=gl, see bug#224488 PLIST_FILES= bin/glogg \ diff --git a/sysutils/k3b/Makefile b/sysutils/k3b/Makefile index 657adafaee361..97cffa0d19c65 100644 --- a/sysutils/k3b/Makefile +++ b/sysutils/k3b/Makefile @@ -27,9 +27,9 @@ USE_KDE= archive attica auth bookmarks codecs completion config \ configwidgets coreaddons filemetadata i18n iconthemes \ itemviews jobwidgets kcmutils kio newstuff notifications \ notifyconfig service solid widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus gui network webkit widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 # The ffmpeg-plugin needs patching diff --git a/sysutils/k4dirstat/Makefile b/sysutils/k4dirstat/Makefile index a7754bab6e46e..50d58d64e7e4b 100644 --- a/sysutils/k4dirstat/Makefile +++ b/sysutils/k4dirstat/Makefile @@ -19,7 +19,7 @@ CPE_VENDOR= kdirstat_project CPE_PRODUCT= kdirstat USE_KDE= auth codecs completion config configwidgets coreaddons doctools \ i18n iconthemes jobwidgets kio service widgetsaddons xmlgui -USE_QT= buildtools_build core gui dbus network qmake_build widgets xml +USE_QT= buildtools:build core gui dbus network qmake:build widgets xml post-patch: @${REINPLACE_CMD} -e \ diff --git a/sysutils/kbackup/Makefile b/sysutils/kbackup/Makefile index 258db6352445f..102d695ead9d5 100644 --- a/sysutils/kbackup/Makefile +++ b/sysutils/kbackup/Makefile @@ -11,9 +11,9 @@ USES= cmake compiler:c++11-lang desktop-file-utils gettext kde:5 \ USE_KDE= archive auth bookmarks codecs completion config configwidgets \ coreaddons guiaddons i18n iconthemes itemviews jobwidgets kio \ notifications service solid widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus gui network widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 OPTIONS_DEFINE= DOCS diff --git a/sysutils/kcron/Makefile b/sysutils/kcron/Makefile index 23b5a09dacfbc..aa83c176857d2 100644 --- a/sysutils/kcron/Makefile +++ b/sysutils/kcron/Makefile @@ -13,9 +13,9 @@ USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz xorg USE_KDE= auth codecs completion config configwidgets coreaddons \ doctools i18n iconthemes jobwidgets kio service solid widgetsaddons \ windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus gui network printsupport widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 OPTIONS_DEFINE= DOCS diff --git a/sysutils/kdebugsettings/Makefile b/sysutils/kdebugsettings/Makefile index dfd5e382e1b72..68bed91923995 100644 --- a/sysutils/kdebugsettings/Makefile +++ b/sysutils/kdebugsettings/Makefile @@ -9,9 +9,9 @@ WWW= https://projects.kde.org/projects/kde/kdeutils/kdebugsettings USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= completion config configwidgets coreaddons dbusaddons \ guiaddons i18n iconthemes itemviews kio widgetsaddons \ - ecm_build + ecm:build USE_QT= core dbus gui testlib widgets \ - buildtools_build qmake_build + buildtools:build qmake:build OPTIONS_DEFINE= DOCS diff --git a/sysutils/kdf/Makefile b/sysutils/kdf/Makefile index 18329d61fa0ad..2f3e7f482586e 100644 --- a/sysutils/kdf/Makefile +++ b/sysutils/kdf/Makefile @@ -11,7 +11,7 @@ USE_KDE= auth codecs completion config configwidgets coreaddons doctools \ i18n iconthemes jobwidgets kcmutils kio notifications service solid \ widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus gui network widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 OPTIONS_DEFINE= DOCS diff --git a/sysutils/kdialog/Makefile b/sysutils/kdialog/Makefile index e91e9c5e4a98d..b76412ad23b0e 100644 --- a/sysutils/kdialog/Makefile +++ b/sysutils/kdialog/Makefile @@ -13,9 +13,9 @@ USE_KDE= auth bookmarks codecs completion config configwidgets \ itemviews jobwidgets kdelibs4support kio notifications parts \ service solid sonnet textwidgets unitconversion widgetsaddons \ windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus gui network printsupport widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 .include diff --git a/sysutils/kf5-baloo/Makefile b/sysutils/kf5-baloo/Makefile index 88c2fca21a22d..17a6e075a3150 100644 --- a/sysutils/kf5-baloo/Makefile +++ b/sysutils/kf5-baloo/Makefile @@ -13,6 +13,6 @@ USE_KDE= config coreaddons crash dbusaddons \ filemetadata i18n idletime kio service \ solid USE_QT= concurrent core dbus declarative gui network \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build .include diff --git a/sysutils/kf5-kwallet/Makefile b/sysutils/kf5-kwallet/Makefile index 7adc4f735ce91..b748000c6e2bf 100644 --- a/sysutils/kf5-kwallet/Makefile +++ b/sysutils/kf5-kwallet/Makefile @@ -20,9 +20,9 @@ USES= cmake compiler:c++11-lib gettext kde:5 qca qt:5 tar:xz xorg USE_KDE= auth codecs config configwidgets coreaddons dbusaddons \ i18n iconthemes notifications service \ widgetsaddons windowsystem \ - doctools_build ecm_build + doctools:build ecm:build USE_QT= core dbus gui testlib widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 OPTIONS_DEFINE= PINENTRY diff --git a/sysutils/kfloppy/Makefile b/sysutils/kfloppy/Makefile index b8cfa847f9c40..9b60165f55b0a 100644 --- a/sysutils/kfloppy/Makefile +++ b/sysutils/kfloppy/Makefile @@ -10,9 +10,9 @@ USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons crash \ doctools emoticons i18n init itemmodels kdelibs4support \ kio widgetsaddons xmlgui \ - ecm_build + ecm:build USE_QT= core dbus gui widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build OPTIONS_DEFINE= DOCS diff --git a/sysutils/khelpcenter/Makefile b/sysutils/khelpcenter/Makefile index 5e61988ec62d7..b32e25e1f9801 100644 --- a/sysutils/khelpcenter/Makefile +++ b/sysutils/khelpcenter/Makefile @@ -16,13 +16,13 @@ USE_KDE= archive auth bookmarks codecs completion config configwidgets \ itemmodels itemviews jobwidgets js kcmutils \ kio khtml parts service solid sonnet textwidgets widgetsaddons \ windowsystem xmlgui \ - ecm_build + ecm:build # This port depends on doctools; we need the entities and such for runtime # documentation support, where all the other KDE Plasma parts need it # only for the build-time documentation-generation. USE_KDE+= doctools USE_QT= concurrent core dbus gui network widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 SHEBANG_FILES= searchhandlers/khc_mansearch.pl diff --git a/sysutils/kio-fuse/Makefile b/sysutils/kio-fuse/Makefile index 7137e14955ae9..728607dc8c056 100644 --- a/sysutils/kio-fuse/Makefile +++ b/sysutils/kio-fuse/Makefile @@ -13,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSES/GPL-3.0-or-later.txt USES= cmake compiler:c++11-lang fuse:3 kde:5 pkgconfig qt:5 tar:xz USE_KDE= config coreaddons kio service USE_QT= concurrent core dbus network \ - buildtools_build qmake_build + buildtools:build qmake:build PLIST_FILES= lib/libexec/kio-fuse \ share/dbus-1/services/org.kde.KIOFuse.service diff --git a/sysutils/kpmcore/Makefile b/sysutils/kpmcore/Makefile index afc29e2058b63..f7442bf1a9d0d 100644 --- a/sysutils/kpmcore/Makefile +++ b/sysutils/kpmcore/Makefile @@ -10,9 +10,9 @@ LIB_DEPENDS= libpolkit-qt5-core-1.so:sysutils/polkit-qt USES= cmake compiler:c++17-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth coreaddons i18n widgetsaddons \ - ecm_build + ecm:build USE_QT= concurrent core dbus declarative \ gui widgets \ - buildtools_build qmake_build + buildtools:build qmake:build .include diff --git a/sysutils/krename/Makefile b/sysutils/krename/Makefile index a1bfa0cc843dd..4cd778570caab 100644 --- a/sysutils/krename/Makefile +++ b/sysutils/krename/Makefile @@ -20,7 +20,7 @@ USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash i18n iconthemes itemviews jobwidgets \ kio service solid widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus declarative gui network xml widgets \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 .include diff --git a/sysutils/kshutdown/Makefile b/sysutils/kshutdown/Makefile index 62dc1fd8018c5..565d5823e3a73 100644 --- a/sysutils/kshutdown/Makefile +++ b/sysutils/kshutdown/Makefile @@ -16,7 +16,7 @@ USE_KDE= auth codecs config configwidgets coreaddons crash \ dbusaddons ecm globalaccel i18n idletime \ notifications notifyconfig widgetsaddons xmlgui USE_QT= core dbus gui widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build WRKSRC= ${WRKDIR}/${PORTNAME}-${DISTVERSION} diff --git a/sysutils/ksystemlog/Makefile b/sysutils/ksystemlog/Makefile index 9a93f214e47c7..b8d346f4ba4ef 100644 --- a/sysutils/ksystemlog/Makefile +++ b/sysutils/ksystemlog/Makefile @@ -11,9 +11,9 @@ USES= cmake compiler:c++11-lang gettext kde:5 pkgconfig \ USE_KDE= archive auth codecs completion config configwidgets coreaddons \ doctools i18n iconthemes itemviews jobwidgets kio \ service solid sonnet textwidgets widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus gui network printsupport testlib widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 OPTIONS_DEFINE= DOCS diff --git a/sysutils/libsysstat/Makefile b/sysutils/libsysstat/Makefile index 3a3361e46243e..743be88f74c95 100644 --- a/sysutils/libsysstat/Makefile +++ b/sysutils/libsysstat/Makefile @@ -11,7 +11,7 @@ LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/COPYING USES= cmake compiler:c++11-lang lxqt pkgconfig tar:xz qt:5 -USE_QT= qmake_build buildtools_build core +USE_QT= qmake:build buildtools:build core USE_LXQT= buildtools USE_LDCONFIG= yes diff --git a/sysutils/luckybackup/Makefile b/sysutils/luckybackup/Makefile index d8feabb057766..d298904971774 100644 --- a/sysutils/luckybackup/Makefile +++ b/sysutils/luckybackup/Makefile @@ -17,7 +17,7 @@ RUN_DEPENDS= rsync:net/rsync \ USES= compiler:c++11-lang gl qmake qt:5 USE_GL= gl -USE_QT= core gui network widgets buildtools_build +USE_QT= core gui network widgets buildtools:build post-patch: ${REINPLACE_CMD} -e 's|/usr|$$$${PREFIX}|g' -e '/INSTALLS/s|debianmenu ||' \ diff --git a/sysutils/lxqt-admin/Makefile b/sysutils/lxqt-admin/Makefile index aafd7b24cf64d..f3f992b616644 100644 --- a/sysutils/lxqt-admin/Makefile +++ b/sysutils/lxqt-admin/Makefile @@ -11,7 +11,7 @@ LICENSE= LGPL21+ USES= cmake compiler:c++11-lang gnome kde:5 localbase \ lxqt pkgconfig tar:xz qt:5 xorg -USE_QT= buildtools_build qmake_build core dbus gui svg \ +USE_QT= buildtools:build qmake:build core dbus gui svg \ widgets x11extras xml USE_KDE= windowsystem USE_GNOME= glib20 diff --git a/sysutils/lxqt-config/Makefile b/sysutils/lxqt-config/Makefile index 1b12d7565b2ae..53fa9bbd201bd 100644 --- a/sysutils/lxqt-config/Makefile +++ b/sysutils/lxqt-config/Makefile @@ -16,7 +16,7 @@ LIB_DEPENDS= libudev.so:devel/libudev-devd USES= cmake compiler:c++14-lang kde:5 localbase:ldflags lxqt qt:5 \ pkgconfig tar:xz xorg gnome -USE_QT= buildtools_build qmake_build concurrent core dbus \ +USE_QT= buildtools:build qmake:build concurrent core dbus \ gui linguisttools svg widgets x11extras xml USE_KDE= libkscreen windowsystem USE_GNOME= glib20 diff --git a/sysutils/lxqt-policykit/Makefile b/sysutils/lxqt-policykit/Makefile index a361213f0dabf..ff0d0c850f714 100644 --- a/sysutils/lxqt-policykit/Makefile +++ b/sysutils/lxqt-policykit/Makefile @@ -14,7 +14,7 @@ LIB_DEPENDS= libpolkit-qt5-agent-1.so:sysutils/polkit-qt \ USES= cmake compiler:c++14-lang gettext-runtime kde:5 qt:5 gnome \ localbase:ldflags lxqt pkgconfig tar:xz xorg -USE_QT= buildtools_build qmake_build core dbus gui linguisttools \ +USE_QT= buildtools:build qmake:build core dbus gui linguisttools \ svg widgets x11extras xml USE_KDE= windowsystem USE_LXQT= buildtools lxqt diff --git a/sysutils/lxqt-powermanagement/Makefile b/sysutils/lxqt-powermanagement/Makefile index 1edbe302f06ee..f0f08107456f6 100644 --- a/sysutils/lxqt-powermanagement/Makefile +++ b/sysutils/lxqt-powermanagement/Makefile @@ -14,7 +14,7 @@ RUN_DEPENDS= upower:sysutils/upower USES= cmake compiler:c++14-lang gettext-runtime kde:5 qt:5 \ localbase:ldflags lxqt pkgconfig tar:xz gnome xorg -USE_QT= buildtools_build qmake_build core svg widgets x11extras \ +USE_QT= buildtools:build qmake:build core svg widgets x11extras \ dbus gui xml USE_GNOME= glib20 USE_KDE= idletime solid windowsystem diff --git a/sysutils/lxqt-qtplugin/Makefile b/sysutils/lxqt-qtplugin/Makefile index 20e4a885d1e57..36b6cbc0454b8 100644 --- a/sysutils/lxqt-qtplugin/Makefile +++ b/sysutils/lxqt-qtplugin/Makefile @@ -18,7 +18,7 @@ USES= cmake compiler:c++14-lang gnome kde:5 lxqt pkgconfig tar:xz qt:5 \ USE_XORG=xcb USE_GNOME=glib20 -USE_QT= buildtools_build qmake_build core dbus gui svg widgets \ +USE_QT= buildtools:build qmake:build core dbus gui svg widgets \ x11extras xml USE_KDE= windowsystem USE_LXQT= buildtools qtxdg libfmqt diff --git a/sysutils/plasma-pass/Makefile b/sysutils/plasma-pass/Makefile index e864acf0f549d..a4a142440ba3a 100644 --- a/sysutils/plasma-pass/Makefile +++ b/sysutils/plasma-pass/Makefile @@ -16,8 +16,8 @@ RUN_DEPENDS= pass:sysutils/password-store USES= cmake compiler:c++11-lib kde:5 qt:5 tar:xz USE_KDE= config coreaddons i18n itemmodels package plasma-framework service \ - ecm_build + ecm:build USE_QT= concurrent core dbus declarative gui network \ - buildtools_build qmake_build + buildtools:build qmake:build .include diff --git a/sysutils/plasma5-discover/Makefile b/sysutils/plasma5-discover/Makefile index c9250753d6f91..b029a9439f813 100644 --- a/sysutils/plasma5-discover/Makefile +++ b/sysutils/plasma5-discover/Makefile @@ -18,10 +18,10 @@ USE_KDE= archive attica auth codecs completion config configwidgets \ kirigami2 newstuff notifications package plasma-framework \ service solid textwidgets wallet widgetsaddons windowsystem \ xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus declarative gui network svg widgets \ x11extras xml \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build USE_XORG= x11 CPE_VENDOR= kde diff --git a/sysutils/plasma5-drkonqi/Makefile b/sysutils/plasma5-drkonqi/Makefile index 3ca36d0e5ccc2..8af2b8ea8094f 100644 --- a/sysutils/plasma5-drkonqi/Makefile +++ b/sysutils/plasma5-drkonqi/Makefile @@ -12,9 +12,9 @@ USE_KDE= auth codecs completion config configwidgets coreaddons crash \ i18n idletime jobwidgets kio notifications service \ syntaxhighlighting wallet widgetsaddons windowsystem \ xmlrpcclient \ - ecm_build + ecm:build USE_QT= concurrent core dbus gui network widgets x11extras xml \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build USE_XORG= x11 .include diff --git a/sysutils/plasma5-kde-cli-tools/Makefile b/sysutils/plasma5-kde-cli-tools/Makefile index ad17d1ceed620..bb41336b04522 100644 --- a/sysutils/plasma5-kde-cli-tools/Makefile +++ b/sysutils/plasma5-kde-cli-tools/Makefile @@ -15,10 +15,10 @@ USE_KDE= activities auth bookmarks codecs completion config \ kdeclarative kdesu kio notifications parts plasma-workspace \ pty service solid sonnet textwidgets unitconversion \ widgetsaddons windowsystem xmlgui \ - doctools_build ecm_build + doctools:build ecm:build USE_QT= concurrent core dbus declarative gui network printsupport svg \ widgets x11extras xml \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build USE_XORG= x11 CPE_VENDOR= kde diff --git a/sysutils/plasma5-kinfocenter/Makefile b/sysutils/plasma5-kinfocenter/Makefile index c0e8957eecf1b..9771fab9302db 100644 --- a/sysutils/plasma5-kinfocenter/Makefile +++ b/sysutils/plasma5-kinfocenter/Makefile @@ -20,11 +20,11 @@ USE_KDE= auth bookmarks codecs completion config configwidgets \ kdeclarative kio notifications package parts service solid \ sonnet textwidgets unitconversion wayland widgetsaddons \ windowsystem xmlgui \ - doctools_build ecm_build \ - systemsettings_run + doctools:build ecm:build \ + systemsettings:run USE_QT= concurrent core dbus declarative gui network printsupport \ widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= ice sm x11 xext # TODO -- this should be handled correctly... diff --git a/sysutils/plasma5-kmenuedit/Makefile b/sysutils/plasma5-kmenuedit/Makefile index e27ca1f548d09..827c907f3fca1 100644 --- a/sysutils/plasma5-kmenuedit/Makefile +++ b/sysutils/plasma5-kmenuedit/Makefile @@ -13,9 +13,9 @@ USE_KDE= auth bookmarks codecs completion config configwidgets \ hotkeys i18n iconthemes init itemmodels itemviews jobwidgets \ kio notifications parts service solid sonnet textwidgets \ unitconversion widgetsaddons windowsystem xmlgui \ - doctools_build ecm_build + doctools:build ecm:build USE_QT= concurrent core dbus gui network printsupport widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 .include diff --git a/sysutils/plasma5-ksysguard/Makefile b/sysutils/plasma5-ksysguard/Makefile index ee28cc48323af..cdb956e024827 100644 --- a/sysutils/plasma5-ksysguard/Makefile +++ b/sysutils/plasma5-ksysguard/Makefile @@ -16,9 +16,9 @@ USE_KDE= attica auth codecs completion config configwidgets coreaddons \ dbusaddons emoticons i18n iconthemes init itemmodels itemviews \ jobwidgets kio libksysguard newstuff notifications service \ solid widgetsaddons windowsystem xmlgui \ - doctools_build ecm_build + doctools:build ecm:build USE_QT= concurrent core dbus gui network widgets xml \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build USE_XORG= x11 OPTIONS_DEFINE= INOTIFY diff --git a/sysutils/plasma5-ksystemstats/Makefile b/sysutils/plasma5-ksystemstats/Makefile index 7c8dbb95e89d1..ae9d5f96640d4 100644 --- a/sysutils/plasma5-ksystemstats/Makefile +++ b/sysutils/plasma5-ksystemstats/Makefile @@ -12,6 +12,6 @@ USES= cmake compiler:c++17-lang kde:5 qt:5 tar:xz USE_KDE= config coreaddons dbusaddons i18n kio libksysguard service \ solid USE_QT= concurrent core dbus gui network \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build .include diff --git a/sysutils/plasma5-libksysguard/Makefile b/sysutils/plasma5-libksysguard/Makefile index 1b1a2d612ffe1..847bf9e6ed427 100644 --- a/sysutils/plasma5-libksysguard/Makefile +++ b/sysutils/plasma5-libksysguard/Makefile @@ -14,7 +14,7 @@ USE_KDE= auth codecs completion config configwidgets coreaddons \ widgetsaddons windowsystem USE_QT= concurrent core dbus declarative gui network script webkit \ widgets x11extras xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 OPTIONS_DEFINE= WEBENGINE diff --git a/sysutils/plasma5-plasma-disks/Makefile b/sysutils/plasma5-plasma-disks/Makefile index b68495ca63481..4eff3a54e3203 100644 --- a/sysutils/plasma5-plasma-disks/Makefile +++ b/sysutils/plasma5-plasma-disks/Makefile @@ -31,7 +31,7 @@ USE_KDE= activities auth codecs config configwidgets coreaddons \ plasma-framework service solid widgetsaddons windowsystem USE_QT= concurrent core dbus declarative gui network quickcontrols \ widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 post-patch: diff --git a/sysutils/plasma5-plasma-systemmonitor/Makefile b/sysutils/plasma5-plasma-systemmonitor/Makefile index 88e24a305fdff..accd99c9a1099 100644 --- a/sysutils/plasma5-plasma-systemmonitor/Makefile +++ b/sysutils/plasma5-plasma-systemmonitor/Makefile @@ -15,7 +15,7 @@ USE_KDE= attica auth codecs config configwidgets coreaddons dbusaddons \ windowsystem xmlgui USE_QT= concurrent core dbus declarative gui network quickcontrols2 \ widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 .include diff --git a/sysutils/plasma5-polkit-kde-agent-1/Makefile b/sysutils/plasma5-polkit-kde-agent-1/Makefile index e114c4ab8ecc6..43f870071f7c7 100644 --- a/sysutils/plasma5-polkit-kde-agent-1/Makefile +++ b/sysutils/plasma5-polkit-kde-agent-1/Makefile @@ -13,7 +13,7 @@ USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz xorg USE_KDE= config coreaddons crash dbusaddons ecm i18n iconthemes \ notifications widgetsaddons windowsystem USE_QT= core dbus gui widgets \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 .include diff --git a/sysutils/plasma5-powerdevil/Makefile b/sysutils/plasma5-powerdevil/Makefile index 61c7adde8bc49..e35c9d182cf26 100644 --- a/sysutils/plasma5-powerdevil/Makefile +++ b/sysutils/plasma5-powerdevil/Makefile @@ -18,10 +18,10 @@ USE_KDE= activities auth bookmarks codecs completion config \ itemviews jobwidgets kio kirigami2 libkscreen notifications notifyconfig \ parts plasma-workspace service solid sonnet textwidgets \ unitconversion wayland widgetsaddons windowsystem xmlgui \ - doctools_build ecm_build + doctools:build ecm:build USE_QT= concurrent core dbus gui network printsupport widgets \ x11extras xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 xcb .include diff --git a/sysutils/plasma5-systemsettings/Makefile b/sysutils/plasma5-systemsettings/Makefile index cf441062fe7b4..18d2682307b6f 100644 --- a/sysutils/plasma5-systemsettings/Makefile +++ b/sysutils/plasma5-systemsettings/Makefile @@ -14,9 +14,9 @@ USE_KDE= activities activities-stats auth codecs completion config \ kdeclarative khtml kio kirigami2 notifications package parts \ plasma-framework plasma-workspace runner service solid sonnet \ textwidgets widgetsaddons windowsystem xmlgui \ - doctools_build ecm_build + doctools:build ecm:build USE_QT= concurrent core dbus declarative gui network widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 .include diff --git a/sysutils/polkit-qt/Makefile b/sysutils/polkit-qt/Makefile index 577cd26b82e7b..db634bcbd0484 100644 --- a/sysutils/polkit-qt/Makefile +++ b/sysutils/polkit-qt/Makefile @@ -13,7 +13,7 @@ LIB_DEPENDS= libpolkit-agent-1.so:sysutils/polkit USES= cmake compiler:c++11-lang gnome pkgconfig qt:5 tar:xz USE_GNOME= glib20 -USE_QT= core dbus gui widgets buildtools_build qmake_build +USE_QT= core dbus gui widgets buildtools:build qmake:build CMAKE_OFF= BUILD_EXAMPLES \ BUILD_TEST diff --git a/sysutils/qdirstat/Makefile b/sysutils/qdirstat/Makefile index f9d30c0d198c9..3705544289664 100644 --- a/sysutils/qdirstat/Makefile +++ b/sysutils/qdirstat/Makefile @@ -11,7 +11,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= compiler:c++11-lang desktop-file-utils gl qmake qt:5 shebangfix USE_GL= gl -USE_QT= buildtools_build core gui widgets +USE_QT= buildtools:build core gui widgets OPTIONS_DEFINE= DOCS diff --git a/sysutils/qsudo/Makefile b/sysutils/qsudo/Makefile index 133919c109f89..58d1c7d858a3a 100644 --- a/sysutils/qsudo/Makefile +++ b/sysutils/qsudo/Makefile @@ -16,7 +16,7 @@ USES= compiler:c++11-lang qmake qt:5 USE_GITHUB= yes GH_ACCOUNT= trueos GH_TAGNAME= 815e31c -USE_QT= core gui widgets buildtools_build +USE_QT= core gui widgets buildtools:build WRKSRC_SUBDIR= src-qt5 LDFLAGS+= -Wl,--as-needed # prevents unnecessary USE_GL=gl, see bug#224488 diff --git a/sysutils/qtpass/Makefile b/sysutils/qtpass/Makefile index dfcc296d39556..154f13f64af35 100644 --- a/sysutils/qtpass/Makefile +++ b/sysutils/qtpass/Makefile @@ -18,7 +18,7 @@ USE_GITHUB= yes GH_ACCOUNT= IJhack GH_PROJECT= QtPass USE_GL= gl -USE_QT= core gui network testlib widgets buildtools_build linguisttools_build +USE_QT= core gui network testlib widgets buildtools:build linguisttools:build CPE_VENDOR= ijhack # Create a desktop entry for the port. diff --git a/sysutils/signon-kwallet-extension/Makefile b/sysutils/signon-kwallet-extension/Makefile index b8ea986035375..1e9a97584d25d 100644 --- a/sysutils/signon-kwallet-extension/Makefile +++ b/sysutils/signon-kwallet-extension/Makefile @@ -10,9 +10,9 @@ LIB_DEPENDS= libsignon-qt5.so:sysutils/signon-qt5 USES= cmake compiler:c++11-lang kde:5 pkgconfig qt:5 tar:xz USE_KDE= wallet \ - ecm_build + ecm:build USE_QT= core dbus gui \ - buildtools_build qmake_build + buildtools:build qmake:build USE_LDCONFIG= ${KDE_PREFIX}/${SE_DIR} PLIST_FILES= ${SE_DIR}/libkeyring-kwallet.so SE_DIR= lib/signon/extensions diff --git a/sysutils/signon-plugin-oauth2/Makefile b/sysutils/signon-plugin-oauth2/Makefile index b94b02e7c3266..7b80868836b35 100644 --- a/sysutils/signon-plugin-oauth2/Makefile +++ b/sysutils/signon-plugin-oauth2/Makefile @@ -12,7 +12,7 @@ LIB_DEPENDS= libsignon-qt5.so:sysutils/signon-qt5 USES= compiler:c++11-lang pkgconfig python qmake qt:5 USE_QT= core network testlib \ - buildtools_build qmake_build + buildtools:build qmake:build USE_LDCONFIG= ${PREFIX}/lib/signon QMAKE_ENV= PREFIX=${PREFIX} diff --git a/sysutils/signon-qt5/Makefile b/sysutils/signon-qt5/Makefile index 2e66e58c7add6..47fb61dea4489 100644 --- a/sysutils/signon-qt5/Makefile +++ b/sysutils/signon-qt5/Makefile @@ -16,7 +16,7 @@ USES= compiler:c++11-lang gettext gl pathfix pkgconfig python qmake \ qt:5 tar:bz2 USE_GL= gl USE_QT= core dbus gui network sql testlib xml \ - buildtools_build qmake_build + buildtools:build qmake:build # gitlab variables USE_GITLAB= yes diff --git a/sysutils/signon-ui/Makefile b/sysutils/signon-ui/Makefile index 73d177a0cc49f..a652af20921a6 100644 --- a/sysutils/signon-ui/Makefile +++ b/sysutils/signon-ui/Makefile @@ -21,7 +21,7 @@ USES= compiler:c++11-lang gettext-runtime gl gnome pkgconfig python \ USE_GL= gl USE_GNOME= gdkpixbuf2 glib20 USE_QT= core dbus declarative gui network webkit widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build # gitlab variables USE_GITLAB= yes GL_ACCOUNT= accounts-sso diff --git a/sysutils/sweeper/Makefile b/sysutils/sweeper/Makefile index 70850cf1fe8c8..af1b49fc54122 100644 --- a/sysutils/sweeper/Makefile +++ b/sysutils/sweeper/Makefile @@ -11,7 +11,7 @@ USE_KDE= activities-stats auth bookmarks codecs config configwidgets \ coreaddons crash i18n kio service sonnet textwidgets \ widgetsaddons xmlgui USE_QT= concurrent core dbus gui network widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build OPTIONS_DEFINE= DOCS diff --git a/sysutils/synergy/Makefile b/sysutils/synergy/Makefile index d8a18af3f598d..dc03037518895 100644 --- a/sysutils/synergy/Makefile +++ b/sysutils/synergy/Makefile @@ -17,7 +17,7 @@ LIB_DEPENDS= libcurl.so:ftp/curl \ USES= cmake compiler:c++14-lang cpe gnome localbase:ldflags qt:5 ssl xorg CPE_VENDOR= synergy-foss -USE_QT= core dbus network widgets buildtools_build linguisttools_build qmake_build +USE_QT= core dbus network widgets buildtools:build linguisttools:build qmake:build USE_GNOME= gdkpixbuf2 glib20 USE_XORG= ice xtst x11 sm xext xinerama xrandr xi diff --git a/sysutils/tarsnap-gui/Makefile b/sysutils/tarsnap-gui/Makefile index f1b83e8a09d92..37a4c0a6d0ad4 100644 --- a/sysutils/tarsnap-gui/Makefile +++ b/sysutils/tarsnap-gui/Makefile @@ -12,7 +12,7 @@ USE_GITHUB= yes GH_ACCOUNT= Tarsnap USES= compiler:c++11-lib gl qmake qt:5 -USE_QT= buildtools_build core gui network qmake_build sql sql-sqlite3 widgets +USE_QT= buildtools:build core gui network qmake:build sql sql-sqlite3 widgets USE_GL= gl PLIST_FILES= bin/tarsnap-gui diff --git a/sysutils/twmn/Makefile b/sysutils/twmn/Makefile index ae29f84fe701e..1d4603b13378c 100644 --- a/sysutils/twmn/Makefile +++ b/sysutils/twmn/Makefile @@ -16,7 +16,7 @@ USES= compiler:c++11-lang qmake qt:5 USE_GITHUB= yes GH_ACCOUNT= sboli GH_TAGNAME= 861a323 -USE_QT= core dbus gui network widgets x11extras buildtools_build +USE_QT= core dbus gui network widgets x11extras buildtools:build LDFLAGS+= -Wl,--as-needed # see bug#224488 # Fix build with Qt 5.13 diff --git a/sysutils/unetbootin/Makefile b/sysutils/unetbootin/Makefile index ccddcf130a702..fb45f17bd7d82 100644 --- a/sysutils/unetbootin/Makefile +++ b/sysutils/unetbootin/Makefile @@ -16,7 +16,7 @@ RUN_DEPENDS= 7zz:archivers/7-zip \ mke2fs:sysutils/e2fsprogs USES= qt:5 -USE_QT= buildtools_build linguisttools_build qmake_build \ +USE_QT= buildtools:build linguisttools:build qmake:build \ core gui network widgets QMAKE_ARGS= DEFINES+=LOCALBASE=\\\\\\\"${LOCALBASE}\\\\\\\" diff --git a/textproc/dikt/Makefile b/textproc/dikt/Makefile index 968cd33e6960d..10622e9bda4b3 100644 --- a/textproc/dikt/Makefile +++ b/textproc/dikt/Makefile @@ -16,7 +16,7 @@ USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons dbusaddons guiaddons i18n iconthemes itemviews \ jobwidgets kio service solid widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus gui network printsupport svg widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build PLIST_FILES= bin/dikt \ share/applications/dikt.desktop \ diff --git a/textproc/fcitx-qt5/Makefile b/textproc/fcitx-qt5/Makefile index 62fb659266e36..1bc5ee5a44a4f 100644 --- a/textproc/fcitx-qt5/Makefile +++ b/textproc/fcitx-qt5/Makefile @@ -16,7 +16,7 @@ USES= compiler:c++11-lib cmake gettext kde:5 pkgconfig qt:5 USE_GITHUB= yes GH_ACCOUNT= fcitx USE_KDE= ecm -USE_QT= concurrent core dbus gui widgets buildtools_build qmake_build +USE_QT= concurrent core dbus gui widgets buildtools:build qmake:build USE_LDCONFIG= yes .include diff --git a/textproc/fcitx5-configtool/Makefile b/textproc/fcitx5-configtool/Makefile index 3b4a64faf9ba4..34440b934bbc8 100644 --- a/textproc/fcitx5-configtool/Makefile +++ b/textproc/fcitx5-configtool/Makefile @@ -27,7 +27,7 @@ GH_ACCOUNT= fcitx USE_KDE= ecm coreaddons kdeclarative i18n itemviews kirigami2 package widgetsaddons USE_QT= concurrent core dbus declarative gui quickcontrols2 widgets x11extras \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 xkbfile USE_LDCONFIG= yes diff --git a/textproc/fcitx5-qt/Makefile b/textproc/fcitx5-qt/Makefile index aaa14e8b59d35..5f00f8cd132a6 100644 --- a/textproc/fcitx5-qt/Makefile +++ b/textproc/fcitx5-qt/Makefile @@ -24,7 +24,7 @@ PLIST_SUB= VER=${PORTVERSION} USE_GITHUB= yes GH_ACCOUNT= fcitx USE_KDE= ecm -USE_QT= concurrent core dbus widgets buildtools_build qmake_build +USE_QT= concurrent core dbus widgets buildtools:build qmake:build USE_XORG= x11 xcb USE_LDCONFIG= yes diff --git a/textproc/goldendict/Makefile b/textproc/goldendict/Makefile index 4c4ed7b2a84bf..5cd26cd25d2e5 100644 --- a/textproc/goldendict/Makefile +++ b/textproc/goldendict/Makefile @@ -21,7 +21,7 @@ USES= compiler:c++11-lang gnome iconv:wchar_t pkgconfig \ USE_GITHUB= yes GH_TAGNAME= 99982a1 USE_XORG= x11 xtst -USE_QT= buildtools_build linguisttools_build core gui help \ +USE_QT= buildtools:build linguisttools:build core gui help \ network printsupport sql svg webkit widgets \ x11extras xml QMAKE_ARGS= ${PORTNAME}.pro CONFIG+="zim_support" diff --git a/textproc/highlight/Makefile b/textproc/highlight/Makefile index 121673f30aa99..f2013db054e69 100644 --- a/textproc/highlight/Makefile +++ b/textproc/highlight/Makefile @@ -29,7 +29,7 @@ OPTIONS_DEFINE= DOCS GUI OPTIONS_SUB= yes GUI_USES= qt:5 -GUI_USE= QT=buildtools_build,qmake_build,core,gui,widgets +GUI_USE= QT=buildtools:build,qmake:build,core,gui,widgets GUI_MAKE_ENV= QMAKE="${QMAKE}" GUI_ALL_TARGET= gui GUI_INSTALL_TARGET= install-gui diff --git a/textproc/kdiff3/Makefile b/textproc/kdiff3/Makefile index ffbcbb9207bb6..c6c3e7d0c268e 100644 --- a/textproc/kdiff3/Makefile +++ b/textproc/kdiff3/Makefile @@ -18,9 +18,9 @@ USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash i18n iconthemes jobwidgets kio \ parts service solid sonnet textwidgets widgetsaddons windowsystem \ xmlgui \ - doctools_build ecm_build + doctools:build ecm:build USE_QT= concurrent core dbus gui network printsupport widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 OPTIONS_DEFINE= DOCS diff --git a/textproc/kf5-kcodecs/Makefile b/textproc/kf5-kcodecs/Makefile index ab93a8f558e28..37f9469383e09 100644 --- a/textproc/kf5-kcodecs/Makefile +++ b/textproc/kf5-kcodecs/Makefile @@ -8,8 +8,8 @@ COMMENT= KF5 library for string manipulation LICENSE= LGPL21 USES= cmake compiler:c++11-lib gperf kde:5 qt:5 tar:xz -USE_KDE= ecm_build +USE_KDE= ecm:build USE_QT= core linguisttools \ - buildtools_build qmake_build + buildtools:build qmake:build .include diff --git a/textproc/kf5-sonnet/Makefile b/textproc/kf5-sonnet/Makefile index c66549b8b912e..322850c7e5fd9 100644 --- a/textproc/kf5-sonnet/Makefile +++ b/textproc/kf5-sonnet/Makefile @@ -10,9 +10,9 @@ LIB_DEPENDS= libaspell.so:textproc/aspell \ libhunspell-1.7.so:textproc/hunspell USES= cmake compiler:c++11-lib kde:5 qt:5 tar:xz -USE_KDE= ecm_build +USE_KDE= ecm:build USE_QT= core declarative gui linguisttools network uiplugin widgets \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build # Disable examples -- they are not installed anyways. CMAKE_OFF= ENABLE_EXAMPLES diff --git a/textproc/kf5-syntax-highlighting/Makefile b/textproc/kf5-syntax-highlighting/Makefile index 5a4a33b813bac..280a46b924d6f 100644 --- a/textproc/kf5-syntax-highlighting/Makefile +++ b/textproc/kf5-syntax-highlighting/Makefile @@ -6,9 +6,9 @@ MAINTAINER= kde@FreeBSD.org COMMENT= KF5 syntax highlighting engine for structured text and code USES= cmake compiler:c++11-lib kde:5 perl5 qt:5 tar:xz -USE_KDE= ecm_build +USE_KDE= ecm:build USE_QT= core gui network \ - buildtools_build linguisttools_build testlib_build qmake_build + buildtools:build linguisttools:build testlib:build qmake:build CMAKE_ARGS= -DCMAKE_DISABLE_FIND_PACKAGE_Qt5XmlPatterns=TRUE diff --git a/textproc/kompare/Makefile b/textproc/kompare/Makefile index 18f8020a0cebd..4bd92c337555e 100644 --- a/textproc/kompare/Makefile +++ b/textproc/kompare/Makefile @@ -13,9 +13,9 @@ USE_KDE= auth codecs completion config configwidgets coreaddons \ doctools i18n iconthemes jobwidgets kio parts service \ solid sonnet syntaxhighlighting texteditor textwidgets widgetsaddons \ windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus gui network printsupport widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 OPTIONS_DEFINE= DOCS diff --git a/textproc/kreport/Makefile b/textproc/kreport/Makefile index dbacb022b943e..ab77b3f637681 100644 --- a/textproc/kreport/Makefile +++ b/textproc/kreport/Makefile @@ -16,7 +16,7 @@ USES= cmake compiler:c++11-lang gettext kde:5 \ USE_KDE= config coreaddons ecm marble widgetsaddons USE_QT= core declarative gui location network webchannel \ webengine webkit widgets xml \ - buildtools_build printsupport qmake_build + buildtools:build printsupport qmake:build CONFLICTS_INSTALL= calligra-2* diff --git a/textproc/libkomparediff2/Makefile b/textproc/libkomparediff2/Makefile index 10d608d4c505d..a45b375095e2b 100644 --- a/textproc/libkomparediff2/Makefile +++ b/textproc/libkomparediff2/Makefile @@ -9,9 +9,9 @@ WWW= https://www.kde.org USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons i18n kio parts \ service widgetsaddons xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus gui network widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS diff --git a/textproc/markdownpart/Makefile b/textproc/markdownpart/Makefile index a9844062ac886..86916e0006705 100644 --- a/textproc/markdownpart/Makefile +++ b/textproc/markdownpart/Makefile @@ -10,9 +10,9 @@ USES= cmake compiler:c++11-lang kde:5 qt:5 tar:xz xorg USE_KDE= auth codecs completion config configwidgets coreaddons i18n \ jobwidgets kio parts service solid sonnet textwidgets widgetsaddons \ windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus gui network widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 OPTIONS_DEFINE= DOCS diff --git a/textproc/pageedit/Makefile b/textproc/pageedit/Makefile index e1ae07e753c8e..57cea63667eb4 100644 --- a/textproc/pageedit/Makefile +++ b/textproc/pageedit/Makefile @@ -17,6 +17,6 @@ GH_PROJECT= PageEdit USE_QT= concurrent core declarative gui location network \ printsupport webchannel webengine widgets xml \ - buildtools_build linguisttools_build qmake_build + buildtools:build linguisttools:build qmake:build .include diff --git a/textproc/qstardict/Makefile b/textproc/qstardict/Makefile index 747f12e04a847..5efcd583344c5 100644 --- a/textproc/qstardict/Makefile +++ b/textproc/qstardict/Makefile @@ -15,7 +15,7 @@ USES= compiler:c++11-lang gl gnome pkgconfig qmake qt:5 tar:bzip2 xorg USE_GL= gl USE_GNOME= glib20 USE_QT= core dbus gui network printsupport widgets xml \ - buildtools_build linguisttools_build qmake_build + buildtools:build linguisttools:build qmake:build USE_XORG= x11 USE_GITHUB= yes diff --git a/textproc/qt5-xml/Makefile b/textproc/qt5-xml/Makefile index 4af46d33a536b..60db446925dbc 100644 --- a/textproc/qt5-xml/Makefile +++ b/textproc/qt5-xml/Makefile @@ -8,7 +8,7 @@ COMMENT= Qt SAX and DOM implementations USES= compiler:c++11-lang perl5 qmake:no_env qt-dist:5,base USE_PERL5= extract -USE_QT= core qmake_build buildtools_build +USE_QT= core qmake:build buildtools:build HAS_CONFIGURE= yes CONFIGURE_ARGS= -no-gui -no-xcb diff --git a/textproc/qt5-xmlpatterns/Makefile b/textproc/qt5-xmlpatterns/Makefile index 0fecf854476be..deff21e0c5ff1 100644 --- a/textproc/qt5-xmlpatterns/Makefile +++ b/textproc/qt5-xmlpatterns/Makefile @@ -7,7 +7,7 @@ MAINTAINER= kde@FreeBSD.org COMMENT= Qt support for XPath, XQuery, XSLT and XML Schema USES= compiler:c++11-lang qmake:norecursive qt-dist:5,xmlpatterns -USE_QT= core declarative network buildtools_build +USE_QT= core declarative network buildtools:build QT_BINARIES= yes diff --git a/textproc/retext/Makefile b/textproc/retext/Makefile index c7957efaa6547..4eb116ca202eb 100644 --- a/textproc/retext/Makefile +++ b/textproc/retext/Makefile @@ -22,8 +22,8 @@ USE_GITHUB= yes GH_ACCOUNT= retext-project GH_PROJECT= retext USE_PYTHON= distutils autoplist noflavors -USE_QT= linguisttools_build -USE_PYQT= pyqt5_run sip_run +USE_QT= linguisttools:build +USE_PYQT= pyqt5:run sip:run BINARY_ALIAS= lrelease=${LRELEASE} diff --git a/textproc/sigil/Makefile b/textproc/sigil/Makefile index c317582f89bff..966dc8c17a3d3 100644 --- a/textproc/sigil/Makefile +++ b/textproc/sigil/Makefile @@ -26,8 +26,8 @@ USE_LDCONFIG= ${PREFIX}/lib/sigil USE_QT= concurrent core declarative gui location network printsupport \ svg webchannel webengine widgets xml xmlpatterns \ - buildtools_build linguisttools_build qmake_build \ - imageformats_run + buildtools:build linguisttools:build qmake:build \ + imageformats:run SHEBANG_FILES= src/Resource_Files/plugin_launchers/python/*.py \ src/Resource_Files/python3lib/*.py diff --git a/textproc/uim-qt5/Makefile b/textproc/uim-qt5/Makefile index 697dab78a3e75..a3479fb850a61 100644 --- a/textproc/uim-qt5/Makefile +++ b/textproc/uim-qt5/Makefile @@ -8,7 +8,7 @@ LIB_DEPENDS= libuim.so:textproc/uim USES= compiler:c++11-lang gl iconv kde:5 libtool qt:5 USE_GL= gl USE_KDE= plasma-framework -USE_QT= buildtools_build core declarative gui network qmake_build widgets x11extras +USE_QT= buildtools:build core declarative gui network qmake:build widgets x11extras MASTERDIR= ${.CURDIR}/../../textproc/uim PKGDIR= ${.CURDIR} diff --git a/www/choqok/Makefile b/www/choqok/Makefile index 219ffda148fad..f34164773c098 100644 --- a/www/choqok/Makefile +++ b/www/choqok/Makefile @@ -23,9 +23,9 @@ USE_KDE= attica auth bookmarks codecs completion config configwidgets \ itemviews jobwidgets kcmutils kdewebkit kio notifications \ notifyconfig parts purpose service solid sonnet textwidgets \ wallet widgetsaddons windowsystem xmlgui \ - kded_run + kded:run USE_QT= concurrent core dbus gui network networkauth webkit widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 USE_LDCONFIG= yes diff --git a/www/cutelyst/Makefile b/www/cutelyst/Makefile index 9fce6d2d04fbc..4232707623451 100644 --- a/www/cutelyst/Makefile +++ b/www/cutelyst/Makefile @@ -13,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING USES= cmake compiler:c++11-lang localbase qt:5 USE_GITHUB= yes USE_LDCONFIG= yes -USE_QT= qmake_build buildtools_build linguisttools_build \ +USE_QT= qmake:build buildtools:build linguisttools:build \ core network sql # There are more views available and various plugins, diff --git a/www/dooble/Makefile b/www/dooble/Makefile index 84a2d5ccd8824..9d2aa5b8af9ec 100644 --- a/www/dooble/Makefile +++ b/www/dooble/Makefile @@ -16,7 +16,7 @@ USE_GITHUB= yes GH_ACCOUNT= textbrowser USE_QT= concurrent core gui network printsupport sql webengine widgets \ - xml buildtools_build qmake_build + xml buildtools:build qmake:build USE_XORG= xcb QMAKE_SOURCE_PATH= ${PORTNAME}.pro diff --git a/www/falkon/Makefile b/www/falkon/Makefile index 27b8179ef6d1a..e5d74ea22e160 100644 --- a/www/falkon/Makefile +++ b/www/falkon/Makefile @@ -11,10 +11,10 @@ LICENSE_FILE= ${WRKSRC}/COPYING USES= cmake desktop-file-utils kde:5 qt:5 ssl tar:xz xorg USE_KDE= archive i18n \ - ecm_build + ecm:build USE_QT= concurrent core dbus declarative gui location network printsupport \ - sql webchannel webengine widgets x11extras sql-sqlite3_run \ - buildtools_build qmake_build + sql webchannel webengine widgets x11extras sql-sqlite3:run \ + buildtools:build qmake:build USE_XORG= x11 xcb USE_LDCONFIG= yes diff --git a/www/kdsoap/Makefile b/www/kdsoap/Makefile index 6edc8ddebda6c..cc088a4621629 100644 --- a/www/kdsoap/Makefile +++ b/www/kdsoap/Makefile @@ -19,7 +19,7 @@ LICENSE_FILE_AGPLv3= ${WRKSRC}/LICENSE.AGPL3-modified.txt USES= cmake compiler:c++11-lang localbase qt:5 USE_LDCONFIG= yes -USE_QT= qmake_build buildtools_build linguisttools_build \ +USE_QT= qmake:build buildtools:build linguisttools:build \ core network widgets xml # No USE_GITHUB, but pretty close diff --git a/www/kf5-kdewebkit/Makefile b/www/kf5-kdewebkit/Makefile index 2d6d01e3b9f87..cf2d62116cab4 100644 --- a/www/kf5-kdewebkit/Makefile +++ b/www/kf5-kdewebkit/Makefile @@ -10,9 +10,9 @@ USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz xorg USE_KDE= auth codecs completion config configwidgets coreaddons \ i18n jobwidgets kio parts service sonnet solid \ textwidgets wallet widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus gui network webkit widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 .include diff --git a/www/kf5-khtml/Makefile b/www/kf5-khtml/Makefile index 2f9cadcc2c132..1f024ffe6f52b 100644 --- a/www/kf5-khtml/Makefile +++ b/www/kf5-khtml/Makefile @@ -15,10 +15,10 @@ USE_KDE= archive auth bookmarks codecs completion config \ configwidgets coreaddons globalaccel i18n iconthemes \ jobwidgets js kio notifications parts service solid sonnet \ textwidgets wallet widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus gui network phonon4 \ printsupport widgets x11extras xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= ice sm x11 xext .include diff --git a/www/kf5-kjs/Makefile b/www/kf5-kjs/Makefile index beda6f8261460..e6012cff7e691 100644 --- a/www/kf5-kjs/Makefile +++ b/www/kf5-kjs/Makefile @@ -8,8 +8,8 @@ COMMENT= KF5 library providing an ECMAScript interpreter LIB_DEPENDS= libpcre.so:devel/pcre USES= cmake compiler:c++11-lib kde:5 pkgconfig qt:5 tar:xz -USE_KDE= doctools_build ecm_build +USE_KDE= doctools:build ecm:build USE_QT= core \ - buildtools_build qmake_build + buildtools:build qmake:build .include diff --git a/www/kf5-kjsembed/Makefile b/www/kf5-kjsembed/Makefile index 6b7378cc4ca59..d1d59597b4837 100644 --- a/www/kf5-kjsembed/Makefile +++ b/www/kf5-kjsembed/Makefile @@ -9,8 +9,8 @@ COMMENT= KF5 library for binding JavaScript objects to QObjects USES= cmake compiler:c++11-lib gettext gl kde:5 qt:5 tar:xz USE_GL= gl USE_KDE= archive i18n js \ - doctools_build ecm_build + doctools:build ecm:build USE_QT= core gui svg uiplugin uitools widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build .include diff --git a/www/kristall/Makefile b/www/kristall/Makefile index a3ce5b5d8f9df..8baba5f69b233 100644 --- a/www/kristall/Makefile +++ b/www/kristall/Makefile @@ -15,8 +15,8 @@ LIB_DEPENDS= libcmark.so:textproc/cmark \ USES= compiler:c++17-lang desktop-file-utils gl iconv pkgconfig \ qt:5 shared-mime-info ssl -USE_QT= core gui multimedia network svg widgets buildtools_build \ - linguisttools_build qmake_build +USE_QT= core gui multimedia network svg widgets buildtools:build \ + linguisttools:build qmake:build USE_GL= gl USE_GITHUB= yes diff --git a/www/onlyoffice-documentserver/Makefile b/www/onlyoffice-documentserver/Makefile index e550b15210753..35b7a0b55fa74 100644 --- a/www/onlyoffice-documentserver/Makefile +++ b/www/onlyoffice-documentserver/Makefile @@ -42,7 +42,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}supervisor>0:sysutils/py-supervisor@${PY_FLA USES= autoreconf:build dos2unix fakeroot gmake gnome iconv localbase nodejs:16,build pkgconfig \ python:3.7+,build qt:5 trigger -USE_QT= qmake_build +USE_QT= qmake:build USE_GITHUB= yes GH_ACCOUNT= ONLYOFFICE GH_PROJECT= DocumentServer diff --git a/www/otter-browser/Makefile b/www/otter-browser/Makefile index fa79632d00c97..cb908b92b1484 100644 --- a/www/otter-browser/Makefile +++ b/www/otter-browser/Makefile @@ -24,7 +24,7 @@ LIB_DEPENDS= libhunspell-1.7.so:textproc/hunspell USES= cmake compiler:c++11-lib desktop-file-utils qt:5 USE_QT= concurrent core dbus declarative gui multimedia network printsupport \ script sql sql-sqlite3 svg widgets xmlpatterns \ - buildtools_build qmake_build + buildtools:build qmake:build USE_GITHUB= yes GH_ACCOUNT= OtterBrowser diff --git a/www/plasma5-plasma-browser-integration/Makefile b/www/plasma5-plasma-browser-integration/Makefile index f726d54163b67..f01662fcae7a9 100644 --- a/www/plasma5-plasma-browser-integration/Makefile +++ b/www/plasma5-plasma-browser-integration/Makefile @@ -13,7 +13,7 @@ USE_KDE= activities completion config coreaddons crash dbusaddons \ plasma-framework plasma-workspace purpose runner service \ widgetsaddons windowsystem USE_QT= concurrent core declarative dbus gui network widgets \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 .include diff --git a/www/py-qt5-webengine/Makefile b/www/py-qt5-webengine/Makefile index ed538fdae7a8a..4269f100e026b 100644 --- a/www/py-qt5-webengine/Makefile +++ b/www/py-qt5-webengine/Makefile @@ -16,10 +16,10 @@ LICENSE= GPLv3 USES= gl python:3.8+ pyqt:5 qt:5 USE_GL= gl -USE_PYQT= sip_build pyqt5 +USE_PYQT= sip:build pyqt5 USE_PYTHON= concurrent flavors py3kplist USE_QT= core declarative gui location network printsupport webchannel \ - webengine widgets qmake_build + webengine widgets qmake:build PLIST_SUB= PYQT_WEBENGINE_VERSION=${DISTVERSION} diff --git a/www/qhttpengine/Makefile b/www/qhttpengine/Makefile index 897d034d50735..ec77c3bf3d7ec 100644 --- a/www/qhttpengine/Makefile +++ b/www/qhttpengine/Makefile @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= cmake compiler:c++11-lang qt:5 USE_GITHUB= yes GH_ACCOUNT= nitroshare -USE_QT= core network buildtools_build qmake_build +USE_QT= core network buildtools:build qmake:build USE_LDCONFIG= yes .include diff --git a/www/qt5-webchannel/Makefile b/www/qt5-webchannel/Makefile index 583bc556f0527..a9fe15e99133f 100644 --- a/www/qt5-webchannel/Makefile +++ b/www/qt5-webchannel/Makefile @@ -8,7 +8,7 @@ COMMENT= Qt 5 library for integration of C++/QML with HTML/js clients USES= compiler:c++11-lang qmake:norecursive qt-dist:5,webchannel USE_QT= core declarative \ - buildtools_build declarative-test_build testlib_build + buildtools:build declarative-test:build testlib:build # The default EXTRACT_AFTER_ARGS value excludes examples/ from the extracted # tarball, which we need during the build. diff --git a/www/qt5-webengine/Makefile b/www/qt5-webengine/Makefile index 9a96210e4808e..3291d8c86145a 100644 --- a/www/qt5-webengine/Makefile +++ b/www/qt5-webengine/Makefile @@ -77,7 +77,7 @@ USE_GL= gl USE_GNOME= glib20 libxml2 libxslt USE_QT= core declarative gui location network printsupport \ webchannel widgets \ - buildtools_build designer_build qmake_build + buildtools:build designer:build qmake:build USE_XORG= x11 xcb xcomposite xcursor xdamage xext xfixes xi xorgproto \ xrandr xrender xscrnsaver xtst diff --git a/www/qt5-webglplugin/Makefile b/www/qt5-webglplugin/Makefile index 69e9a96afaf35..bd77d4405d22a 100644 --- a/www/qt5-webglplugin/Makefile +++ b/www/qt5-webglplugin/Makefile @@ -13,6 +13,6 @@ USES= compiler:c++11-lang gl gnome qmake:norecursive qt-dist:5 USE_GL= gl USE_GNOME= glib20 USE_QT= core dbus declarative gui network webchannel websockets \ - buildtools_build + buildtools:build .include diff --git a/www/qt5-webkit/Makefile b/www/qt5-webkit/Makefile index d40ec057a0785..27664f6ee0688 100644 --- a/www/qt5-webkit/Makefile +++ b/www/qt5-webkit/Makefile @@ -27,7 +27,7 @@ USE_GNOME= glib20 libxml2 libxslt USE_PERL5= build USE_QT= core declarative gui location network opengl printsupport \ sensors webchannel widgets \ - buildtools_build declarative-test_build qmake_build testlib_build + buildtools:build declarative-test:build qmake:build testlib:build USE_RUBY= yes USE_XORG= x11 xcomposite xrender diff --git a/www/qt5-websockets-qml/Makefile b/www/qt5-websockets-qml/Makefile index fe16e7d19d6f3..b7f117a7dfa95 100644 --- a/www/qt5-websockets-qml/Makefile +++ b/www/qt5-websockets-qml/Makefile @@ -7,6 +7,6 @@ MAINTAINER= kde@FreeBSD.org COMMENT= Qt implementation of WebSocket protocol (QML bindings) USES= compiler:c++11-lang qmake qt-dist:5,websockets -USE_QT= buildtools_build core declarative network websockets +USE_QT= buildtools:build core declarative network websockets .include diff --git a/www/qt5-websockets/Makefile b/www/qt5-websockets/Makefile index 56ca500451caf..8021b81ca0d22 100644 --- a/www/qt5-websockets/Makefile +++ b/www/qt5-websockets/Makefile @@ -8,6 +8,6 @@ COMMENT= Qt implementation of WebSocket protocol USES= compiler:c++11-lang perl5 qmake:norecursive qt-dist:5,websockets USE_PERL5= extract -USE_QT= buildtools_build core network +USE_QT= buildtools:build core network .include diff --git a/www/qt5-webview/Makefile b/www/qt5-webview/Makefile index 84ad1fe8a297d..c2019721d30da 100644 --- a/www/qt5-webview/Makefile +++ b/www/qt5-webview/Makefile @@ -9,7 +9,7 @@ COMMENT= Qt component for displaying web content USES= compiler:c++11-lang gl qmake:norecursive qt-dist:5 USE_GL= gl USE_QT= core declarative gui location network webchannel \ - buildtools_build + buildtools:build .include diff --git a/www/wt/Makefile b/www/wt/Makefile index 505977061973d..b07c7a41874be 100644 --- a/www/wt/Makefile +++ b/www/wt/Makefile @@ -115,7 +115,7 @@ POSTGRES_CMAKE_ON= -DPOSTGRES_PREFIX:STRING=${LOCALBASE} \ QT5_CMAKE_BOOL= ENABLE_QT5 QT5_USES= qt:5 -QT5_USE= qt=buildtools_build,core +QT5_USE= qt=buildtools:build,core RESOURCES_CMAKE_BOOL= INSTALL_RESOURCES diff --git a/x11-clocks/kteatime/Makefile b/x11-clocks/kteatime/Makefile index 6da584d9050d6..42bdc708eca55 100644 --- a/x11-clocks/kteatime/Makefile +++ b/x11-clocks/kteatime/Makefile @@ -10,9 +10,9 @@ USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons crash doctools \ i18n iconthemes notifications notifyconfig sonnet textwidgets \ widgetsaddons xmlgui \ - ecm_build + ecm:build USE_QT= core dbus gui widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build OPTIONS_DEFINE= DOCS diff --git a/x11-clocks/ktimer/Makefile b/x11-clocks/ktimer/Makefile index 58a5e28f75554..b88ce67079c4c 100644 --- a/x11-clocks/ktimer/Makefile +++ b/x11-clocks/ktimer/Makefile @@ -10,9 +10,9 @@ USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons \ dbusaddons doctools i18n iconthemes jobwidgets kio \ notifications service solid widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus gui network widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 OPTIONS_DEFINE= DOCS diff --git a/x11-fm/arqiver/Makefile b/x11-fm/arqiver/Makefile index 232c8852d1cba..b46a27f0d6979 100644 --- a/x11-fm/arqiver/Makefile +++ b/x11-fm/arqiver/Makefile @@ -12,7 +12,7 @@ LICENSE= GPLv3 USES= cmake qt:5 tar:xz xorg USE_XORG= xcb -USE_QT= buildtools_build qmake_build \ +USE_QT= buildtools:build qmake:build \ core gui linguist svg widgets \ x11extras diff --git a/x11-fm/dolphin/Makefile b/x11-fm/dolphin/Makefile index a481b7ae3147a..c0dcc67b88a0a 100644 --- a/x11-fm/dolphin/Makefile +++ b/x11-fm/dolphin/Makefile @@ -22,9 +22,9 @@ USE_KDE= activities attica auth baloo baloo-widgets bookmarks codecs \ kio newstuff notifications parts service \ solid sonnet texteditor textwidgets widgetsaddons \ windowsystem xmlgui \ - doctools_build ecm_build + doctools:build ecm:build USE_QT= concurrent core dbus gui network phonon4 widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 SHLIB_VER= 5.0.0 diff --git a/x11-fm/konqueror/Makefile b/x11-fm/konqueror/Makefile index 6d81ccd3022b2..597bb5233d4a8 100644 --- a/x11-fm/konqueror/Makefile +++ b/x11-fm/konqueror/Makefile @@ -15,7 +15,7 @@ USE_KDE= activities archive auth bookmarks codecs completion config configwidge textwidgets unitconversion wallet widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus declarative gui location network printsupport script \ speech webchannel webengine widgets x11extras xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= ice sm x11 xext OPTIONS_DEFINE= DOCS diff --git a/x11-fm/krusader2/Makefile b/x11-fm/krusader2/Makefile index f65f44d7df26f..99e38cd1b27b1 100644 --- a/x11-fm/krusader2/Makefile +++ b/x11-fm/krusader2/Makefile @@ -18,7 +18,7 @@ USE_KDE= archive auth auth bookmarks codecs completion config \ service solid sonnet textwidgets wallet widgetsaddons \ windowsystem xmlgui USE_QT= concurrent core dbus gui network printsupport xml widgets \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 .include diff --git a/x11-fm/pcmanfm-qt/Makefile b/x11-fm/pcmanfm-qt/Makefile index c93afb7a56dcb..639c8e340d441 100644 --- a/x11-fm/pcmanfm-qt/Makefile +++ b/x11-fm/pcmanfm-qt/Makefile @@ -16,7 +16,7 @@ LIB_DEPENDS= libmenu-cache.so:x11/menu-cache \ USES= cmake compiler:c++14-lang desktop-file-utils gnome\ gettext-runtime localbase:ldflags lxqt pkgconfig kde:5 qt:5 \ tar:xz xorg -USE_QT= buildtools_build qmake_build core dbus gui linguisttools \ +USE_QT= buildtools:build qmake:build core dbus gui linguisttools \ widgets x11extras USE_KDE= oxygen-icons5 USE_LXQT= buildtools libfmqt diff --git a/x11-fm/qtfm/Makefile b/x11-fm/qtfm/Makefile index d0139246bd983..3bda6eed4c7cb 100644 --- a/x11-fm/qtfm/Makefile +++ b/x11-fm/qtfm/Makefile @@ -15,7 +15,7 @@ LIB_DEPENDS= libinotify.so:devel/libinotify USES= compiler:c++11-lang desktop-file-utils gl qmake qt:5 USE_GL= gl USE_QT= concurrent core dbus gui widgets \ - buildtools_build qmake_build + buildtools:build qmake:build USE_GITHUB= yes GH_ACCOUNT= rodlie diff --git a/x11-fonts/fontmatrix/Makefile b/x11-fonts/fontmatrix/Makefile index 2699c4c88c783..2666b711e77d9 100644 --- a/x11-fonts/fontmatrix/Makefile +++ b/x11-fonts/fontmatrix/Makefile @@ -17,6 +17,6 @@ USES= cmake compiler:c++11-lang qt:5 USE_GITHUB= yes USE_QT= buildtools core gui linguisttools network printsupport \ - qmake_build sql svg webkit widgets xml + qmake:build sql svg webkit widgets xml .include diff --git a/x11-fonts/fontobene/Makefile b/x11-fonts/fontobene/Makefile index fe026cfb4bdc2..64e8e97a06aa1 100644 --- a/x11-fonts/fontobene/Makefile +++ b/x11-fonts/fontobene/Makefile @@ -12,7 +12,7 @@ LICENSE_FILE_APACHE20= ${WRKSRC}/LICENSE-APACHE LICENSE_FILE_MIT= ${WRKSRC}/LICENSE-MIT USES= cmake compiler:c++11-lang qt:5 -USE_QT= core buildtools_build qmake_build # core is needed for build to be checked by cmake, and for run because it is included from the headers +USE_QT= core buildtools:build qmake:build # core is needed for build to be checked by cmake, and for run because it is included from the headers USE_GITHUB= yes GH_PROJECT= ${PORTNAME}-qt5 diff --git a/x11-fonts/oxygen-fonts/Makefile b/x11-fonts/oxygen-fonts/Makefile index 87dfe753aa770..f8aec45869aae 100644 --- a/x11-fonts/oxygen-fonts/Makefile +++ b/x11-fonts/oxygen-fonts/Makefile @@ -16,11 +16,11 @@ BUILD_DEPENDS= fontforge:print/fontforge USES= cmake fonts:none kde:5 qt:5 tar:xz -USE_KDE= ecm_build +USE_KDE= ecm:build KDE_PLASMA_VERSION= ${DISTVERSION} KDE_PLASMA_BRANCH= Attic -USE_QT= buildtools_build qmake_build +USE_QT= buildtools:build qmake:build NO_ARCH= yes diff --git a/x11-themes/Kvantum/Makefile b/x11-themes/Kvantum/Makefile index 49bab19a024ff..6cfad4f90e275 100644 --- a/x11-themes/Kvantum/Makefile +++ b/x11-themes/Kvantum/Makefile @@ -20,7 +20,7 @@ USE_GL= gl USE_LDCONFIG= yes USE_KDE= windowsystem USE_QT= core gui svg widgets x11extras \ - buildtools_build linguisttools_build + buildtools:build linguisttools:build USE_XORG= x11 xext WRKSRC_SUBDIR= ${PORTNAME} diff --git a/x11-themes/adwaita-qt5/Makefile b/x11-themes/adwaita-qt5/Makefile index 3bef3e4759248..02ba18b5badfb 100644 --- a/x11-themes/adwaita-qt5/Makefile +++ b/x11-themes/adwaita-qt5/Makefile @@ -26,7 +26,7 @@ _qt_version?= 5 _qt5_qt6_on= OFF _qt6_qt6_on= ON _qt5_use= core dbus gui widgets x11extras \ - buildtools_build qmake_build + buildtools:build qmake:build _qt6_use= base _qt5_plist_sub= QT_VERSION_SUFFIX= _qt6_plist_sub= QT_VERSION_SUFFIX=6 diff --git a/x11-themes/kf5-breeze-icons/Makefile b/x11-themes/kf5-breeze-icons/Makefile index 1bb965f0a51b4..1037eb872110f 100644 --- a/x11-themes/kf5-breeze-icons/Makefile +++ b/x11-themes/kf5-breeze-icons/Makefile @@ -12,8 +12,8 @@ BUILD_DEPENDS= bash:shells/bash \ ${PYTHON_PKGNAMEPREFIX}lxml>=0:devel/py-lxml@${PY_FLAVOR} USES= compiler:c++11-lang cmake kde:5 python:3.5+,build qt:5 shebangfix tar:xz -USE_KDE= ecm_build -USE_QT= buildtools_build qmake_build testlib_build +USE_KDE= ecm:build +USE_QT= buildtools:build qmake:build testlib:build SHEBANG_FILES= svg-xml-script-template.py generate-24px-versions.py diff --git a/x11-themes/kf5-kemoticons/Makefile b/x11-themes/kf5-kemoticons/Makefile index 95cbf2a4b1972..f563bf2438531 100644 --- a/x11-themes/kf5-kemoticons/Makefile +++ b/x11-themes/kf5-kemoticons/Makefile @@ -7,8 +7,8 @@ COMMENT= KF5 library to convert emoticons USES= cmake compiler:c++11-lib kde:5 qt:5 tar:xz USE_KDE= archive config coreaddons service \ - ecm_build + ecm:build USE_QT= core dbus gui widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build .include diff --git a/x11-themes/kf5-kiconthemes/Makefile b/x11-themes/kf5-kiconthemes/Makefile index 1263f6ba30a64..e90554eccc653 100644 --- a/x11-themes/kf5-kiconthemes/Makefile +++ b/x11-themes/kf5-kiconthemes/Makefile @@ -8,13 +8,13 @@ COMMENT= KF5 library for handling icons in applications USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= archive auth codecs config configwidgets coreaddons \ i18n itemviews widgetsaddons \ - ecm_build + ecm:build USE_QT= concurrent core dbus gui script svg widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build OPTIONS_DEFINE= ICONS OPTIONS_DEFAULT= ICONS ICONS_DESC= Install Breeze Icons -ICONS_USE= KDE=breeze-icons_run +ICONS_USE= KDE=breeze-icons:run .include diff --git a/x11-themes/kf5-oxygen-icons5/Makefile b/x11-themes/kf5-oxygen-icons5/Makefile index 9ce25a7927924..9b4a0d27bad86 100644 --- a/x11-themes/kf5-oxygen-icons5/Makefile +++ b/x11-themes/kf5-oxygen-icons5/Makefile @@ -6,14 +6,14 @@ MAINTAINER= kde@FreeBSD.org COMMENT= The Oxygen icon theme for KDE USES= cmake kde:5 qt:5 tar:xz -USE_KDE= ecm_build # We only install icons. +USE_KDE= ecm:build # We only install icons. # The qmake dependency is only needed so that kf5-e-c-m can query qmake for # some installation directories. # We explicitly prevent it from looking for qt5-core and specify qmake's path # to avoid needlessly depending on qt5-core; we're just installing a ton of # icon files and do not even use the paths queried from qmake. -USE_QT= buildtools_build qmake_build +USE_QT= buildtools:build qmake:build NO_ARCH= yes diff --git a/x11-themes/kf5-qqc2-desktop-style/Makefile b/x11-themes/kf5-qqc2-desktop-style/Makefile index 0c8557c533b0a..e3057651f7fb7 100644 --- a/x11-themes/kf5-qqc2-desktop-style/Makefile +++ b/x11-themes/kf5-qqc2-desktop-style/Makefile @@ -9,8 +9,8 @@ COMMENT= Qt QuickControl2 style for KDE USES= cmake compiler:c++11-lang kde:5 pkgconfig qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons iconthemes \ kirigami2 widgetsaddons \ - ecm_build + ecm:build USE_QT= core dbus declarative gui network widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build .include diff --git a/x11-themes/lumina-themes/Makefile b/x11-themes/lumina-themes/Makefile index 24c639bbd2434..d940eb35e7d27 100644 --- a/x11-themes/lumina-themes/Makefile +++ b/x11-themes/lumina-themes/Makefile @@ -11,7 +11,7 @@ LICENSE= BSD2CLAUSE CC0-1.0 LICENSE_COMB= multi USES= qmake qt:5 -USE_QT= qmake_build +USE_QT= qmake:build USE_GITHUB= yes GH_ACCOUNT= trueos diff --git a/x11-themes/plasma5-breeze-gtk/Makefile b/x11-themes/plasma5-breeze-gtk/Makefile index a7c4581e627fe..3c75ad8c8f13a 100644 --- a/x11-themes/plasma5-breeze-gtk/Makefile +++ b/x11-themes/plasma5-breeze-gtk/Makefile @@ -16,7 +16,7 @@ USES= cmake compiler:c++11-lang gnome kde:5 pkgconfig python:3.4+ \ USE_GNOME= gdkpixbuf2 USE_KDE= breeze ecm USE_QT= core \ - buildtools_build qmake_build + buildtools:build qmake:build CMAKE_ARGS= -DPython3_EXECUTABLE:PATH=${PYTHON_CMD} BINARY_ALIAS= python3=${PYTHON_CMD} diff --git a/x11-themes/plasma5-breeze/Makefile b/x11-themes/plasma5-breeze/Makefile index d800612010cb7..5f74fb8a8a578 100644 --- a/x11-themes/plasma5-breeze/Makefile +++ b/x11-themes/plasma5-breeze/Makefile @@ -18,7 +18,7 @@ USE_KDE= auth breeze-icons codecs config configwidgets coreaddons \ kcmutils plasma-framework service wayland widgetsaddons \ windowsystem USE_QT= core dbus declarative gui network widgets x11extras xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 xcb .include diff --git a/x11-themes/plasma5-kde-gtk-config/Makefile b/x11-themes/plasma5-kde-gtk-config/Makefile index 2276dc46d5dbe..6f8217ec6ca7a 100644 --- a/x11-themes/plasma5-kde-gtk-config/Makefile +++ b/x11-themes/plasma5-kde-gtk-config/Makefile @@ -20,9 +20,9 @@ USE_GNOME= cairo gdkpixbuf2 glib20 gtk20 gtk30 USE_KDE= archive attica auth codecs completion config configwidgets \ coreaddons dbusaddons decoration guiaddons i18n iconthemes \ jobwidgets kcmutils kio newstuff service widgetsaddons xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus gui network svg widgets xml \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build USE_XORG= x11 xcursor .include diff --git a/x11-themes/plasma5-oxygen/Makefile b/x11-themes/plasma5-oxygen/Makefile index 7221147fcd841..a33b5ba0ea5f8 100644 --- a/x11-themes/plasma5-oxygen/Makefile +++ b/x11-themes/plasma5-oxygen/Makefile @@ -17,7 +17,7 @@ USE_KDE= auth codecs completion config configwidgets coreaddons \ decoration ecm frameworkintegration guiaddons i18n kcmutils \ service wayland widgetsaddons windowsystem USE_QT= core dbus declarative gui network widgets x11extras xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 xcb .include diff --git a/x11-themes/plasma5-plasma-workspace-wallpapers/Makefile b/x11-themes/plasma5-plasma-workspace-wallpapers/Makefile index 19ba57ce6d92e..fa94ec36109d2 100644 --- a/x11-themes/plasma5-plasma-workspace-wallpapers/Makefile +++ b/x11-themes/plasma5-plasma-workspace-wallpapers/Makefile @@ -13,8 +13,8 @@ LICENSE_FILE_LGPL3= ${WRKSRC}/COPYING.LGPL3 USES= cmake kde:5 qt:5 tar:xz USE_KDE= ecm -USE_QT= buildtools_build \ - qmake_build +USE_QT= buildtools:build \ + qmake:build NO_ARCH= yes diff --git a/x11-themes/qgnomeplatform/Makefile b/x11-themes/qgnomeplatform/Makefile index 63080f955900d..1bcd1b576e614 100644 --- a/x11-themes/qgnomeplatform/Makefile +++ b/x11-themes/qgnomeplatform/Makefile @@ -17,7 +17,7 @@ LIB_DEPENDS= libwayland-client.so:graphics/wayland \ USES= compiler:c++11-lang gl gnome pkgconfig qmake:outsource qt:5 xorg USE_GL= gl USE_GNOME= gtk30 cairo gdkpixbuf2 -USE_QT= buildtools_build core gui widgets dbus wayland +USE_QT= buildtools:build core gui widgets dbus wayland USE_XORG= x11 USE_GITHUB= yes diff --git a/x11-themes/qt5-style-plugins/Makefile b/x11-themes/qt5-style-plugins/Makefile index 06a499b5dec71..03e6df4ec9c8d 100644 --- a/x11-themes/qt5-style-plugins/Makefile +++ b/x11-themes/qt5-style-plugins/Makefile @@ -21,7 +21,7 @@ USE_GITHUB= yes GH_ACCOUNT= qt GH_PROJECT= qtstyleplugins USE_GNOME= atk cairo gdkpixbuf2 glib20 gtk20 pango -USE_QT= core dbus gui widgets buildtools_build +USE_QT= core dbus gui widgets buildtools:build USE_GL= gl USE_XORG= x11 xext diff --git a/x11-themes/qtcurve/Makefile b/x11-themes/qtcurve/Makefile index 5a7708fb02e95..654d8df9a410b 100644 --- a/x11-themes/qtcurve/Makefile +++ b/x11-themes/qtcurve/Makefile @@ -54,8 +54,8 @@ PLIST= ${PKGDIR}/pkg-plist.${QTCURVE_SLAVE} .if ${QTCURVE_SLAVE} == "utils" PKGNAMESUFFIX= -utils USES+= gettext-runtime kde:5 qt:5 -USE_KDE+= i18n_build -USE_QT+= buildtools_build qmake_build +USE_KDE+= i18n:build +USE_QT+= buildtools:build qmake:build USE_LDCONFIG= yes BUILD_WRKSRC= ${WRKSRC} .else @@ -66,8 +66,8 @@ LIB_DEPENDS+= libqtcurve-utils.so:x11-themes/qtcurve-utils PKGNAMEPREFIX= gtk2- PKGNAMESUFFIX= -theme USES+= gettext-runtime gnome kde:5 qt:5 -USE_KDE= i18n_build -USE_QT+= buildtools_build qmake_build +USE_KDE= i18n:build +USE_QT+= buildtools:build qmake:build USE_GNOME= cairo gdkpixbuf2 gtk20 pango USE_LDCONFIG= yes @@ -84,9 +84,9 @@ USES+= kde:5 qt:5 USE_KDE= archive completion config configwidgets coreaddons \ frameworkintegration guiaddons i18n iconthemes \ init kdelibs4support kio widgetsaddons windowsystem xmlgui \ - doctools_build ecm_build + doctools:build ecm:build USE_QT= core dbus gui printsupport svg widgets x11extras \ - buildtools_build qmake_build + buildtools:build qmake:build BUILD_WRKSRC= ${WRKSRC}/qt5 .endif @@ -94,9 +94,9 @@ BUILD_WRKSRC= ${WRKSRC}/qt5 CONFLICTS_INSTALL= kf5-style-qtcurve PKGNAMEPREFIX= qt5-style- USES+= kde:5 qt:5 -USE_KDE= i18n_build +USE_KDE= i18n:build USE_QT= core dbus gui svg widgets x11extras \ - buildtools_build qmake_build + buildtools:build qmake:build PLIST_FILES= ${QT_PLUGINDIR_REL}/styles/qtcurve.so .endif diff --git a/x11-toolkits/color-widgets-qt5/Makefile b/x11-toolkits/color-widgets-qt5/Makefile index fbdcfcfbb235c..cb53df4b40a2d 100644 --- a/x11-toolkits/color-widgets-qt5/Makefile +++ b/x11-toolkits/color-widgets-qt5/Makefile @@ -11,7 +11,7 @@ LICENSE= LGPL3 LICENSE_FILE= ${WRKSRC}/COPYING USES= cmake compiler:c++11-lang pkgconfig qt:5 -USE_QT= core gui widgets buildtools_build qmake_build +USE_QT= core gui widgets buildtools:build qmake:build USE_LDCONFIG= yes SUFFIX= -qt5 diff --git a/x11-toolkits/ctk/Makefile b/x11-toolkits/ctk/Makefile index 0d1042751adfa..f26fd05a8c571 100644 --- a/x11-toolkits/ctk/Makefile +++ b/x11-toolkits/ctk/Makefile @@ -15,7 +15,7 @@ USES= cmake compiler:c++11-lib qt:5 USE_GITHUB= yes GH_ACCOUNT= commontk USE_QT= concurrent core designer gui opengl sql widgets xml xmlpatterns \ - buildtools_build uitools_build qmake_build testlib_build # see CMake/ctkMacroSetupQt.cmake + buildtools:build uitools:build qmake:build testlib:build # see CMake/ctkMacroSetupQt.cmake USE_LDCONFIG= yes CMAKE_ARGS= -DCTK_QT_VERSION=5 diff --git a/x11-toolkits/kf5-attica/Makefile b/x11-toolkits/kf5-attica/Makefile index b1efae080b05e..a24968e25d68f 100644 --- a/x11-toolkits/kf5-attica/Makefile +++ b/x11-toolkits/kf5-attica/Makefile @@ -11,8 +11,8 @@ LICENSE= LGPL21 LGPL3 LICENSE_COMB= dual USES= cmake compiler:c++11-lib kde:5 pathfix qt:5 tar:xz -USE_KDE= ecm_build +USE_KDE= ecm:build USE_QT= core network \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build .include diff --git a/x11-toolkits/kf5-kcompletion/Makefile b/x11-toolkits/kf5-kcompletion/Makefile index 87d1488cb77e8..3ea90602027c4 100644 --- a/x11-toolkits/kf5-kcompletion/Makefile +++ b/x11-toolkits/kf5-kcompletion/Makefile @@ -7,8 +7,8 @@ COMMENT= KF5 text completion helpers and widgets USES= cmake compiler:c++11-lib kde:5 qt:5 tar:xz USE_KDE= config widgetsaddons \ - ecm_build + ecm:build USE_QT= core gui linguisttools widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build .include diff --git a/x11-toolkits/kf5-kconfigwidgets/Makefile b/x11-toolkits/kf5-kconfigwidgets/Makefile index be1271c430bb8..1cb82a112504c 100644 --- a/x11-toolkits/kf5-kconfigwidgets/Makefile +++ b/x11-toolkits/kf5-kconfigwidgets/Makefile @@ -8,9 +8,9 @@ COMMENT= KF5 widgets for configuration dialogs USES= cmake compiler:c++11-lib gettext kde:5 qt:5 shebangfix tar:xz USE_KDE= auth codecs config coreaddons guiaddons \ i18n widgetsaddons \ - doctools_build ecm_build + doctools:build ecm:build USE_QT= core dbus gui widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build SHEBANG_FILES= src/preparetips5 diff --git a/x11-toolkits/kf5-kdesignerplugin/Makefile b/x11-toolkits/kf5-kdesignerplugin/Makefile index 7dfb16866d893..414e0b8594106 100644 --- a/x11-toolkits/kf5-kdesignerplugin/Makefile +++ b/x11-toolkits/kf5-kdesignerplugin/Makefile @@ -10,9 +10,9 @@ USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons i18n iconthemes itemviews \ jobwidgets kdewebkit kio plotting service solid sonnet \ textwidgets widgetsaddons xmlgui \ - doctools_build ecm_build + doctools:build ecm:build USE_QT= concurrent core dbus designer gui linguisttools \ network webkit widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build .include diff --git a/x11-toolkits/kf5-kguiaddons/Makefile b/x11-toolkits/kf5-kguiaddons/Makefile index f482f6ce66cac..e0dc2966dc932 100644 --- a/x11-toolkits/kf5-kguiaddons/Makefile +++ b/x11-toolkits/kf5-kguiaddons/Makefile @@ -11,9 +11,9 @@ LIB_DEPENDS= libwayland-client.so:graphics/wayland USES= cmake compiler:c++11-lib desktop-file-utils kde:5 \ pkgconfig qt:5 tar:xz xorg USE_KDE= plasma-wayland-protocols \ - ecm_build + ecm:build USE_QT= core gui wayland widgets x11extras \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build USE_XORG= ice sm x11 xcb xext .include diff --git a/x11-toolkits/kf5-kirigami2/Makefile b/x11-toolkits/kf5-kirigami2/Makefile index f72b43031d399..514c28672cd65 100644 --- a/x11-toolkits/kf5-kirigami2/Makefile +++ b/x11-toolkits/kf5-kirigami2/Makefile @@ -8,9 +8,9 @@ COMMENT= QtQuick based components set USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= kdeclarative \ - ecm_build + ecm:build USE_QT= core concurrent dbus declarative graphicaleffects gui \ linguisttools network quickcontrols2 svg widgets \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build .include diff --git a/x11-toolkits/kf5-kitemviews/Makefile b/x11-toolkits/kf5-kitemviews/Makefile index 6686d04d8e0e1..c102eeec1bfcf 100644 --- a/x11-toolkits/kf5-kitemviews/Makefile +++ b/x11-toolkits/kf5-kitemviews/Makefile @@ -6,8 +6,8 @@ MAINTAINER= kde@FreeBSD.org COMMENT= KF5 widget addons for Qt Model/View USES= cmake compiler:c++11-lib kde:5 qt:5 tar:xz -USE_KDE= ecm_build +USE_KDE= ecm:build USE_QT= core gui linguisttools uiplugin widgets \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build .include diff --git a/x11-toolkits/kf5-kjobwidgets/Makefile b/x11-toolkits/kf5-kjobwidgets/Makefile index 77d1790475080..4249fad8f80f5 100644 --- a/x11-toolkits/kf5-kjobwidgets/Makefile +++ b/x11-toolkits/kf5-kjobwidgets/Makefile @@ -7,8 +7,8 @@ COMMENT= KF5 widgets for tracking KJob instance USES= cmake compiler:c++11-lib kde:5 qt:5 tar:xz USE_KDE= coreaddons widgetsaddons \ - ecm_build + ecm:build USE_QT= core dbus gui linguisttools widgets x11extras \ - buildtools_build qmake_build + buildtools:build qmake:build .include diff --git a/x11-toolkits/kf5-ktextwidgets/Makefile b/x11-toolkits/kf5-ktextwidgets/Makefile index 629a790d47d10..a2b457843ccfe 100644 --- a/x11-toolkits/kf5-ktextwidgets/Makefile +++ b/x11-toolkits/kf5-ktextwidgets/Makefile @@ -8,9 +8,9 @@ COMMENT= KF5 advanced text editing widgets USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets \ coreaddons i18n service sonnet widgetsaddons \ - ecm_build + ecm:build USE_QT= concurrent core gui widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build OPTIONS_DEFINE= AUDIO OPTIONS_DEFAULT= AUDIO diff --git a/x11-toolkits/kf5-kwidgetsaddons/Makefile b/x11-toolkits/kf5-kwidgetsaddons/Makefile index 4c1136fa80b22..72c35c4d7047f 100644 --- a/x11-toolkits/kf5-kwidgetsaddons/Makefile +++ b/x11-toolkits/kf5-kwidgetsaddons/Makefile @@ -6,8 +6,8 @@ MAINTAINER= kde@FreeBSD.org COMMENT= KF5 addons to QtWidgets USES= cmake compiler:c++11-lib kde:5 pkgconfig qt:5 tar:xz -USE_KDE= ecm_build +USE_KDE= ecm:build USE_QT= core gui linguisttools uiplugin uitools wayland widgets \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build .include diff --git a/x11-toolkits/kf5-kxmlgui/Makefile b/x11-toolkits/kf5-kxmlgui/Makefile index b4571e5f98373..39bd84304f610 100644 --- a/x11-toolkits/kf5-kxmlgui/Makefile +++ b/x11-toolkits/kf5-kxmlgui/Makefile @@ -9,8 +9,8 @@ USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= attica5 auth codecs config configwidgets coreaddons \ globalaccel guiaddons i18n iconthemes itemviews sonnet \ textwidgets widgetsaddons windowsystem \ - ecm_build + ecm:build USE_QT= core dbus gui network printsupport widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build .include diff --git a/x11-toolkits/kproperty/Makefile b/x11-toolkits/kproperty/Makefile index b2354aa884601..9ed48adfc8f81 100644 --- a/x11-toolkits/kproperty/Makefile +++ b/x11-toolkits/kproperty/Makefile @@ -13,7 +13,7 @@ USES= cmake compiler:c++11-lang gettext kde:5 qt:5 \ tar:xz USE_KDE= ecm config coreaddons guiaddons i18n widgetsaddons USE_QT= core declarative gui widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build CONFLICTS_INSTALL= calligra-2* diff --git a/x11-toolkits/plasma5-kdeplasma-addons/Makefile b/x11-toolkits/plasma5-kdeplasma-addons/Makefile index d2b22bdae7a1e..c53ba16ff2c4d 100644 --- a/x11-toolkits/plasma5-kdeplasma-addons/Makefile +++ b/x11-toolkits/plasma5-kdeplasma-addons/Makefile @@ -15,10 +15,10 @@ USE_KDE= activities archive attica auth bookmarks codecs completion \ parts plasma-framework plasma-workspace runner service solid \ sonnet textwidgets unitconversion widgetsaddons windowsystem \ xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus declarative graphicaleffects gui location \ network printsupport script webchannel widgets x11extras xml \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build USE_XORG= x11 OPTIONS_DEFINE= PURPOSE QTWEBENGINE diff --git a/x11-toolkits/py-qt5-chart/Makefile b/x11-toolkits/py-qt5-chart/Makefile index 2905424ab8cbd..12c62232dd4df 100644 --- a/x11-toolkits/py-qt5-chart/Makefile +++ b/x11-toolkits/py-qt5-chart/Makefile @@ -18,8 +18,8 @@ LIB_DEPENDS= libqscintilla2_qt5.so:devel/qscintilla2-qt5 USES= gl python:3.8+ pyqt:5 qt:5 USE_GL= gl -USE_PYQT= sip_build pyqt5 +USE_PYQT= sip:build pyqt5 USE_PYTHON= concurrent flavors py3kplist -USE_QT= charts core declarative gui qmake_build widgets +USE_QT= charts core declarative gui qmake:build widgets .include diff --git a/x11-toolkits/qml-box2d/Makefile b/x11-toolkits/qml-box2d/Makefile index 0071c66159929..48f86cdf84e27 100644 --- a/x11-toolkits/qml-box2d/Makefile +++ b/x11-toolkits/qml-box2d/Makefile @@ -12,7 +12,7 @@ USE_GITHUB= yes GH_TAGNAME= 21e57f USE_GL= gl USE_QT= core declarative gui network \ - buildtools_build qmake_build + buildtools:build qmake:build USE_LDCONFIG= ${QT_QMLDIR}/Box2D.2.0/ .include diff --git a/x11-toolkits/qt5-charts/Makefile b/x11-toolkits/qt5-charts/Makefile index 14c58462c0826..716c0d569ddf1 100644 --- a/x11-toolkits/qt5-charts/Makefile +++ b/x11-toolkits/qt5-charts/Makefile @@ -8,6 +8,6 @@ COMMENT= Qt 5 charts module USES= compiler:c++11-lang qmake qt-dist:5,charts tar:xz USE_QT= core declarative network gui widgets designer \ - buildtools_build qmake_build + buildtools:build qmake:build .include diff --git a/x11-toolkits/qt5-datavis3d/Makefile b/x11-toolkits/qt5-datavis3d/Makefile index 0c12da08eb89f..cd4ac491d3d58 100644 --- a/x11-toolkits/qt5-datavis3d/Makefile +++ b/x11-toolkits/qt5-datavis3d/Makefile @@ -6,7 +6,7 @@ PKGNAMEPREFIX= qt5- MAINTAINER= kde@FreeBSD.org COMMENT= Qt 5 3D data visualization module -USE_QT= core declarative network gui widgets designer buildtools_build +USE_QT= core declarative network gui widgets designer buildtools:build USES= compiler:c++11-lang qmake qt-dist:5,datavis3d diff --git a/x11-toolkits/qt5-declarative-test/Makefile b/x11-toolkits/qt5-declarative-test/Makefile index 7fd76cdcfdb1f..5fdb5ce8f72f7 100644 --- a/x11-toolkits/qt5-declarative-test/Makefile +++ b/x11-toolkits/qt5-declarative-test/Makefile @@ -12,7 +12,7 @@ USES= compiler:c++11-lang gl python:build qmake:norecursive \ qt-dist:5,declarative USE_GL= gl USE_QT= core declarative gui network sql testlib widgets \ - buildtools_build + buildtools:build CONFLICTS= qt5-declarative-render2d-* qt5-qml qt5-quick diff --git a/x11-toolkits/qt5-declarative/Makefile b/x11-toolkits/qt5-declarative/Makefile index e0c5d5197d4f1..ef711730b765d 100644 --- a/x11-toolkits/qt5-declarative/Makefile +++ b/x11-toolkits/qt5-declarative/Makefile @@ -11,7 +11,7 @@ USES= compiler:c++11-lang gl python:build qmake:norecursive \ qt-dist:5 USE_GL= gl USE_QT= core gui network sql widgets \ - buildtools_build + buildtools:build CONFLICTS= qt5-declarative-render2d-* qt5-qml qt5-quick diff --git a/x11-toolkits/qt5-gamepad/Makefile b/x11-toolkits/qt5-gamepad/Makefile index 0178a9a388b39..225c393a03f62 100644 --- a/x11-toolkits/qt5-gamepad/Makefile +++ b/x11-toolkits/qt5-gamepad/Makefile @@ -9,6 +9,6 @@ COMMENT= Qt 5 Gamepad Module BUILD_DEPENDS= ${LOCALBASE}/include/linux/input.h:devel/evdev-proto USES= compiler:c++11-lang qmake:norecursive qt-dist:5,gamepad -USE_QT= core declarative gui buildtools_build +USE_QT= core declarative gui buildtools:build .include diff --git a/x11-toolkits/qt5-gui/Makefile b/x11-toolkits/qt5-gui/Makefile index bfa46c4a8acd0..b88214695abfd 100644 --- a/x11-toolkits/qt5-gui/Makefile +++ b/x11-toolkits/qt5-gui/Makefile @@ -36,7 +36,7 @@ USES= compiler:c++11-lang gl gnome jpeg localbase \ USE_GL= egl gl USE_GNOME= glib20 USE_PERL5= extract -USE_QT= core dbus network buildtools_build qmake_build +USE_QT= core dbus network buildtools:build qmake:build QT_BINARIES= yes QT_CONFIG= accessibility accessibility-atspi-bridge dbus \ fontconfig glib opengl png system-freetype system-jpeg \ diff --git a/x11-toolkits/qt5-quick3d/Makefile b/x11-toolkits/qt5-quick3d/Makefile index c95090956468a..006a8cff727b5 100644 --- a/x11-toolkits/qt5-quick3d/Makefile +++ b/x11-toolkits/qt5-quick3d/Makefile @@ -12,7 +12,7 @@ LIB_DEPENDS= libassimp.so:multimedia/assimp USES= compiler:c++11-lang qmake qt-dist:5 USE_QT= core declarative gui network opengl \ - buildtools_build + buildtools:build QT_BINARIES= yes diff --git a/x11-toolkits/qt5-quickcontrols/Makefile b/x11-toolkits/qt5-quickcontrols/Makefile index 711e3a973a575..49bbc88e47d08 100644 --- a/x11-toolkits/qt5-quickcontrols/Makefile +++ b/x11-toolkits/qt5-quickcontrols/Makefile @@ -11,6 +11,6 @@ BROKEN_armv6= fails to install: pkg-static: Unable to access file ApplicationWi USES= compiler:c++11-lang qmake qt-dist:5,quickcontrols USE_QT= core declarative gui widgets \ - buildtools_build + buildtools:build .include diff --git a/x11-toolkits/qt5-quickcontrols2/Makefile b/x11-toolkits/qt5-quickcontrols2/Makefile index 90476bb05f9a5..6a195f878a1f8 100644 --- a/x11-toolkits/qt5-quickcontrols2/Makefile +++ b/x11-toolkits/qt5-quickcontrols2/Makefile @@ -11,7 +11,7 @@ BROKEN_armv6= fails to install: pkg-static: Unable to access file DayOfWeekRow. USES= compiler:c++11-lang qmake:norecursive qt-dist:5 USE_QT= core declarative gui widgets \ - buildtools_build + buildtools:build QT_DIST= ${PORTNAME} .include diff --git a/x11-toolkits/qt5-quicktimeline/Makefile b/x11-toolkits/qt5-quicktimeline/Makefile index 652a36b057721..d4bba3b268249 100644 --- a/x11-toolkits/qt5-quicktimeline/Makefile +++ b/x11-toolkits/qt5-quicktimeline/Makefile @@ -9,6 +9,6 @@ WWW= https://qt-project.org USES= compiler:c++11-lang qmake qt-dist:5 USE_QT= core declarative quickcontrols \ - buildtools_build + buildtools:build .include diff --git a/x11-toolkits/qt5-uiplugin/Makefile b/x11-toolkits/qt5-uiplugin/Makefile index 6bcd9a26da0e1..9b79c5b4c05ea 100644 --- a/x11-toolkits/qt5-uiplugin/Makefile +++ b/x11-toolkits/qt5-uiplugin/Makefile @@ -9,7 +9,7 @@ COMMENT= Custom Qt widget plugin interface for Qt Designer USES= compiler:c++17-lang perl5 qmake qt-dist:5,tools USE_PERL5= extract USE_QT= core gui widgets \ - buildtools_build # syncqt + buildtools:build # syncqt BUILD_WRKSRC= ${WRKSRC}/src/designer/src/${PORTNAME} INSTALL_WRKSRC= ${WRKSRC}/src/designer/src/${PORTNAME} diff --git a/x11-toolkits/qt5-virtualkeyboard/Makefile b/x11-toolkits/qt5-virtualkeyboard/Makefile index 609657a160f39..1cd438bee7486 100644 --- a/x11-toolkits/qt5-virtualkeyboard/Makefile +++ b/x11-toolkits/qt5-virtualkeyboard/Makefile @@ -10,7 +10,7 @@ COMMENT= Qt 5 Virtual Keyboard Module LIB_DEPENDS= libhunspell-1.7.so:textproc/hunspell USES= compiler:c++11-lang pkgconfig qmake qt-dist:5,virtualkeyboard xorg -USE_QT= core declarative network gui widgets svg buildtools_build +USE_QT= core declarative network gui widgets svg buildtools:build USE_XORG= xcb # Disable the builtin layouts -- otherwise we need to pull in a lot of other diff --git a/x11-toolkits/qt5-widgets/Makefile b/x11-toolkits/qt5-widgets/Makefile index bbd1812627d7c..d67e9579e8f22 100644 --- a/x11-toolkits/qt5-widgets/Makefile +++ b/x11-toolkits/qt5-widgets/Makefile @@ -8,7 +8,7 @@ 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_QT= core gui qmake:build buildtools:build USE_XORG= x11 HAS_CONFIGURE= yes diff --git a/x11-toolkits/qt5pas/Makefile b/x11-toolkits/qt5pas/Makefile index 6e0298e573c97..ece3a95cbb12c 100644 --- a/x11-toolkits/qt5pas/Makefile +++ b/x11-toolkits/qt5pas/Makefile @@ -9,7 +9,7 @@ COMMENT= Qt5 binding for FreePascal WWW= https://wiki.lazarus.freepascal.org/index.php/Qt_Interface USES= compiler:c++11-lang qmake qt:5 -USE_QT= buildtools_build core gui network printsupport x11extras +USE_QT= buildtools:build core gui network printsupport x11extras USE_LDCONFIG= yes QT5_VER_MIN= 5.6.1 diff --git a/x11-toolkits/qtermwidget/Makefile b/x11-toolkits/qtermwidget/Makefile index 0ca7ea61e3381..1fd11e54ff651 100644 --- a/x11-toolkits/qtermwidget/Makefile +++ b/x11-toolkits/qtermwidget/Makefile @@ -13,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= cmake compiler:c++11-lang gettext-runtime lxqt \ pkgconfig qt:5 tar:xz USE_LDCONFIG= yes -USE_QT= buildtools_build core gui qmake_build linguisttools widgets +USE_QT= buildtools:build core gui qmake:build linguisttools widgets USE_LXQT= buildtools CMAKE_ARGS+= -DQTERMWIDGET_USE_UTEMPTER=ON diff --git a/x11-toolkits/qwt5-qt5/Makefile b/x11-toolkits/qwt5-qt5/Makefile index a2b90e2b40a74..7dcb8ba8d12a6 100644 --- a/x11-toolkits/qwt5-qt5/Makefile +++ b/x11-toolkits/qwt5-qt5/Makefile @@ -7,7 +7,7 @@ COMMENT= Qt Widgets for Technical Applications WWW= http://qwt.sourceforge.net/ USES= cmake compiler:c++17-lang qt:5 -USE_QT= core gui printsupport svg widgets buildtools_build qmake_build +USE_QT= core gui printsupport svg widgets buildtools:build qmake:build USE_LDCONFIG= yes USE_GITHUB= yes diff --git a/x11-toolkits/qwt6/Makefile b/x11-toolkits/qwt6/Makefile index 05e01d4cf32b1..eec50f44b2494 100644 --- a/x11-toolkits/qwt6/Makefile +++ b/x11-toolkits/qwt6/Makefile @@ -11,7 +11,7 @@ WWW= http://qwt.sourceforge.net/ USES= compiler:c++11-lang gl gmake qmake qt:5 tar:bzip2 USE_GL= gl -USE_QT= buildtools_build widgets gui core designer gui opengl svg xml printsupport concurrent +USE_QT= buildtools:build widgets gui core designer gui opengl svg xml printsupport concurrent USE_LDCONFIG= ${PREFIX}/${QT_LIBDIR_REL} DOCSDIR= ${PREFIX}/share/doc/qwt6-qt5 diff --git a/x11-wm/kwinft/Makefile b/x11-wm/kwinft/Makefile index b4c5f3bd80045..da3f90de5a761 100644 --- a/x11-wm/kwinft/Makefile +++ b/x11-wm/kwinft/Makefile @@ -30,14 +30,14 @@ CONFLICTS_INSTALL= plasma5-kwin # bin/kwin_wayland USES= cmake:testing gl kde:5 pkgconfig python:run qt:5 shebangfix xorg USE_GITLAB= yes USE_GL= egl -USE_KDE= ecm_build auth completion config configwidgets \ +USE_KDE= ecm:build auth completion config configwidgets \ coreaddons crash dbusaddons decoration globalaccel i18n \ idletime kcmutils kdeclarative kio kscreenlocker newstuff \ notifications package plasma-framework service textwidgets \ widgetsaddons windowsystem xmlgui USE_LDCONFIG= yes -USE_QT= qmake_build buildtools_build core dbus declarative gui \ - multimedia_run quickcontrols2_run widgets x11extras +USE_QT= qmake:build buildtools:build core dbus declarative gui \ + multimedia:run quickcontrols2:run widgets x11extras USE_XORG= pixman x11 xcb xi SHEBANG_FILES= kconf_update/*.py kconf_update/*.pl GL_COMMIT= 022f157ce4bd14fbe069ab6fe41647b70d20f004 @@ -51,7 +51,7 @@ BREEZE_DESC= Default window decoration plugin BREEZE_USE= KDE=breeze BREEZE_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_Breeze -DOCS_USE= KDE=doctools_build +DOCS_USE= KDE=doctools:build DOCS_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_KF5DocTools QA11Y_DESC= Accessibility (focus tracking) for Zoom effect diff --git a/x11-wm/lxqt-panel/Makefile b/x11-wm/lxqt-panel/Makefile index 6981310e9e9d3..e8891b00bf4f4 100644 --- a/x11-wm/lxqt-panel/Makefile +++ b/x11-wm/lxqt-panel/Makefile @@ -20,7 +20,7 @@ RUN_DEPENDS= lxmenu-data>=0.1.2:x11/lxmenu-data USES= cmake compiler:c++14-lang gettext-runtime kde:5 qt:5 gnome \ localbase:ldflags lxqt pkgconfig tar:xz xorg -USE_QT= buildtools_build qmake_build core dbus gui svg widgets \ +USE_QT= buildtools:build qmake:build core dbus gui svg widgets \ x11extras xml concurrent USE_KDE= windowsystem USE_LXQT= buildtools lxqt globalkeys qtxdg diff --git a/x11-wm/lxqt-session/Makefile b/x11-wm/lxqt-session/Makefile index 1e7db1d9114a2..644cee0b6a35c 100644 --- a/x11-wm/lxqt-session/Makefile +++ b/x11-wm/lxqt-session/Makefile @@ -13,7 +13,7 @@ BUILD_DEPENDS= xdg-user-dirs-update:devel/xdg-user-dirs USES= cmake compiler:c++14-lang kde:5 lxqt qt:5 \ pkgconfig tar:xz xorg gnome -USE_QT= buildtools_build qmake_build core dbus gui linguisttools \ +USE_QT= buildtools:build qmake:build core dbus gui linguisttools \ svg widgets x11extras xml USE_KDE= windowsystem USE_LXQT= buildtools lxqt qtxdg diff --git a/x11-wm/obconf-qt/Makefile b/x11-wm/obconf-qt/Makefile index 0461510f88487..59b9f2248ec6e 100644 --- a/x11-wm/obconf-qt/Makefile +++ b/x11-wm/obconf-qt/Makefile @@ -18,7 +18,7 @@ LIB_DEPENDS= libobt.so:x11-wm/openbox \ USES= cmake compiler:c++11-lang gettext-runtime localbase qt:5 \ gnome lxqt pkgconfig tar:xz xorg -USE_QT= buildtools_build qmake_build core gui linguisttools \ +USE_QT= buildtools:build qmake:build core gui linguisttools \ widgets x11extras USE_LXQT= buildtools diff --git a/x11-wm/plasma5-kdecoration/Makefile b/x11-wm/plasma5-kdecoration/Makefile index 0a8a19fd6a79e..cdcd2e8711776 100644 --- a/x11-wm/plasma5-kdecoration/Makefile +++ b/x11-wm/plasma5-kdecoration/Makefile @@ -11,8 +11,8 @@ LICENSE= LGPL21 USES= cmake compiler:c++11-lib kde:5 qt:5 tar:xz USE_LDCONFIG= yes USE_KDE= coreaddons i18n \ - ecm_build + ecm:build USE_QT= core gui \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build .include diff --git a/x11-wm/plasma5-kwin/Makefile b/x11-wm/plasma5-kwin/Makefile index 92a220eb24bf7..08da6e9d93510 100644 --- a/x11-wm/plasma5-kwin/Makefile +++ b/x11-wm/plasma5-kwin/Makefile @@ -41,12 +41,12 @@ USE_KDE= activities attica auth breeze codecs completion config \ notifications package plasma-framework \ plasma-wayland-protocols runner service sonnet textwidgets \ wayland widgetsaddons windowsystem xmlgui \ - doctools_build ecm_build + doctools:build ecm:build USE_LDCONFIG= yes USE_QT= concurrent core dbus declarative gui multimedia network script \ sensors uiplugin uitools widgets x11extras xml \ - buildtools_build qmake_build testlib_build \ - quickcontrols2_run virtualkeyboard_run + buildtools:build qmake:build testlib:build \ + quickcontrols2:run virtualkeyboard:run USE_XORG= ice sm x11 xcb xext xi SHEBANG_FILES= kconf_update/*.py \ kconf_update/*.pl diff --git a/x11/antimicro/Makefile b/x11/antimicro/Makefile index 499b99bf53c23..9dbb18eec7950 100644 --- a/x11/antimicro/Makefile +++ b/x11/antimicro/Makefile @@ -20,7 +20,7 @@ LDFLAGS+= -L${LOCALBASE}/lib USES= cmake compiler:c++11-lang desktop-file-utils pkgconfig \ qt:5 sdl shared-mime-info xorg USE_XORG= x11 xi xtst -USE_QT= core gui linguisttools_build qmake_build buildtools_build widgets network +USE_QT= core gui linguisttools:build qmake:build buildtools:build widgets network USE_SDL= sdl2 .include diff --git a/x11/compton-conf/Makefile b/x11/compton-conf/Makefile index 9adb7c3892ba2..17ecd80b8d22c 100644 --- a/x11/compton-conf/Makefile +++ b/x11/compton-conf/Makefile @@ -15,7 +15,7 @@ RUN_DEPENDS= compton:x11-wm/compton USES= cmake compiler:c++14-lang localbase:ldflags lxqt qt:5 \ pkgconfig tar:xz -USE_QT= buildtools_build qmake_build core dbus gui linguisttools \ +USE_QT= buildtools:build qmake:build core dbus gui linguisttools \ widgets USE_LXQT= buildtools diff --git a/x11/cool-retro-term/Makefile b/x11/cool-retro-term/Makefile index 83a0870f3daab..23fc3f8e40d33 100644 --- a/x11/cool-retro-term/Makefile +++ b/x11/cool-retro-term/Makefile @@ -17,9 +17,9 @@ GH_SUBDIR= ${GH_PROJECT} USES= compiler:c++11-lang gl gmake qmake qt:5 USE_GL= gl -USE_QT= qmake_build buildtools_build core declarative gui \ - network sql widgets graphicaleffects_run \ - quickcontrols_run sql-sqlite3_run +USE_QT= qmake:build buildtools:build core declarative gui \ + network sql widgets graphicaleffects:run \ + quickcontrols:run sql-sqlite3:run post-patch: @${REINPLACE_CMD} -e '/DEFINES +=/s,^macx:,,' \ diff --git a/x11/coreterminal/Makefile b/x11/coreterminal/Makefile index 056d31a66bd48..b6eaf76ca1ccf 100644 --- a/x11/coreterminal/Makefile +++ b/x11/coreterminal/Makefile @@ -15,7 +15,7 @@ LIB_DEPENDS= libqtermwidget5.so:x11-toolkits/qtermwidget \ RUN_DEPENDS= coregarage:deskutils/coregarage USES= cmake localbase:ldflags qt:5 -USE_QT= buildtools_build core gui qmake_build serialport widgets +USE_QT= buildtools:build core gui qmake:build serialport widgets USE_GITLAB= yes GL_ACCOUNT= CuboCore diff --git a/x11/disman/Makefile b/x11/disman/Makefile index f65ea823f19a4..6813654ae2f44 100644 --- a/x11/disman/Makefile +++ b/x11/disman/Makefile @@ -14,9 +14,9 @@ TEST_DEPENDS= ${qt-testlib_PORT:T}>0:${qt-testlib_PORT} USES= cmake:testing kde:5 qt:5 USE_GITLAB= yes -USE_KDE= ecm_build coreaddons +USE_KDE= ecm:build coreaddons USE_LDCONFIG= yes -USE_QT= qmake_build buildtools_build core dbus gui +USE_QT= qmake:build buildtools:build core dbus gui GL_ACCOUNT= kwinft GL_COMMIT= a8fc81af423ab14513c7096b405cec3f58943495 PLIST_SUB= VERSION=${PORTVERSION} diff --git a/x11/dsbautostart/Makefile b/x11/dsbautostart/Makefile index 4345a495a0ab6..4c51b50b85243 100644 --- a/x11/dsbautostart/Makefile +++ b/x11/dsbautostart/Makefile @@ -14,6 +14,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= compiler:c++11-lang gl qmake qt:5 tar:tgz USE_GL= gl -USE_QT= buildtools_build core gui linguisttools_build widgets +USE_QT= buildtools:build core gui linguisttools:build widgets .include diff --git a/x11/dsbxinput/Makefile b/x11/dsbxinput/Makefile index 8886d55008125..5a3267b5a436f 100644 --- a/x11/dsbxinput/Makefile +++ b/x11/dsbxinput/Makefile @@ -13,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= xinput:x11/xinput USES= pyqt:5 python:3.8+ qt:5 -USE_QT= linguisttools_build +USE_QT= linguisttools:build USE_GITHUB= yes GH_ACCOUNT= mrclksr GH_PROJECT= DSBXinput diff --git a/x11/glcapsviewer/Makefile b/x11/glcapsviewer/Makefile index d7e73f0f210fa..6c3eefa840aab 100644 --- a/x11/glcapsviewer/Makefile +++ b/x11/glcapsviewer/Makefile @@ -18,7 +18,7 @@ GH_TAGNAME= 26e160c USES= cmake compiler:c++11-lang gl qt:5 xorg USE_GL= gl glew glu -USE_QT= buildtools_build qmake_build core gui network widgets +USE_QT= buildtools:build qmake:build core gui network widgets USE_XORG= ice sm x11 xext PLIST_FILES= bin/glcapsviewer ${DATADIR_REL}/capslist.xml \ diff --git a/x11/kdisplay/Makefile b/x11/kdisplay/Makefile index 5f391fd01e480..77d5b4fd5bef3 100644 --- a/x11/kdisplay/Makefile +++ b/x11/kdisplay/Makefile @@ -17,10 +17,10 @@ TEST_DEPENDS= ${qt-testlib_PORT:T}>0:${qt-testlib_PORT} USES= cmake:testing kde:5 qt:5 USE_GITLAB= yes -USE_KDE= ecm_build config coreaddons dbusaddons globalaccel i18n \ +USE_KDE= ecm:build config coreaddons dbusaddons globalaccel i18n \ kcmutils kdeclarative plasma-framework xmlgui USE_LDCONFIG= yes -USE_QT= qmake_build buildtools_build core dbus declarative gui \ +USE_QT= qmake:build buildtools:build core dbus declarative gui \ sensors widgets GL_ACCOUNT= kwinft GL_COMMIT= a4dcebd297fded753579c7aef5a874617d274b7f diff --git a/x11/kf5-frameworkintegration/Makefile b/x11/kf5-frameworkintegration/Makefile index 4cb589e3ea780..2a4e730e23c76 100644 --- a/x11/kf5-frameworkintegration/Makefile +++ b/x11/kf5-frameworkintegration/Makefile @@ -9,9 +9,9 @@ USES= cmake compiler:c++11-lib gettext kde:5 pkgconfig \ qt:5 tar:xz xorg USE_KDE= auth attica codecs config configwidgets coreaddons i18n \ iconthemes newstuff notifications widgetsaddons \ - ecm_build + ecm:build USE_QT= core dbus gui network widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= xcb xcursor .include diff --git a/x11/kf5-kactivities-stats/Makefile b/x11/kf5-kactivities-stats/Makefile index b1de65ed986a7..82742788299ba 100644 --- a/x11/kf5-kactivities-stats/Makefile +++ b/x11/kf5-kactivities-stats/Makefile @@ -10,8 +10,8 @@ BUILD_DEPENDS= ${LOCALBASE}/include/boost/range/algorithm.hpp:devel/boost-libs USES= cmake compiler:c++11-lib kde:5 pathfix qt:5 tar:xz USE_KDE= activities config \ - ecm_build + ecm:build USE_QT= core dbus sql \ - buildtools_build qmake_build + buildtools:build qmake:build .include diff --git a/x11/kf5-kactivities/Makefile b/x11/kf5-kactivities/Makefile index 2991300e680e0..bf04e8048b646 100644 --- a/x11/kf5-kactivities/Makefile +++ b/x11/kf5-kactivities/Makefile @@ -10,8 +10,8 @@ BUILD_DEPENDS= boost-libs>1.53:devel/boost-libs USES= cmake compiler:c++11-lib gettext kde:5 pathfix qt:5 tar:xz USE_KDE= config coreaddons service \ - ecm_build + ecm:build USE_QT= core dbus declarative gui network sql \ - buildtools_build qmake_build + buildtools:build qmake:build .include diff --git a/x11/kf5-kded/Makefile b/x11/kf5-kded/Makefile index 85655e2b22b2f..baf7070711097 100644 --- a/x11/kf5-kded/Makefile +++ b/x11/kf5-kded/Makefile @@ -7,8 +7,8 @@ COMMENT= KF5 extensible daemon for providing system level services USES= cmake compiler:c++11-lib kde:5 qt:5 tar:xz USE_KDE= config coreaddons crash dbusaddons service \ - doctools_build ecm_build + doctools:build ecm:build USE_QT= core dbus gui widgets \ - buildtools_build qmake_build + buildtools:build qmake:build .include diff --git a/x11/kf5-kdelibs4support/Makefile b/x11/kf5-kdelibs4support/Makefile index 7cfae8c90e6f7..4fa32419053cd 100644 --- a/x11/kf5-kdelibs4support/Makefile +++ b/x11/kf5-kdelibs4support/Makefile @@ -15,12 +15,12 @@ USE_KDE= auth bookmarks codecs completion config configwidgets \ i18n iconthemes itemviews jobwidgets kded kio notifications \ parts service solid sonnet textwidgets unitconversion \ widgetsaddons windowsystem xmlgui \ - doctools_build ecm_build \ - designerplugin_build designerplugin_run \ - itemmodels_run + doctools:build ecm:build \ + designerplugin:build designerplugin:run \ + itemmodels:run USE_QT= concurrent core dbus designer gui network \ printsupport svg testlib widgets x11extras xml \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build USE_XORG= ice sm x11 xcb xext SHEBANG_FILES= src/kio/fileshareset diff --git a/x11/kf5-kglobalaccel/Makefile b/x11/kf5-kglobalaccel/Makefile index 5cfd399d4baa8..26437c98b78ae 100644 --- a/x11/kf5-kglobalaccel/Makefile +++ b/x11/kf5-kglobalaccel/Makefile @@ -11,9 +11,9 @@ LIB_DEPENDS= libxcb-keysyms.so:x11/xcb-util-keysyms USES= cmake compiler:c++11-lib kde:5 qt:5 tar:xz xorg USE_KDE= config coreaddons crash dbusaddons i18n service \ windowsystem \ - ecm_build + ecm:build USE_QT= core dbus gui linguisttools widgets x11extras \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build USE_XORG= x11 xcb .include diff --git a/x11/kf5-kinit/Makefile b/x11/kf5-kinit/Makefile index 7183fca9afda8..eb7d5f5efab12 100644 --- a/x11/kf5-kinit/Makefile +++ b/x11/kf5-kinit/Makefile @@ -9,9 +9,9 @@ COMMENT= KF5 process launcher to speed up launching KDE applications USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz xorg USE_KDE= completion config coreaddons crash dbusaddons i18n \ jobwidgets kio service solid widgetsaddons windowsystem \ - doctools_build ecm_build + doctools:build ecm:build USE_QT= concurrent core dbus gui network widgets \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 xcb .include diff --git a/x11/kf5-krunner/Makefile b/x11/kf5-krunner/Makefile index 1c0c413183acb..6e4f60ab74f4d 100644 --- a/x11/kf5-krunner/Makefile +++ b/x11/kf5-krunner/Makefile @@ -9,8 +9,8 @@ COMMENT= KF5 parallelized query system USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= activities config coreaddons i18n kio package plasma-framework \ service solid threadweaver \ - ecm_build + ecm:build USE_QT= concurrent core dbus declarative gui network widgets \ - buildtools_build qmake_build + buildtools:build qmake:build .include diff --git a/x11/kf5-kwayland/Makefile b/x11/kf5-kwayland/Makefile index 528e129e4abae..a48e937b38dbf 100644 --- a/x11/kf5-kwayland/Makefile +++ b/x11/kf5-kwayland/Makefile @@ -16,8 +16,8 @@ LICENSE_COMB= dual USES= cmake compiler:c++11-lib gettext gl kde:5 pkgconfig \ qt:5 tar:xz USE_GL= egl -USE_KDE= ecm_build +USE_KDE= ecm:build USE_QT= concurrent core gui wayland \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build .include diff --git a/x11/kf5-kwindowsystem/Makefile b/x11/kf5-kwindowsystem/Makefile index 504e0d4e7cd11..7e9586291412b 100644 --- a/x11/kf5-kwindowsystem/Makefile +++ b/x11/kf5-kwindowsystem/Makefile @@ -8,9 +8,9 @@ COMMENT= KF5 library for access to the windowing system LIB_DEPENDS= libxcb-keysyms.so:x11/xcb-util-keysyms USES= cmake compiler:c++11-lib kde:5 pkgconfig qt:5 tar:xz xorg -USE_KDE= ecm_build +USE_KDE= ecm:build USE_QT= core gui linguisttools widgets x11extras \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build USE_XORG= ice sm x11 xcb xext xfixes xrender .include diff --git a/x11/kf5-plasma-framework/Makefile b/x11/kf5-plasma-framework/Makefile index 557adb6bc5858..f922113d48db9 100644 --- a/x11/kf5-plasma-framework/Makefile +++ b/x11/kf5-plasma-framework/Makefile @@ -9,11 +9,11 @@ COMMENT= KF5 plugin based UI runtime used to write user interfaces USES= cmake compiler:c++11-lib gettext gl kde:5 pkgconfig qt:5 tar:xz xorg USE_GL= egl gl USE_KDE= activities archive auth codecs completion config \ - configwidgets coreaddons dbusaddons doctools_build globalaccel \ + configwidgets coreaddons dbusaddons doctools:build globalaccel \ guiaddons i18n iconthemes jobwidgets kirigami2 kio package \ notifications service solid wayland windowsystem xmlgui kdeclarative \ widgetsaddons -USE_QT= buildtools_build concurrent core dbus declarative gui network qmake_build \ +USE_QT= buildtools:build concurrent core dbus declarative gui network qmake:build \ script sql svg widgets x11extras xml USE_XORG= ice sm x11 xcb xext xrandr diff --git a/x11/konsole/Makefile b/x11/konsole/Makefile index 1b10294ae516b..622d03ba09a92 100644 --- a/x11/konsole/Makefile +++ b/x11/konsole/Makefile @@ -20,10 +20,10 @@ USE_KDE= auth attica bookmarks codecs completion config configwidgets \ iconthemes init itemmodels jobwidgets kio \ newstuff notifications notifyconfig parts pty service solid sonnet \ textwidgets widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus gui network printsupport script scripttools sql \ widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 OPTIONS_DEFINE= DOCS diff --git a/x11/libfm-qt/Makefile b/x11/libfm-qt/Makefile index 3d2e71c96a25a..82a8884156e86 100644 --- a/x11/libfm-qt/Makefile +++ b/x11/libfm-qt/Makefile @@ -15,7 +15,7 @@ LIB_DEPENDS= libmenu-cache.so:x11/menu-cache \ USES= cmake compiler:c++14-lang gettext-runtime lxqt pkgconfig \ qt:5 gnome shared-mime-info tar:xz xorg -USE_QT= buildtools_build qmake_build core gui linguisttools widgets \ +USE_QT= buildtools:build qmake:build core gui linguisttools widgets \ x11extras USE_GNOME= glib20 USE_XORG= xcb diff --git a/x11/lumina-core/Makefile b/x11/lumina-core/Makefile index 5bf35b5497f1a..ee6fa99d0b559 100644 --- a/x11/lumina-core/Makefile +++ b/x11/lumina-core/Makefile @@ -28,7 +28,7 @@ USES= compiler:c++11-lang gl qmake qt:5 xorg USE_GL= gl USE_XORG= x11 xdamage xcb USE_LDCONFIG= yes -USE_QT= buildtools_build concurrent core dbus declarative gui \ +USE_QT= buildtools:build concurrent core dbus declarative gui \ imageformats multimedia network svg widgets x11extras USE_GITHUB= yes GH_ACCOUNT= lumina-desktop @@ -46,7 +46,7 @@ TRUEOS_QMAKE_ON= DEFAULT_SETTINGS=TrueOS MULTIMEDIA_USES= gstreamer MULTIMEDIA_USE= GSTREAMER=core -NLS_USE= QT=linguist_build +NLS_USE= QT=linguist:build NLS_QMAKE_ON= CONFIG+=WITH_I18N WRKSRC_SUBDIR= src-qt5/core diff --git a/x11/lumina-coreutils/Makefile b/x11/lumina-coreutils/Makefile index bf3eaa76cbf18..e0ac844f13156 100644 --- a/x11/lumina-coreutils/Makefile +++ b/x11/lumina-coreutils/Makefile @@ -13,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/../../LICENSE RUN_DEPENDS= xrandr:x11/xrandr USES= compiler:c++11-lang qmake qt:5 -USE_QT= buildtools_build concurrent core gui \ +USE_QT= buildtools:build concurrent core gui \ imageformats multimedia network \ svg widgets x11extras USE_GITHUB= yes @@ -23,7 +23,7 @@ GH_PROJECT= lumina OPTIONS_DEFINE= NLS OPTIONS_SUB= yes -NLS_USE= QT=linguist_build +NLS_USE= QT=linguist:build NLS_QMAKE_ON= CONFIG+=WITH_I18N WRKSRC_SUBDIR= src-qt5/core-utils diff --git a/x11/lxqt-about/Makefile b/x11/lxqt-about/Makefile index fc9301fb1b260..2a018555561a8 100644 --- a/x11/lxqt-about/Makefile +++ b/x11/lxqt-about/Makefile @@ -12,7 +12,7 @@ LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/COPYING USES= cmake compiler:c++11-lang kde:5 lxqt pkgconfig tar:xz qt:5 gnome xorg -USE_QT= buildtools_build qmake_build core dbus gui svg widgets \ +USE_QT= buildtools:build qmake:build core dbus gui svg widgets \ x11extras xml USE_XORG= x11 USE_KDE= windowsystem diff --git a/x11/lxqt-globalkeys/Makefile b/x11/lxqt-globalkeys/Makefile index 4f14d70a197b4..1f8c6c2039883 100644 --- a/x11/lxqt-globalkeys/Makefile +++ b/x11/lxqt-globalkeys/Makefile @@ -11,7 +11,7 @@ LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/LICENSE USES= cmake compiler:c++14-lang kde:5 xorg lxqt pkgconfig qt:5 tar:xz gnome -USE_QT= buildtools_build qmake_build core dbus gui linguisttools \ +USE_QT= buildtools:build qmake:build core dbus gui linguisttools \ svg widgets x11extras xml USE_KDE= windowsystem USE_LXQT= buildtools lxqt diff --git a/x11/lxqt-runner/Makefile b/x11/lxqt-runner/Makefile index 11ba93a8c2348..69696eb98cf57 100644 --- a/x11/lxqt-runner/Makefile +++ b/x11/lxqt-runner/Makefile @@ -18,7 +18,7 @@ LIB_DEPENDS= libmuparser.so:math/muparser USES= cmake compiler:c++14-lang gettext-runtime kde:5 qt:5 \ gnome localbase lxqt pkgconfig tar:xz xorg -USE_QT= buildtools_build qmake_build core dbus gui linguisttools \ +USE_QT= buildtools:build qmake:build core dbus gui linguisttools \ script svg widgets x11extras xml USE_KDE= windowsystem USE_GNOME= glib20 diff --git a/x11/pcdm/Makefile b/x11/pcdm/Makefile index 8e486f480ed78..dbbd507adb7d8 100644 --- a/x11/pcdm/Makefile +++ b/x11/pcdm/Makefile @@ -17,7 +17,7 @@ RUN_DEPENDS= xorg-minimal>=0:x11/xorg-minimal \ USES= compiler:c++11-lang gl qmake qt:5 xorg USE_QT= core gui network svg multimedia imageformats \ - buildtools_build x11extras widgets concurrent linguisttools_build + buildtools:build x11extras widgets concurrent linguisttools:build USE_GL= gl USE_XORG= x11 diff --git a/x11/plasma-wayland-protocols/Makefile b/x11/plasma-wayland-protocols/Makefile index c1758600a35e1..ef2c8d3bdf0c2 100644 --- a/x11/plasma-wayland-protocols/Makefile +++ b/x11/plasma-wayland-protocols/Makefile @@ -12,7 +12,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING.LIB USES= cmake kde:5 qt:5 tar:xz USE_KDE= ecm -USE_QT= buildtools_build qmake_build +USE_QT= buildtools:build qmake:build NO_ARCH= yes diff --git a/x11/plasma5-kactivitymanagerd/Makefile b/x11/plasma5-kactivitymanagerd/Makefile index b00894d4f3b60..2e5a398f15b8c 100644 --- a/x11/plasma5-kactivitymanagerd/Makefile +++ b/x11/plasma5-kactivitymanagerd/Makefile @@ -14,7 +14,7 @@ USE_KDE= auth codecs config configwidgets coreaddons crash dbusaddons \ ecm globalaccel i18n kio service widgetsaddons windowsystem \ xmlgui USE_QT= concurrent core dbus gui network sql widgets xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 .include diff --git a/x11/plasma5-kgamma5/Makefile b/x11/plasma5-kgamma5/Makefile index 7b2e76de3b87d..d1d5bfcdb4261 100644 --- a/x11/plasma5-kgamma5/Makefile +++ b/x11/plasma5-kgamma5/Makefile @@ -12,9 +12,9 @@ USE_KDE= auth bookmarks codecs completion config configwidgets \ itemmodels itemviews jobwidgets kio notifications parts \ service solid sonnet textwidgets unitconversion widgetsaddons \ windowsystem xmlgui \ - doctools_build ecm_build + doctools:build ecm:build USE_QT= core dbus gui network printsupport widgets x11extras xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= ice sm x11 xext xxf86vm .include diff --git a/x11/plasma5-kscreen/Makefile b/x11/plasma5-kscreen/Makefile index fdae6f68a62da..5b8f9b747320e 100644 --- a/x11/plasma5-kscreen/Makefile +++ b/x11/plasma5-kscreen/Makefile @@ -13,9 +13,9 @@ USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz xorg USE_KDE= auth codecs config configwidgets coreaddons dbusaddons \ globalaccel i18n kcmutils kdeclarative libkscreen package \ plasma-framework service widgetsaddons windowsystem xmlgui \ - ecm_build + ecm:build USE_QT= core dbus declarative gui network sensors widgets x11extras xml \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build USE_XORG= x11 xcb xext xi .include diff --git a/x11/plasma5-kwayland-integration/Makefile b/x11/plasma5-kwayland-integration/Makefile index 9b482b4305f10..088243b1e6572 100644 --- a/x11/plasma5-kwayland-integration/Makefile +++ b/x11/plasma5-kwayland-integration/Makefile @@ -17,7 +17,7 @@ USES= cmake compiler:c++11-lib gl kde:5 pkgconfig qt:5 tar:xz xorg USE_GL= gl USE_KDE= ecm guiaddons idletime plasma-wayland-protocols wayland windowsystem USE_QT= core gui wayland widgets \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 .include diff --git a/x11/plasma5-kwayland-server/Makefile b/x11/plasma5-kwayland-server/Makefile index a1aea990c9212..085b756fd3e3c 100644 --- a/x11/plasma5-kwayland-server/Makefile +++ b/x11/plasma5-kwayland-server/Makefile @@ -18,6 +18,6 @@ USES= cmake compiler:c++11-lang gl kde:5 pkgconfig qt:5 tar:xz USE_GL= egl USE_KDE= ecm wayland USE_QT= concurrent core gui wayland \ - buildtools_build qmake_build + buildtools:build qmake:build .include diff --git a/x11/plasma5-layer-shell-qt/Makefile b/x11/plasma5-layer-shell-qt/Makefile index 16f6dffbba167..7bfe4ce5341ac 100644 --- a/x11/plasma5-layer-shell-qt/Makefile +++ b/x11/plasma5-layer-shell-qt/Makefile @@ -15,6 +15,6 @@ USES= cmake compiler:c++11-lang gettext gl kde:5 pkgconfig qt:5 tar:xz USE_GL= gl USE_KDE= ecm USE_QT= core gui wayland \ - buildtools_build qmake_build + buildtools:build qmake:build .include diff --git a/x11/plasma5-libkscreen/Makefile b/x11/plasma5-libkscreen/Makefile index e0837333a4b6c..e5831b8388102 100644 --- a/x11/plasma5-libkscreen/Makefile +++ b/x11/plasma5-libkscreen/Makefile @@ -12,9 +12,9 @@ LIB_DEPENDS= libwayland-client.so:graphics/wayland USES= cmake compiler:c++11-lib kde:5 pathfix pkgconfig qt:5 tar:xz \ xorg USE_KDE= plasma-wayland-protocols wayland \ - ecm_build + ecm:build USE_QT= core dbus gui x11extras \ - buildtools_build qmake_build testlib_build + buildtools:build qmake:build testlib:build USE_XORG= x11 xcb xrandr .include diff --git a/x11/plasma5-plasma-desktop/Makefile b/x11/plasma5-plasma-desktop/Makefile index bbba3fad59058..c876c0b9f0f9e 100644 --- a/x11/plasma5-plasma-desktop/Makefile +++ b/x11/plasma5-plasma-desktop/Makefile @@ -39,12 +39,12 @@ USE_KDE= activities activities-stats archive attica auth baloo \ plasma-framework plasma-workspace runner service solid sonnet \ textwidgets unitconversion wallet widgetsaddons windowsystem \ xmlgui \ - doctools_build ecm_build \ - drkonqi_run infocenter_run kde-cli-tools_run kmenuedit_run \ - ksysguard_run polkit-kde-agent-1_run systemsettings_run + doctools:build ecm:build \ + drkonqi:run infocenter:run kde-cli-tools:run kmenuedit:run \ + ksysguard:run polkit-kde-agent-1:run systemsettings:run USE_QT= concurrent core dbus declarative gui network phonon4 \ printsupport sql svg widgets x11extras xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= ice sm x11 xcb xcursor xext xfixes xft xi xrender CPE_VENDOR= kde diff --git a/x11/plasma5-plasma-integration/Makefile b/x11/plasma5-plasma-integration/Makefile index a77ae8cdf5e1a..0055d741231af 100644 --- a/x11/plasma5-plasma-integration/Makefile +++ b/x11/plasma5-plasma-integration/Makefile @@ -15,10 +15,10 @@ USE_KDE= auth bookmarks breeze codecs completion config configwidgets \ coreaddons ecm i18n iconthemes itemviews jobwidgets kio \ notifications service solid wayland widgetsaddons windowsystem \ xmlgui \ - qqc2-desktop-style_run + qqc2-desktop-style:run USE_QT= concurrent core dbus declarative gui network quickcontrols2 \ widgets x11extras xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 xcb xcursor SHEBANG_FILES= src/platformtheme/fonts_akregator.pl \ diff --git a/x11/plasma5-plasma-workspace/Makefile b/x11/plasma5-plasma-workspace/Makefile index 1dd12bd9caf0f..b27d3ff391069 100644 --- a/x11/plasma5-plasma-workspace/Makefile +++ b/x11/plasma5-plasma-workspace/Makefile @@ -42,14 +42,14 @@ USE_KDE= activities activities-stats activitymanagerd archive attica \ plasma-framework plasma-integration prison pty runner service \ solid sonnet syntaxhighlighting texteditor textwidgets unitconversion \ wallet wayland widgetsaddons windowsystem xmlgui xmlrpcclient \ - doctools_build ecm_build \ - breeze-icons_run breeze_run kded_run kquickcharts_run \ - milou_run oxygen-icons5_run + doctools:build ecm:build \ + breeze-icons:run breeze:run kded:run kquickcharts:run \ + milou:run oxygen-icons5:run USE_QT= concurrent core dbus declarative graphicaleffects gui network \ phonon4 printsupport qdbus script sql svg wayland webkit \ widgets x11extras xml \ - buildtools_build qmake_build testlib_build \ - paths_run quickcontrols_run + buildtools:build qmake:build testlib:build \ + paths:run quickcontrols:run USE_XORG= ice sm x11 xau xcb xcomposite xcursor xext xfixes xft xi xkbfile xrender xtst CPE_VENDOR= kde diff --git a/x11/plasma5-plasma/Makefile b/x11/plasma5-plasma/Makefile index 375e665cb63af..7c58a26111e52 100644 --- a/x11/plasma5-plasma/Makefile +++ b/x11/plasma5-plasma/Makefile @@ -21,6 +21,6 @@ OPTIONS_DEFAULT= ${OPTIONS_DEFINE} PHONON_DESC= Include phonon-gstreamer, for sound output PHONON_RUN_DEPENDS= ${QT_PLUGINDIR}/phonon4qt5_backend/phonon_gstreamer.so:multimedia/phonon-gstreamer -PULSEAUDIO_USE= KDE=plasma-pa_run +PULSEAUDIO_USE= KDE=plasma-pa:run .include diff --git a/x11/qimageblitz/Makefile b/x11/qimageblitz/Makefile index f420e99a139bc..5bfc83df5e87c 100644 --- a/x11/qimageblitz/Makefile +++ b/x11/qimageblitz/Makefile @@ -13,7 +13,7 @@ FETCH_DEPENDS= svn:devel/subversion USES= cmake compiler:c++11-lang qt:5 USE_LDCONFIG= yes -USE_QT= core gui widgets qmake_build buildtools_build +USE_QT= core gui widgets qmake:build buildtools:build USE_CXXSTD= gnu++98 SVN_URL= svn://anonsvn.kde.org/home/kde/trunk/kdesupport/qimageblitz diff --git a/x11/qt5-x11extras/Makefile b/x11/qt5-x11extras/Makefile index d83132e409e58..9c2b119b21bff 100644 --- a/x11/qt5-x11extras/Makefile +++ b/x11/qt5-x11extras/Makefile @@ -9,6 +9,6 @@ COMMENT= Qt platform-specific features for X11-based systems USES= compiler:c++11-lang perl5 qmake qt-dist:5,x11extras perl5 USE_PERL5= extract USE_QT= core gui \ - buildtools_build # syncqt + buildtools:build # syncqt .include diff --git a/x11/qterminal/Makefile b/x11/qterminal/Makefile index 1eaa6bb0b2a2c..40796d9bcd60e 100644 --- a/x11/qterminal/Makefile +++ b/x11/qterminal/Makefile @@ -14,7 +14,7 @@ RUN_DEPENDS= liberation-fonts-ttf>=2.00:x11-fonts/liberation-fonts-ttf USES= cmake compiler:c++11-lang gettext-runtime \ localbase:ldflags lxqt pkgconfig qt:5 tar:xz xorg -USE_QT= buildtools_build core gui qmake_build dbus linguisttools \ +USE_QT= buildtools:build core gui qmake:build dbus linguisttools \ widgets x11extras USE_XORG= x11 USE_LXQT= buildtools diff --git a/x11/radare-cutter/Makefile b/x11/radare-cutter/Makefile index 6a5b09de8ad25..6ed3a8adb3ef5 100644 --- a/x11/radare-cutter/Makefile +++ b/x11/radare-cutter/Makefile @@ -23,7 +23,7 @@ GH_PROJECT= r2cutter GH_TUPLE= radareorg:cutter-translations:8e1d24b:translations/translations USE_QT= core declarative gui linguist location network printsupport svg \ - webchannel widgets buildtools_build + webchannel widgets buildtools:build USE_GL= gl WRKSRC_SUBDIR= src diff --git a/x11/rsibreak/Makefile b/x11/rsibreak/Makefile index 437a5e51ec532..919b42c816272 100644 --- a/x11/rsibreak/Makefile +++ b/x11/rsibreak/Makefile @@ -15,7 +15,7 @@ USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz xorg USE_KDE= auth codecs config configwidgets coreaddons crash dbusaddons doctools ecm \ iconthemes i18n idletime notifications notifyconfig \ sonnet textwidgets xmlgui widgetsaddons windowsystem -USE_QT= core dbus gui widgets xml buildtools_build qmake_build +USE_QT= core dbus gui widgets xml buildtools:build qmake:build USE_XORG= x11 .include diff --git a/x11/sddm/Makefile b/x11/sddm/Makefile index 5bbc84c5aa831..2f9c9c8465b5a 100644 --- a/x11/sddm/Makefile +++ b/x11/sddm/Makefile @@ -28,9 +28,9 @@ RUN_DEPENDS= dbus-run-session:devel/dbus \ USES= cmake compiler:c++11-lang cpe kde:5 pkgconfig python:build qt:5 xorg CPE_VENDOR= ${PORTNAME}_project USE_GITHUB= yes -USE_KDE= ecm_build +USE_KDE= ecm:build USE_QT= core declarative dbus gui network \ - buildtools_build linguisttools_build qmake_build testlib_build + buildtools:build linguisttools:build qmake:build testlib:build USE_XORG= xcb CONFLICTS_INSTALL= lightdm diff --git a/x11/yakuake/Makefile b/x11/yakuake/Makefile index 6852cdb809306..1d603e2e20053 100644 --- a/x11/yakuake/Makefile +++ b/x11/yakuake/Makefile @@ -16,9 +16,9 @@ USE_KDE= attica auth archive codecs completion config configwidgets \ jobwidgets kio newstuff notifications notifyconfig parts \ service solid sonnet textwidgets wayland widgetsaddons windowsystem \ xmlgui \ - ecm_build + ecm:build USE_QT= concurrent core dbus gui network widgets x11extras xml \ - buildtools_build qmake_build + buildtools:build qmake:build USE_XORG= x11 OPTIONS_DEFINE= DOCS