mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-18 00:10:04 +00:00
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
This commit is contained in:
parent
51a360b7fe
commit
ddae4e92d8
17
CHANGES
17
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
|
||||
|
||||
|
@ -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 <foo>, 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}} == ""
|
||||
|
@ -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
|
||||
|
@ -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)
|
||||
|
@ -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}} == ""
|
||||
|
@ -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 \
|
||||
|
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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 <bsd.port.mk>
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
||||
|
@ -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>
|
||||
|
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
@ -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 \
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
||||
|
@ -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 <bsd.port.mk>
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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 \
|
||||
|
@ -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
|
||||
|
@ -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" \
|
||||
|
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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:
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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 <bsd.port.mk>
|
||||
|
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
||||
|
@ -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 \
|
||||
|
@ -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
|
||||
|
@ -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*
|
||||
|
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
@ -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}" \
|
||||
|
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
||||
|
@ -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 <bsd.port.mk>
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
@ -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}
|
||||
|
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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}
|
||||
|
||||
|
@ -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
|
||||
|
@ -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 <bsd.port.mk>
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
@ -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 \
|
||||
|
@ -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 \
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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`
|
||||
|
@ -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
|
||||
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user