diff options
author | Felix Palmen <zirias@FreeBSD.org> | 2022-09-11 12:20:14 +0200 |
---|---|---|
committer | Felix Palmen <zirias@FreeBSD.org> | 2022-09-11 12:20:14 +0200 |
commit | ddae4e92d8313a1461145e3b4f0232fe463feaee (patch) | |
tree | e84ab3fcfdf00dbf560f8ef9ae031d0c2ed252f5 /archivers | |
parent | 51a360b7fe98be99d21134e5fe624ba12d596dd9 (diff) | |
download | freebsd-ports-ddae4e92d8313a1461145e3b4f0232fe463feaee.zip |
Mk/Uses: always use colon for build/run suffix
Most USES use a colon for build/run(/test) suffixes. Change kde.mk,
qt.mk and pyqt.mk to do the same, and update all ports using that.
Document in CHANGES.
PR: 266034
Exp-run by: antoine
Approved by: tcberner (mentor)
Differential Revision: https://reviews.freebsd.org/D36349
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/ark/Makefile | 4 | ||||
-rw-r--r-- | archivers/kf5-karchive/Makefile | 4 | ||||
-rw-r--r-- | archivers/libarchive-qt/Makefile | 2 | ||||
-rw-r--r-- | archivers/lxqt-archiver/Makefile | 2 | ||||
-rw-r--r-- | archivers/quazip/Makefile | 2 | ||||
-rw-r--r-- | archivers/v1541commander/Makefile | 2 |
6 files changed, 8 insertions, 8 deletions
diff --git a/archivers/ark/Makefile b/archivers/ark/Makefile index dc9f554df68a..28085c123058 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 939780dad89f..121cf1c51d82 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 <bsd.port.mk> diff --git a/archivers/libarchive-qt/Makefile b/archivers/libarchive-qt/Makefile index d3495bf0f8a6..2559d37daae1 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 1cdaa5cd5cbf..94f592238fca 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 f60d1e66fbbb..3b6aa0413364 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 d26616dbeb2e..048eb266f856 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 |