aboutsummaryrefslogtreecommitdiff
path: root/port-files/FreeBSD/x11/lumina-coreutils/Makefile
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2018-08-10 10:04:33 -0400
committerKen Moore <ken@ixsystems.com>2018-08-10 10:04:33 -0400
commita549a994aae74d93deb5011777e2117e77b63a02 (patch)
tree9acd9da4b11ff97f6ba7796f77f33e86f7e400ee /port-files/FreeBSD/x11/lumina-coreutils/Makefile
parentMerge pull request #611 from marcelbonnet/lumina-screenshot-previouspath (diff)
downloadlumina-a549a994aae74d93deb5011777e2117e77b63a02.tar.gz
lumina-a549a994aae74d93deb5011777e2117e77b63a02.tar.bz2
lumina-a549a994aae74d93deb5011777e2117e77b63a02.zip
Fix the FreeBSD port files.
Change the USE_QT5 to USE_QT and USES+= qt:5 to align with the new syntax within the ports tree.
Diffstat (limited to 'port-files/FreeBSD/x11/lumina-coreutils/Makefile')
-rw-r--r--port-files/FreeBSD/x11/lumina-coreutils/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/port-files/FreeBSD/x11/lumina-coreutils/Makefile b/port-files/FreeBSD/x11/lumina-coreutils/Makefile
index e13a6d53..f31bee7d 100644
--- a/port-files/FreeBSD/x11/lumina-coreutils/Makefile
+++ b/port-files/FreeBSD/x11/lumina-coreutils/Makefile
@@ -23,10 +23,10 @@ I18N_DESC= Install localization files
MAKE_JOBS_UNSAFE=yes
-USES= qmake
+USES= qmake qt:5
USE_LDCONFIG= yes
-USE_QT5= core gui widgets network svg imageformats \
+USE_QT= core gui widgets network svg imageformats \
buildtools_build x11extras concurrent multimedia
USE_GITHUB= yes
bgstack15