diff options
1277 files changed, 1290 insertions, 1281 deletions
@@ -10,6 +10,12 @@ in the release notes and/or placed into UPDATING. All ports committers are allowed to commit to this file. +20181225: +AUTHOR: kde@FreeBSD.org + + cmake.mk now defaults to out-of-sourcetree builds. The option 'outsource' + has been removed. Ports that need an intree build now can pass 'insource'. + 20181110: AUTHOR: bapt@FreeBSD.org diff --git a/Mk/Uses/cmake.mk b/Mk/Uses/cmake.mk index 057149865f17..82134451317d 100644 --- a/Mk/Uses/cmake.mk +++ b/Mk/Uses/cmake.mk @@ -4,9 +4,9 @@ # # Feature: cmake # Usage: USES=cmake or USES=cmake:ARGS -# Valid ARGS: outsource, run, noninja +# Valid ARGS: insource, run, noninja # ARGS description: -# outsource perform an out-of-source build +# insource do not perform an out-of-source build # noninja don't use ninja instead of make # Setting this should be an exception, and hints to an issue # inside the ports build system. @@ -46,7 +46,7 @@ .if !defined(_INCLUDE_USES_CMAKE_MK) _INCLUDE_USES_CMAKE_MK= yes -_valid_ARGS= outsource run noninja +_valid_ARGS= insource run noninja # Sanity check .for arg in ${cmake_ARGS} @@ -111,7 +111,7 @@ CMAKE_ARGS+= -DCMAKE_COLOR_MAKEFILE:BOOL=OFF _CMAKE_MSG= "===> Performing in-source build" CMAKE_SOURCE_PATH?= ${WRKSRC} -.if ${cmake_ARGS:Moutsource} +.if empty(cmake_ARGS:Minsource) _CMAKE_MSG= "===> Performing out-of-source build" CONFIGURE_WRKSRC= ${WRKDIR}/.build BUILD_WRKSRC?= ${CONFIGURE_WRKSRC} diff --git a/accessibility/jovie-kde4/Makefile b/accessibility/jovie-kde4/Makefile index 5fb007df3870..9072ffba1b83 100644 --- a/accessibility/jovie-kde4/Makefile +++ b/accessibility/jovie-kde4/Makefile @@ -13,7 +13,7 @@ EXPIRATION_DATE= 2018-12-31 LIB_DEPENDS= libspeechd.so:accessibility/speech-dispatcher -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs automoc4 USE_QT= xml qmake_build moc_build uic_build rcc_build USE_LDCONFIG= yes diff --git a/accessibility/kaccessible-kde4/Makefile b/accessibility/kaccessible-kde4/Makefile index 367fc4ca7b0e..446b3dbd4121 100644 --- a/accessibility/kaccessible-kde4/Makefile +++ b/accessibility/kaccessible-kde4/Makefile @@ -13,7 +13,7 @@ EXPIRATION_DATE= 2018-12-31 LIB_DEPENDS= libspeechd.so:accessibility/speech-dispatcher -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs automoc4 USE_QT= corelib dbus gui xml \ qmake_build moc_build rcc_build uic_build diff --git a/accessibility/kmag-kde4/Makefile b/accessibility/kmag-kde4/Makefile index 5e75b94a088e..c746992c93c3 100644 --- a/accessibility/kmag-kde4/Makefile +++ b/accessibility/kmag-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= KDE Screen magnifier DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs automoc4 USE_QT= qmake_build moc_build rcc_build uic_build diff --git a/accessibility/kmag/Makefile b/accessibility/kmag/Makefile index 3a4e4c006505..07bd85e06650 100644 --- a/accessibility/kmag/Makefile +++ b/accessibility/kmag/Makefile @@ -10,7 +10,7 @@ COMMENT= KDE Screen magnifier LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons ecm \ i18n kio service widgetsaddons xmlgui USE_QT= core dbus gui printsupport widgets xml \ diff --git a/accessibility/kmousetool-kde4/Makefile b/accessibility/kmousetool-kde4/Makefile index da4b43397bc2..7e44d8f498f4 100644 --- a/accessibility/kmousetool-kde4/Makefile +++ b/accessibility/kmousetool-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= Automatic mouse click tool for KDE DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs automoc4 USE_QT= qmake_build moc_build rcc_build uic_build USE_XORG= xtst diff --git a/accessibility/kmousetool/Makefile b/accessibility/kmousetool/Makefile index e215632d1874..205a4e5b4731 100644 --- a/accessibility/kmousetool/Makefile +++ b/accessibility/kmousetool/Makefile @@ -10,7 +10,7 @@ COMMENT= Automatic mouse click tool for KDE LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons dbusaddons \ ecm i18n iconthemes notifications widgetsaddons xmlgui USE_QT= core dbus gui phonon4 widgets xml \ diff --git a/accessibility/kmouth-kde4/Makefile b/accessibility/kmouth-kde4/Makefile index 9ee7d74e1b3f..1c0fea3d8836 100644 --- a/accessibility/kmouth-kde4/Makefile +++ b/accessibility/kmouth-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= Speech synthesizer frontend for KDE DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs automoc4 USE_QT= qmake_build moc_build rcc_build uic_build diff --git a/accessibility/kmouth/Makefile b/accessibility/kmouth/Makefile index 39f2c0f78179..411fb2596ab1 100644 --- a/accessibility/kmouth/Makefile +++ b/accessibility/kmouth/Makefile @@ -10,7 +10,7 @@ COMMENT= Speech synthesizer frontend for KDE LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons crash \ ecm i18n jobwidgets kio service widgetsaddons xmlgui USE_QT= core dbus gui network printsupport speech widgets xml \ diff --git a/arabic/libitl/Makefile b/arabic/libitl/Makefile index 5ce34db75ce8..2f2d8058f26b 100644 --- a/arabic/libitl/Makefile +++ b/arabic/libitl/Makefile @@ -12,7 +12,7 @@ COMMENT= API abstraction to common Islamic calculations LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/COPYING -USES= cmake pkgconfig +USES= cmake:insource pkgconfig USE_LDCONFIG= yes USE_GITHUB= yes diff --git a/archivers/ark-kde4/Makefile b/archivers/ark-kde4/Makefile index 118d001d649a..0a8847e8d971 100644 --- a/archivers/ark-kde4/Makefile +++ b/archivers/ark-kde4/Makefile @@ -17,7 +17,7 @@ LIB_DEPENDS= libqjson.so:devel/qjson@qt4 LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING -USES= cmake:outsource kde:4 libarchive cpe qt:4 tar:xz +USES= cmake kde:4 libarchive cpe qt:4 tar:xz USE_KDE= automoc4 kdelibs libkonq CPE_VENDOR= kde USE_QT= qtestlib qmake_build moc_build rcc_build uic_build diff --git a/archivers/ark/Makefile b/archivers/ark/Makefile index 88825e3af359..0cc33b58edf7 100644 --- a/archivers/ark/Makefile +++ b/archivers/ark/Makefile @@ -10,7 +10,7 @@ COMMENT= Archiving tool for KDE LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING -USES= cmake:outsource compiler:c++11-lang gettext libarchive kde:5 \ +USES= cmake compiler:c++11-lang gettext libarchive kde:5 \ qt:5 tar:xz USE_KDE= archive auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons doctools ecm i18n iconthemes \ diff --git a/archivers/kf5-karchive/Makefile b/archivers/kf5-karchive/Makefile index 7c8df0a6f389..1b3c102f4f22 100644 --- a/archivers/kf5-karchive/Makefile +++ b/archivers/kf5-karchive/Makefile @@ -11,7 +11,7 @@ COMMENT= KF5 library that provides classes for handling archive formats LICENSE= LGPL20 LICENSE_FILE= ${WRKSRC}/COPYING.LIB -USES= cmake:outsource compiler:c++11-lib kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib kde:5 qt:5 tar:xz USE_KDE= ecm USE_QT= buildtools_build core qmake_build diff --git a/archivers/lazperf/Makefile b/archivers/lazperf/Makefile index 5a13673561e9..329c97afb038 100644 --- a/archivers/lazperf/Makefile +++ b/archivers/lazperf/Makefile @@ -12,7 +12,7 @@ COMMENT= Alternative LAZ implementation for C++ and JavaScript LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/COPYING -USES= cmake:outsource compiler:c++11-lang +USES= cmake compiler:c++11-lang USE_GITHUB= yes GH_ACCOUNT= hobu GH_PROJECT= laz-perf diff --git a/archivers/libzip/Makefile b/archivers/libzip/Makefile index a1367e6bfb56..46d07024b6bb 100644 --- a/archivers/libzip/Makefile +++ b/archivers/libzip/Makefile @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE CPE_VENDOR= nih -USES= cmake:outsource cpe perl5 ssl tar:xz +USES= cmake cpe perl5 ssl tar:xz USE_LDCONFIG= yes USE_PERL5= test TEST_TARGET= test diff --git a/archivers/quazip/Makefile b/archivers/quazip/Makefile index f419756c5931..61d519f1714b 100644 --- a/archivers/quazip/Makefile +++ b/archivers/quazip/Makefile @@ -16,7 +16,7 @@ LICENSE= LGPL21 FLAVORS= qt5 qt4 FLAVOR?= ${FLAVORS:[1]} -USES= cmake:outsource +USES= cmake USE_LDCONFIG= yes . if ${FLAVOR} == qt4 diff --git a/astro/gpstk/Makefile b/astro/gpstk/Makefile index 9fc0a8e070c9..29baafff0202 100644 --- a/astro/gpstk/Makefile +++ b/astro/gpstk/Makefile @@ -12,7 +12,7 @@ COMMENT= Toolkit for developing GPS applications LICENSE= GPLv3 LGPL3 LICENSE_COMB= multi -USES= cmake:outsource +USES= cmake USE_LDCONFIG= yes USE_GITHUB= yes diff --git a/astro/kstars-kde4/Makefile b/astro/kstars-kde4/Makefile index 6f63f97c83bc..016068544920 100644 --- a/astro/kstars-kde4/Makefile +++ b/astro/kstars-kde4/Makefile @@ -16,7 +16,7 @@ LIB_DEPENDS= libcfitsio.so:astro/cfitsio \ BUILD_DEPENDS= xplanet:astro/xplanet RUN_DEPENDS= xplanet:astro/xplanet -USES= cmake:outsource compiler:c++11-lib eigen:3 kde:4 qt:4 tar:xz +USES= cmake compiler:c++11-lib eigen:3 kde:4 qt:4 tar:xz USE_KDE= kdelibs automoc4 USE_QT= opengl qmake_build moc_build rcc_build uic_build diff --git a/astro/kstars/Makefile b/astro/kstars/Makefile index 55841b93224b..ae61f33e950c 100644 --- a/astro/kstars/Makefile +++ b/astro/kstars/Makefile @@ -19,7 +19,7 @@ LIB_DEPENDS= libcfitsio.so:astro/cfitsio \ BUILD_DEPENDS= xplanet:astro/xplanet RUN_DEPENDS= xplanet:astro/xplanet -USES= cmake:outsource compiler:c++11-lib eigen:3 gettext kde:5 \ +USES= cmake compiler:c++11-lib eigen:3 gettext kde:5 \ pkgconfig qt:5 tar:xz USE_KDE= attica auth bookmarks codecs completion config configwidgets\ coreaddons crash dbusaddons doctools ecm guiaddons i18n \ diff --git a/astro/libkgeomap-kde4/Makefile b/astro/libkgeomap-kde4/Makefile index 283080e494a9..c35333dc59dc 100644 --- a/astro/libkgeomap-kde4/Makefile +++ b/astro/libkgeomap-kde4/Makefile @@ -19,7 +19,7 @@ LICENSE_COMB= multi BUILD_DEPENDS= ${LOCALBASE}/include/boost/graph/buffer_concepts.hpp:devel/boost-libs -USES= cmake:outsource kde:4 pathfix qt:4 tar:xz +USES= cmake kde:4 pathfix qt:4 tar:xz USE_KDE= kdelibs automoc4 marble USE_LDCONFIG= yes USE_QT= network phonon xml moc_build qmake_build rcc_build uic_build diff --git a/astro/libkgeomap/Makefile b/astro/libkgeomap/Makefile index 5aa0e4475cd7..772d02ca8a09 100644 --- a/astro/libkgeomap/Makefile +++ b/astro/libkgeomap/Makefile @@ -13,7 +13,7 @@ LICENSE_COMB= multi BUILD_DEPENDS= ${LOCALBASE}/include/boost/graph/buffer_concepts.hpp:devel/boost-libs LIB_DEPENDS= libopencv_video.so:graphics/opencv -USES= cmake:outsource compiler:c++11-lang gettext kde:5 pkgconfig \ +USES= cmake compiler:c++11-lang gettext kde:5 pkgconfig \ qt:5 tar:xz USE_KDE= config coreaddons ecm i18n kio marble service textwidgets USE_QT= concurrent core gui network webkit widgets xml \ diff --git a/astro/marble-kde4/Makefile b/astro/marble-kde4/Makefile index 6497d5e4db43..20a45a7eca68 100644 --- a/astro/marble-kde4/Makefile +++ b/astro/marble-kde4/Makefile @@ -13,7 +13,7 @@ LIB_DEPENDS= libquazip.so:archivers/quazip@qt4 DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 shared-mime-info tar:xz +USES= cmake kde:4 qt:4 shared-mime-info tar:xz USE_KDE= kdelibs automoc4 USE_QT= corelib dbus declarative designer_build gui network phonon \ qtestlib script sql svg webkit xml \ diff --git a/astro/marble/Makefile b/astro/marble/Makefile index 6095682baca6..e88e52228288 100644 --- a/astro/marble/Makefile +++ b/astro/marble/Makefile @@ -13,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt LIB_DEPENDS= libquazip5.so:archivers/quazip@qt5 -USES= cmake:outsource compiler:c++11-lang desktop-file-utils gettext \ +USES= cmake compiler:c++11-lang desktop-file-utils gettext \ kde:5 qt:5 tar:xz USE_KDE= attica auth codecs completion config configwidgets coreaddons \ crash doctools ecm i18n jobwidgets kio newstuff package parts \ diff --git a/astro/oskar/Makefile b/astro/oskar/Makefile index 4d00e13a31cd..3b0d7bac3c6c 100644 --- a/astro/oskar/Makefile +++ b/astro/oskar/Makefile @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libcfitsio.so:astro/cfitsio -USES= cmake:outsource localbase:ldflags python qt:5 shebangfix +USES= cmake localbase:ldflags python qt:5 shebangfix SHEBANG_FILES= apps/oskar_convert_cst_to_scalar.py USE_GITHUB= yes GH_ACCOUNT= OxfordSKA diff --git a/astro/qlandkartegt/Makefile b/astro/qlandkartegt/Makefile index 8556a8c0c306..f55252eef0f7 100644 --- a/astro/qlandkartegt/Makefile +++ b/astro/qlandkartegt/Makefile @@ -21,7 +21,7 @@ LIB_DEPENDS= libgdal.so:graphics/gdal \ libproj.so:graphics/proj \ libgps.so:astro/gpsd -USES= cmake desktop-file-utils qt:4 +USES= cmake:insource desktop-file-utils qt:4 USE_QT= dbus gui opengl network sql xml linguist_build \ moc_build uic_build rcc_build qmake_build USE_GL= glu diff --git a/audio/aften/Makefile b/audio/aften/Makefile index d55325901efc..7037229dd9a1 100644 --- a/audio/aften/Makefile +++ b/audio/aften/Makefile @@ -9,7 +9,7 @@ MASTER_SITES= SF MAINTAINER= Gabor@Zahemszky.HU COMMENT= ATSC A/52 audio encoder -USES= tar:bzip2 cmake:outsource +USES= tar:bzip2 cmake OPTIONS_DEFINE= SHARED_LIB CXX_BINDINGS DOUBLE OPTIONS_DEFAULT= diff --git a/audio/alure/Makefile b/audio/alure/Makefile index f96a0417bc5d..bfba89eb7520 100644 --- a/audio/alure/Makefile +++ b/audio/alure/Makefile @@ -13,7 +13,7 @@ COMMENT= Utility library to help manage common tasks with OpenAL LICENSE= MIT LICENSE_FILE= ${WRKSRC}/COPYING -USES= cmake:outsource openal:soft pkgconfig +USES= cmake openal:soft pkgconfig USE_LDCONFIG= yes LLD_UNSAFE= yes # lld disallows preemption of protected visibility syms CMAKE_OFF= BUILD_DOCS BUILD_STATIC diff --git a/audio/amarok-kde4/Makefile b/audio/amarok-kde4/Makefile index 8426d38e87b1..cff4c05274fc 100644 --- a/audio/amarok-kde4/Makefile +++ b/audio/amarok-kde4/Makefile @@ -26,7 +26,7 @@ BUILD_DEPENDS= ${LOCALBASE}/lib/qt4/plugins/script/libqtscript_core.so.1.0.0:dev RUN_DEPENDS= ${LOCALBASE}/lib/qt4/plugins/script/libqtscript_core.so.1.0.0:devel/qtscriptgenerator \ ${KDE_PREFIX}/lib/kde4/kio_upnp_ms.so:net/kio-upnp-ms -USES= cmake:outsource kde:4 mysql:client,embedded pkgconfig \ +USES= cmake kde:4 mysql:client,embedded pkgconfig \ qt:4 shared-mime-info shebangfix ssl tar:bzip2 USE_GL= gl USE_KDE= automoc4 kdelibs libkcddb libkcompactdisc \ diff --git a/audio/arss/Makefile b/audio/arss/Makefile index 1cff001d41bc..37f2be960266 100644 --- a/audio/arss/Makefile +++ b/audio/arss/Makefile @@ -15,7 +15,7 @@ LIB_DEPENDS= libfftw3.so:math/fftw3 WRKSRC= ${WRKDIR}/${DISTNAME}/src -USES= cmake +USES= cmake:insource USE_LDCONFIG= ${PREFIX}/lib CFLAGS+= -L${LOCALBASE}/lib -I${LOCALBASE}/include CMAKE_C_FLAGS= ${CFLAGS} diff --git a/audio/artyfx-lv2/Makefile b/audio/artyfx-lv2/Makefile index 4f6627705e9f..eb0c96025fe5 100644 --- a/audio/artyfx-lv2/Makefile +++ b/audio/artyfx-lv2/Makefile @@ -17,7 +17,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= lv2>0:audio/lv2 LIB_DEPENDS= libsndfile.so:audio/libsndfile -USES= cmake:outsource localbase:ldflags pkgconfig +USES= cmake localbase:ldflags pkgconfig USE_GITHUB= yes GH_ACCOUNT= openAVproductions GH_PROJECT= openAV-ArtyFX diff --git a/audio/audiocd-kio/Makefile b/audio/audiocd-kio/Makefile index 73e6ca902f35..5a94a6794916 100644 --- a/audio/audiocd-kio/Makefile +++ b/audio/audiocd-kio/Makefile @@ -16,7 +16,7 @@ LIB_DEPENDS= libFLAC.so:audio/flac \ libKF5Cddb.so:audio/libkcddb \ libKF5CompactDisc.so:audio/libkcompactdisc -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash guiaddons i18n iconthemes itemviews \ jobwidgets kcmutils kdelibs4support kio notifications parts \ diff --git a/audio/bcg729/Makefile b/audio/bcg729/Makefile index a09715e11bec..710cf3d20df1 100644 --- a/audio/bcg729/Makefile +++ b/audio/bcg729/Makefile @@ -13,7 +13,7 @@ COMMENT= Software G729A encoder and decoder library written in C LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING -USES= cmake:outsource +USES= cmake USE_LDCONFIG= yes CMAKE_ARGS= -DENABLE_STATIC=NO diff --git a/audio/cantata/Makefile b/audio/cantata/Makefile index 3d0a58dde5bf..e100210d801b 100644 --- a/audio/cantata/Makefile +++ b/audio/cantata/Makefile @@ -12,7 +12,7 @@ COMMENT= Graphical client for MPD using Qt5 LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE -USES= cmake:outsource cpe pkgconfig qt:5 shebangfix +USES= cmake cpe pkgconfig qt:5 shebangfix USE_GITHUB= yes GH_ACCOUNT= CDrummond diff --git a/audio/ccaudio2/Makefile b/audio/ccaudio2/Makefile index 312890ab8ea9..5b26d0de817e 100644 --- a/audio/ccaudio2/Makefile +++ b/audio/ccaudio2/Makefile @@ -18,7 +18,7 @@ LIB_DEPENDS= libccgnu2.so:devel/commoncpp \ libgsm.so:audio/gsm \ libspeex.so:audio/speex -USES= cmake:outsource compiler:c++11-lib pathfix pkgconfig +USES= cmake compiler:c++11-lib pathfix pkgconfig USE_LDCONFIG= yes CMAKE_ARGS= -DWITH_INCLUDES:PATH=${LOCALBASE}/include diff --git a/audio/chromaprint/Makefile b/audio/chromaprint/Makefile index 808645cd673c..d2e361d428d9 100644 --- a/audio/chromaprint/Makefile +++ b/audio/chromaprint/Makefile @@ -15,7 +15,7 @@ LICENSE_FILE_MIT= ${WRKSRC}/LICENSE.md LIB_DEPENDS= libavcodec.so:multimedia/ffmpeg -USES= cmake:outsource compiler:c++11-lib pathfix +USES= cmake compiler:c++11-lib pathfix USE_LDCONFIG= yes CMAKE_ARGS= -DBUILD_TOOLS:BOOL=true \ diff --git a/audio/codec2/Makefile b/audio/codec2/Makefile index 4806e073f95e..73d4a9e8cf44 100644 --- a/audio/codec2/Makefile +++ b/audio/codec2/Makefile @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libspeexdsp.so:audio/speexdsp CONFLICTS= libcodec2-[0-9]* -USES= cmake:outsource pathfix pkgconfig shebangfix tar:xz +USES= cmake pathfix pkgconfig shebangfix tar:xz USE_LDCONFIG= yes OPTIONS_DEFINE= EXAMPLES TEST diff --git a/audio/creox/Makefile b/audio/creox/Makefile index 4ea9442930e5..135ce82916ff 100644 --- a/audio/creox/Makefile +++ b/audio/creox/Makefile @@ -21,7 +21,7 @@ USE_GITHUB= yes GH_ACCOUNT= laudrup GH_PROJECT= Creox4 -USES= cmake:outsource kde:4 qt:4 +USES= cmake kde:4 qt:4 USE_KDE= automoc4 kdelibs USE_QT= moc_build qmake_build rcc_build uic_build USE_XORG= xft xpm diff --git a/audio/csound/Makefile b/audio/csound/Makefile index 5fcde05f27a1..f1b5fea6a24c 100644 --- a/audio/csound/Makefile +++ b/audio/csound/Makefile @@ -18,7 +18,7 @@ BUILD_DEPENDS= boost-libs>0:devel/boost-libs \ LIB_DEPENDS= libsamplerate.so:audio/libsamplerate \ libsndfile.so:audio/libsndfile -USES= alias bison cmake:outsource compiler:c++11-lib eigen:3 localbase ncurses python:2.7 +USES= alias bison cmake compiler:c++11-lib eigen:3 localbase ncurses python:2.7 USE_GITHUB= yes USE_LDCONFIG= yes diff --git a/audio/drumstick/Makefile b/audio/drumstick/Makefile index b1ad95e28853..6f1bdc94b333 100644 --- a/audio/drumstick/Makefile +++ b/audio/drumstick/Makefile @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libfluidsynth.so:audio/fluidsynth RUN_DEPENDS= ${LOCALBASE}/share/sounds/sf2/FluidR3_GM.sf2:audio/fluid-soundfont -USES= compiler:c++11-lang cmake:outsource pkgconfig qt:5 shared-mime-info tar:bz2 +USES= compiler:c++11-lang cmake pkgconfig qt:5 shared-mime-info tar:bz2 USE_QT= core gui network svg testlib widgets buildtools_build qmake_build USE_LDCONFIG= yes diff --git a/audio/eq10q-lv2/Makefile b/audio/eq10q-lv2/Makefile index f8879e153e91..7a8655ab1ad7 100644 --- a/audio/eq10q-lv2/Makefile +++ b/audio/eq10q-lv2/Makefile @@ -18,7 +18,7 @@ LIB_DEPENDS= libfftw3.so:math/fftw3 \ libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 -USES= cmake:outsource compiler:c++11-lang dos2unix localbase:ldflags pkgconfig +USES= cmake compiler:c++11-lang dos2unix localbase:ldflags pkgconfig USE_GNOME= glib20 gtk20 gtkmm24 gdkpixbuf2 atkmm cairo cairomm pangomm DOS2UNIX_FILES= dsp/vu.h diff --git a/audio/eteroj-lv2/Makefile b/audio/eteroj-lv2/Makefile index 6fadabf451c0..36af17eac442 100644 --- a/audio/eteroj-lv2/Makefile +++ b/audio/eteroj-lv2/Makefile @@ -19,7 +19,7 @@ LIB_DEPENDS= libsratom-0.so:audio/sratom \ libsord-0.so:devel/sord \ libuv.so:devel/libuv -USES= cmake:outsource pkgconfig +USES= cmake pkgconfig USE_GITHUB= yes GH_ACCOUNT= OpenMusicKontrollers GH_PROJECT= eteroj.lv2 diff --git a/audio/fabla2-lv2/Makefile b/audio/fabla2-lv2/Makefile index e63a77b220a0..ec213edd9b45 100644 --- a/audio/fabla2-lv2/Makefile +++ b/audio/fabla2-lv2/Makefile @@ -15,7 +15,7 @@ BUILD_DEPENDS= lv2>0:audio/lv2 LIB_DEPENDS= libsamplerate.so:audio/libsamplerate \ libsndfile.so:audio/libsndfile -USES= cmake:outsource pkgconfig +USES= cmake pkgconfig USE_GITHUB= yes GH_ACCOUNT= openAVproductions GH_PROJECT= openAV-Fabla2 diff --git a/audio/infamous-plugins-lv2/Makefile b/audio/infamous-plugins-lv2/Makefile index d27bbc59c338..0da4f51a32e4 100644 --- a/audio/infamous-plugins-lv2/Makefile +++ b/audio/infamous-plugins-lv2/Makefile @@ -20,7 +20,7 @@ LIB_DEPENDS= libfftw3f.so:math/fftw3-float \ libntk.so:x11-toolkits/ntk \ libzita-resampler.so:audio/zita-resampler -USES= cmake:outsource localbase pkgconfig +USES= cmake localbase pkgconfig USE_GITHUB= yes GH_ACCOUNT= ssj71 GH_PROJECT= infamousPlugins diff --git a/audio/juk-kde4/Makefile b/audio/juk-kde4/Makefile index 92d938a3ae12..3ffc0d7d2096 100644 --- a/audio/juk-kde4/Makefile +++ b/audio/juk-kde4/Makefile @@ -16,7 +16,7 @@ EXPIRATION_DATE= 2018-12-31 LIB_DEPENDS= libtag.so:audio/taglib -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= automoc4 kdelibs USE_QT= moc_build qmake_build rcc_build uic_build diff --git a/audio/juk/Makefile b/audio/juk/Makefile index b8e69c8cd735..d549d507a494 100644 --- a/audio/juk/Makefile +++ b/audio/juk/Makefile @@ -11,7 +11,7 @@ LICENSE= GPLv2 LIB_DEPENDS= libtag.so:audio/taglib -USES= cmake:outsource kde:5 qt:5 tar:xz +USES= cmake kde:5 qt:5 tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash globalaccel i18n iconthemes itemviews \ jobwidgets kio notifications service solid sonnet textwidgets \ diff --git a/audio/kid3-kde4/Makefile b/audio/kid3-kde4/Makefile index 6733fec8c4bd..708bc3165e95 100644 --- a/audio/kid3-kde4/Makefile +++ b/audio/kid3-kde4/Makefile @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= ${LOCALBASE}/share/xsl/docbook/html/docbook.xsl:textproc/docbook-xsl -USES= cmake:outsource gnome pkgconfig +USES= cmake gnome pkgconfig USE_GNOME= libxslt:build USE_LDCONFIG= yes diff --git a/audio/kio-audiocd-kde4/Makefile b/audio/kio-audiocd-kde4/Makefile index 974188105cef..e5d7d5d05b9e 100644 --- a/audio/kio-audiocd-kde4/Makefile +++ b/audio/kio-audiocd-kde4/Makefile @@ -19,7 +19,7 @@ LIB_DEPENDS= libFLAC.so:audio/flac \ libogg.so:audio/libogg \ libvorbis.so:audio/libvorbis -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs libkcddb libkcompactdisc \ automoc4 USE_QT= moc_build qmake_build rcc_build uic_build diff --git a/audio/kmix-kde4/Makefile b/audio/kmix-kde4/Makefile index 279be474f9c9..3281f67deea8 100644 --- a/audio/kmix-kde4/Makefile +++ b/audio/kmix-kde4/Makefile @@ -14,7 +14,7 @@ LICENSE= GPLv2 DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= automoc4 kdelibs USE_QT= gui phonon xml \ moc_build qmake_build rcc_build uic_build diff --git a/audio/kmix/Makefile b/audio/kmix/Makefile index 9187c0fc0a39..25e662faa089 100644 --- a/audio/kmix/Makefile +++ b/audio/kmix/Makefile @@ -11,7 +11,7 @@ LICENSE= GPLv2 LIB_DEPENDS= libasound.so:audio/alsa-lib -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons dbusaddons ecm \ emoticons globalaccel i18n iconthemes init itemmodels \ itemviews kcmutils kdelibs4support notifications package \ diff --git a/audio/kscd-kde4/Makefile b/audio/kscd-kde4/Makefile index e429ab75b804..6008e513b416 100644 --- a/audio/kscd-kde4/Makefile +++ b/audio/kscd-kde4/Makefile @@ -17,7 +17,7 @@ EXPIRATION_DATE= 2018-12-31 LIB_DEPENDS= libdiscid.so:audio/libdiscid \ libmusicbrainz5.so:audio/libmusicbrainz5 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs automoc4 USE_QT= phonon moc_build qmake_build rcc_build uic_build diff --git a/audio/kwave/Makefile b/audio/kwave/Makefile index f38a4f872224..5e74ae3603fe 100644 --- a/audio/kwave/Makefile +++ b/audio/kwave/Makefile @@ -18,7 +18,7 @@ LIB_DEPENDS= libaudiofile.so:audio/libaudiofile \ libsamplerate.so:audio/libsamplerate \ libvorbisenc.so:audio/libvorbis -USES= cmake:outsource desktop-file-utils gettext kde:5 \ +USES= cmake desktop-file-utils gettext kde:5 \ localbase:ldflags pkgconfig qt:5 tar:xz USE_KDE= archive auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons ecm i18n iconthemes itemviews \ diff --git a/audio/libcoverart/Makefile b/audio/libcoverart/Makefile index 7e1cb0e0159a..b1993ec2b38e 100644 --- a/audio/libcoverart/Makefile +++ b/audio/libcoverart/Makefile @@ -14,7 +14,7 @@ LICENSE= LGPL20 LIB_DEPENDS= libjansson.so:devel/jansson \ libneon.so:www/neon -USES= compiler:c11 cmake pathfix +USES= compiler:c11 cmake:insource pathfix USE_CSTD= c99 USE_CXXSTD= c++98 USE_LDCONFIG= yes diff --git a/audio/libebur128/Makefile b/audio/libebur128/Makefile index aedec10f78e5..8aebe4b42a92 100644 --- a/audio/libebur128/Makefile +++ b/audio/libebur128/Makefile @@ -17,7 +17,7 @@ LIB_DEPENDS= libspeexdsp.so:audio/speexdsp USE_GITHUB= yes GH_ACCOUNT= jiixyj -USES= cmake:outsource localbase:ldflags pkgconfig +USES= cmake localbase:ldflags pkgconfig USE_LDCONFIG= yes .include <bsd.port.mk> diff --git a/audio/libgroove/Makefile b/audio/libgroove/Makefile index 1802a28dedbd..cb8270f29b45 100644 --- a/audio/libgroove/Makefile +++ b/audio/libgroove/Makefile @@ -20,7 +20,7 @@ LIB_DEPENDS= libavcodec.so:multimedia/ffmpeg \ USE_GITHUB= yes GH_ACCOUNT= andrewrk -USES= cmake:outsource +USES= cmake USE_SDL= sdl2 USE_LDCONFIG= yes CFLAGS+= -Wno-error=deprecated-declarations # ffmpeg 3.1 diff --git a/audio/libinstpatch/Makefile b/audio/libinstpatch/Makefile index 4d025b6a6381..a68e9d0d80d0 100644 --- a/audio/libinstpatch/Makefile +++ b/audio/libinstpatch/Makefile @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libsndfile.so:audio/libsndfile -USES= cmake:outsource gettext-runtime gnome localbase:ldflags pkgconfig tar:bz2 +USES= cmake gettext-runtime gnome localbase:ldflags pkgconfig tar:bz2 USE_GNOME= glib20 USE_LDCONFIG= yes diff --git a/audio/libkcddb-kde4/Makefile b/audio/libkcddb-kde4/Makefile index bc9134210380..fd4168aff1e8 100644 --- a/audio/libkcddb-kde4/Makefile +++ b/audio/libkcddb-kde4/Makefile @@ -14,7 +14,7 @@ EXPIRATION_DATE= 2018-12-31 LIB_DEPENDS= libmusicbrainz5.so:audio/libmusicbrainz5 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= automoc4 kdelibs USE_QT= qtestlib moc_build qmake_build rcc_build uic_build USE_LDCONFIG= yes diff --git a/audio/libkcddb/Makefile b/audio/libkcddb/Makefile index a2fa860f81af..649bcedc67e2 100644 --- a/audio/libkcddb/Makefile +++ b/audio/libkcddb/Makefile @@ -9,7 +9,7 @@ COMMENT= KDE CDDB library LIB_DEPENDS= libmusicbrainz5.so:audio/libmusicbrainz5 -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets \ coreaddons ecm i18n jobwidgets kio service \ widgetsaddons diff --git a/audio/libkcompactdisc-kde4/Makefile b/audio/libkcompactdisc-kde4/Makefile index 9f37c7170804..0dc8a7718ced 100644 --- a/audio/libkcompactdisc-kde4/Makefile +++ b/audio/libkcompactdisc-kde4/Makefile @@ -12,7 +12,7 @@ COMMENT= KDE library for interfacing with audio CDs DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= automoc4 kdelibs USE_QT= phonon moc_build qmake_build rcc_build uic_build USE_LDCONFIG= yes diff --git a/audio/libkcompactdisc/Makefile b/audio/libkcompactdisc/Makefile index cfbda4d194d1..6abf91d1d082 100644 --- a/audio/libkcompactdisc/Makefile +++ b/audio/libkcompactdisc/Makefile @@ -7,7 +7,7 @@ CATEGORIES= audio kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE library for interfacing with audio CDs -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= coreaddons ecm emoticons i18n itemmodels itemviews \ kdelibs4support solid USE_QT= core dbus phonon4\ diff --git a/audio/libmusicbrainz5/Makefile b/audio/libmusicbrainz5/Makefile index ce40f00af6ce..7f3d4777dd59 100644 --- a/audio/libmusicbrainz5/Makefile +++ b/audio/libmusicbrainz5/Makefile @@ -14,7 +14,7 @@ LICENSE= LGPL21 LIB_DEPENDS= libneon.so:www/neon -USES= cmake compiler:c++11-lang iconv:build pathfix +USES= cmake:insource compiler:c++11-lang iconv:build pathfix USE_GNOME= libxml2 USE_LDCONFIG= yes diff --git a/audio/libmusicxml/Makefile b/audio/libmusicxml/Makefile index e652930a0f8f..47d031631bf9 100644 --- a/audio/libmusicxml/Makefile +++ b/audio/libmusicxml/Makefile @@ -13,7 +13,7 @@ COMMENT= Library and tools for the MusicXML format LICENSE= MPL20 LICENSE_FILE= ${WRKSRC}/license.txt -USES= cmake:outsource compiler:c++11-lang +USES= cmake compiler:c++11-lang USE_GITHUB= yes GH_ACCOUNT= grame-cncm USE_LDCONFIG= yes diff --git a/audio/lmms/Makefile b/audio/lmms/Makefile index c9f18d45976f..449a74e30900 100644 --- a/audio/lmms/Makefile +++ b/audio/lmms/Makefile @@ -30,7 +30,7 @@ RUN_DEPENDS= ${LOCALBASE}/share/ladspa/rdf/caps.rdf:audio/caps-plugins \ ${LOCALBASE}/share/ladspa/rdf/swh-plugins.rdf:audio/swhplugins \ ${LOCALBASE}/share/ladspa/rdf/tap-plugins.rdf:audio/tap-plugins -USES= cmake:outsource desktop-file-utils localbase:ldflags pkgconfig \ +USES= cmake desktop-file-utils localbase:ldflags pkgconfig \ qt:5 shared-mime-info USE_GITHUB= yes GH_ACCOUNT= LMMS diff --git a/audio/luppp/Makefile b/audio/luppp/Makefile index d2f5f21a37c7..1a3bec60724a 100644 --- a/audio/luppp/Makefile +++ b/audio/luppp/Makefile @@ -18,7 +18,7 @@ LIB_DEPENDS= libjack.so:audio/jack \ libsamplerate.so:audio/libsamplerate \ libsndfile.so:audio/libsndfile -USES= cmake:outsource compiler:c++11-lang gnome pkgconfig +USES= cmake compiler:c++11-lang gnome pkgconfig USE_GITHUB= yes GH_ACCOUNT= openAVproductions GH_PROJECT= openAV-Luppp diff --git a/audio/moony-lv2/Makefile b/audio/moony-lv2/Makefile index 6a956d1a71ac..16781d9f15ad 100644 --- a/audio/moony-lv2/Makefile +++ b/audio/moony-lv2/Makefile @@ -16,7 +16,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= lv2>0:audio/lv2 -USES= cmake:outsource compiler:c++11-lang gl pkgconfig +USES= cmake compiler:c++11-lang gl pkgconfig USE_XORG= x11 xext USE_GL= gl glu diff --git a/audio/mous/Makefile b/audio/mous/Makefile index dd92cbde7673..5d6aa62e2ab2 100644 --- a/audio/mous/Makefile +++ b/audio/mous/Makefile @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE BROKEN_aarch64= fails to compile: mmintrin.h:47:5: use of undeclared identifier '__builtin_ia32_emms'; did you mean '__builtin_isless'? -USES= cmake:outsource compiler:c++14-lang +USES= cmake compiler:c++14-lang USE_LDCONFIG= yes USE_GITHUB= yes GH_ACCOUNT= bsdelf diff --git a/audio/musescore/Makefile b/audio/musescore/Makefile index 9714dc9cb47b..cae877f37996 100644 --- a/audio/musescore/Makefile +++ b/audio/musescore/Makefile @@ -22,7 +22,7 @@ LIB_DEPENDS= libmp3lame.so:audio/lame \ libogg.so:audio/libogg \ libfreetype.so:print/freetype2 -USES= cmake:outsource compiler:c++11-lib desktop-file-utils \ +USES= cmake compiler:c++11-lib desktop-file-utils \ pkgconfig qt:5 shared-mime-info zip USE_QT= core declarative gui widgets opengl concurrent designer help network \ scripttools svg sql printsupport testlib webkit \ diff --git a/audio/openal-soft/Makefile b/audio/openal-soft/Makefile index 03466042a4e2..da0b892912a4 100644 --- a/audio/openal-soft/Makefile +++ b/audio/openal-soft/Makefile @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING CONFLICTS= openal-200[0-9]* -USES= cmake:outsource compiler:c11 tar:bzip2 +USES= cmake compiler:c11 tar:bzip2 USE_LDCONFIG= yes LLD_UNSAFE= yes CMAKE_ARGS= -DCMAKE_INSTALL_DATADIR:STRING="${PREFIX}/etc" diff --git a/audio/pavucontrol-qt/Makefile b/audio/pavucontrol-qt/Makefile index 557e66240907..563d24aabca9 100644 --- a/audio/pavucontrol-qt/Makefile +++ b/audio/pavucontrol-qt/Makefile @@ -14,7 +14,7 @@ LICENSE= GPLv2 LIB_DEPENDS= libpulse.so:audio/pulseaudio -USES= cmake:outsource compiler:c++11-lang gettext-runtime localbase:ldflags qt:5 \ +USES= cmake compiler:c++11-lang gettext-runtime localbase:ldflags qt:5 \ lxqt pkgconfig tar:xz gnome USE_QT= buildtools_build qmake_build core dbus gui linguisttools \ widgets diff --git a/audio/plasma5-plasma-pa/Makefile b/audio/plasma5-plasma-pa/Makefile index 8fee8e6f72cd..a7a033f25317 100644 --- a/audio/plasma5-plasma-pa/Makefile +++ b/audio/plasma5-plasma-pa/Makefile @@ -11,7 +11,7 @@ COMMENT= Plasma5 Plasma pulse audio mixer LIB_DEPENDS= libcanberra.so:audio/libcanberra \ libpulse.so:audio/pulseaudio -USES= cmake:outsource compiler:c++11-lib cpe gettext kde:5 \ +USES= cmake compiler:c++11-lib cpe gettext kde:5 \ pkgconfig qt:5 shebangfix tar:xz USE_GNOME= gconf2 USE_KDE= config configwidgets coreaddons ecm globalaccel i18n \ diff --git a/audio/rkr-lv2/Makefile b/audio/rkr-lv2/Makefile index ef4b245d3bc4..0765268d87f1 100644 --- a/audio/rkr-lv2/Makefile +++ b/audio/rkr-lv2/Makefile @@ -17,7 +17,7 @@ BUILD_DEPENDS= lv2>0:audio/lv2 LIB_DEPENDS= libfftw3.so:math/fftw3 \ libsamplerate.so:audio/libsamplerate -USES= cmake:outsource pkgconfig +USES= cmake pkgconfig USE_GITHUB= yes GH_ACCOUNT= ssj71 GH_PROJECT= ${PORTNAME}lv2 diff --git a/audio/rosegarden/Makefile b/audio/rosegarden/Makefile index b8d35a010d31..2a6f7bb65447 100644 --- a/audio/rosegarden/Makefile +++ b/audio/rosegarden/Makefile @@ -24,7 +24,7 @@ RUN_DEPENDS= dssi_osc_update:audio/dssi \ xdg-open:devel/xdg-utils \ lilypond:print/lilypond -USES= alias cmake:outsource desktop-file-utils localbase:ldflags \ +USES= alias cmake desktop-file-utils localbase:ldflags \ pkgconfig shared-mime-info tar:bzip2 OPTIONS_DEFINE= LIRC diff --git a/audio/sayonara/Makefile b/audio/sayonara/Makefile index 6fc96da66ecf..7049a6b85300 100644 --- a/audio/sayonara/Makefile +++ b/audio/sayonara/Makefile @@ -18,7 +18,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libtag.so:audio/taglib \ libmtp.so:multimedia/libmtp -USES= cmake:outsource compiler:c++11-lib desktop-file-utils \ +USES= cmake compiler:c++11-lib desktop-file-utils \ pkgconfig qt:5 USE_GNOME= glib20 USE_GSTREAMER1= flac libav mpg123 ogg opus vorbis diff --git a/audio/sc3-plugins/Makefile b/audio/sc3-plugins/Makefile index 068cb1fab490..d92c6516e016 100644 --- a/audio/sc3-plugins/Makefile +++ b/audio/sc3-plugins/Makefile @@ -23,7 +23,7 @@ OPTIONS_DEFAULT= SUPERNOVA SUPERNOVA_DESC= Build plugins for supernova OPTIONS_SUB= yes -USES= compiler:c++11-lang cmake:outsource localbase pkgconfig +USES= compiler:c++11-lang cmake localbase pkgconfig USE_GITHUB= yes GH_ACCOUNT= supercollider GH_TUPLE= timblechmann:nova-simd:3140689:n/external_libraries/nova-simd diff --git a/audio/simon/Makefile b/audio/simon/Makefile index 4ed5d127b602..e55d462b9b80 100644 --- a/audio/simon/Makefile +++ b/audio/simon/Makefile @@ -20,7 +20,7 @@ LIB_DEPENDS= libasound.so:audio/alsa-lib \ libsphinxad.so:audio/sphinxbase \ libqwt6.so:x11-toolkits/qwt6@qt4 -USES= cmake:outsource gettext kde:4 qt:4 tar:bz2 +USES= cmake gettext kde:4 qt:4 tar:bz2 USE_KDE= kdelibs automoc4 pimlibs USE_QT= accessible corelib dbus gui network script sql svg testlib xml \ moc_build qmake_build rcc_build uic_build diff --git a/audio/sorcer-lv2/Makefile b/audio/sorcer-lv2/Makefile index 7e5c22393ea5..afcb0d685d8e 100644 --- a/audio/sorcer-lv2/Makefile +++ b/audio/sorcer-lv2/Makefile @@ -17,7 +17,7 @@ BUILD_DEPENDS= lv2>0:audio/lv2 \ ${LOCALBASE}/include/boost/circular_buffer.hpp:devel/boost-libs LIB_DEPENDS= libntk.so:x11-toolkits/ntk -USES= cmake:outsource pkgconfig +USES= cmake pkgconfig USE_GITHUB= yes GH_ACCOUNT= openAVproductions GH_PROJECT= openAV-${PORTNAME} diff --git a/audio/soundkonverter/Makefile b/audio/soundkonverter/Makefile index 1b51fc8c3bbb..370b451c2420 100644 --- a/audio/soundkonverter/Makefile +++ b/audio/soundkonverter/Makefile @@ -17,7 +17,7 @@ LIB_DEPENDS= libtag.so:audio/taglib \ libphonon4qt5.so:multimedia/phonon@qt5 GH_ACCOUNT= HessiJames -USES= cmake:outsource compiler:c++11-lang kde:5 qt:5 +USES= cmake compiler:c++11-lang kde:5 qt:5 USE_GITHUB= yes USE_QT= dbus concurrent core buildtools_build gui network printsupport \ qmake_build widgets xml diff --git a/audio/spc2it/Makefile b/audio/spc2it/Makefile index 571544747e90..0c85a86aac22 100644 --- a/audio/spc2it/Makefile +++ b/audio/spc2it/Makefile @@ -11,7 +11,7 @@ COMMENT= Convert SPC files to IT (Impulse Tracker) files LICENSE= GPLv2 -USES= cmake +USES= cmake:insource USE_GITHUB= yes GH_ACCOUNT= uyjulian diff --git a/audio/supercollider/Makefile b/audio/supercollider/Makefile index a6b03376f4cb..d55e32ae7686 100644 --- a/audio/supercollider/Makefile +++ b/audio/supercollider/Makefile @@ -20,7 +20,7 @@ LIB_DEPENDS= libavahi-client.so:net/avahi-app \ libsndfile.so:audio/libsndfile \ libfftw3f.so:math/fftw3-float -USES= cmake:outsource compiler:c++11-lang iconv localbase pkgconfig \ +USES= cmake compiler:c++11-lang iconv localbase pkgconfig \ qt:5 readline shared-mime-info tar:bzip2 USE_QT= buildtools_build concurrent core declarative gui linguisttools location \ network opengl printsupport qmake_build sensors \ diff --git a/audio/synthpod-lv2/Makefile b/audio/synthpod-lv2/Makefile index 8165dbec130f..d26d36a15ed0 100644 --- a/audio/synthpod-lv2/Makefile +++ b/audio/synthpod-lv2/Makefile @@ -19,7 +19,7 @@ LIB_DEPENDS= liblilv-0.so:audio/lilv \ libsord-0.so:devel/sord \ libsratom-0.so:audio/sratom -USES= cmake:outsource compiler:c++11-lib pkgconfig localbase +USES= cmake:insource compiler:c++11-lib pkgconfig localbase USE_GITHUB= yes GH_ACCOUNT= OpenMusicKontrollers GH_TAGNAME= 07cae54 diff --git a/audio/vmpk/Makefile b/audio/vmpk/Makefile index c6b567b54214..bf0659063aba 100644 --- a/audio/vmpk/Makefile +++ b/audio/vmpk/Makefile @@ -13,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libdrumstick-rt.so:audio/drumstick -USES= compiler:c++11-lang cmake:outsource pkgconfig qt:5 tar:bz2 +USES= compiler:c++11-lang cmake pkgconfig qt:5 tar:bz2 USE_QT= core gui network svg widgets x11extras \ buildtools_build linguisttools_build qmake_build USE_XORG= xcb diff --git a/audio/wildmidi/Makefile b/audio/wildmidi/Makefile index 4e2c4fa35d4d..dd815939fffd 100644 --- a/audio/wildmidi/Makefile +++ b/audio/wildmidi/Makefile @@ -11,7 +11,7 @@ COMMENT= Simple software midi player and core softsynth library # player: GPLv3, library: LGPL3 LICENSE= LGPL3 -USES= cmake:outsource +USES= cmake USE_LDCONFIG= yes USE_GITHUB= yes diff --git a/audio/wmmp/Makefile b/audio/wmmp/Makefile index d2343351cbec..6b644ca5102b 100644 --- a/audio/wmmp/Makefile +++ b/audio/wmmp/Makefile @@ -11,7 +11,7 @@ COMMENT= Dockable musicpd client applet for Window Maker LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/LICENSE -USES= cmake +USES= cmake:insource USE_GITHUB= yes GH_ACCOUNT= yogsothoth USE_XORG= xpm x11 xext diff --git a/audio/yoshimi/Makefile b/audio/yoshimi/Makefile index 481ceca0e054..5cfacfdbbf49 100644 --- a/audio/yoshimi/Makefile +++ b/audio/yoshimi/Makefile @@ -25,7 +25,7 @@ BROKEN_aarch64= fails to compile: c++: warning: argument unused during compilat BROKEN_armv6= fails to compile: c++: warning: argument unused during compilation: '-msse' BROKEN_armv7= fails to compile: c++: warning: argument unused during compilation: '-msse' -USES= cmake:outsource ncurses pkgconfig readline:port +USES= cmake ncurses pkgconfig readline:port USE_GITHUB= yes USE_GNOME= cairo USE_GL= gl glu diff --git a/audio/zynaddsubfx/Makefile b/audio/zynaddsubfx/Makefile index 198839d4a21e..aa40b916aad5 100644 --- a/audio/zynaddsubfx/Makefile +++ b/audio/zynaddsubfx/Makefile @@ -19,7 +19,7 @@ LIB_DEPENDS= libfftw3.so:math/fftw3 \ libmxml.so:textproc/mxml \ liblo.so:audio/liblo -USES= tar:bzip2 cmake pkgconfig +USES= tar:bzip2 cmake:insource pkgconfig USE_LDCONFIG= yes OPTIONS_DEFINE= OSS JACK GUI PORTAUDIO LASH DOCS EXAMPLES diff --git a/benchmarks/clpeak/Makefile b/benchmarks/clpeak/Makefile index 983c4dba5a02..f90aacdb7215 100644 --- a/benchmarks/clpeak/Makefile +++ b/benchmarks/clpeak/Makefile @@ -23,7 +23,7 @@ GH_TAGNAME= 75c8746 USE_LDCONFIG= yes USE_GL= gl -USES= cmake +USES= cmake:insource CXXFLAGS+= -std=c++11 diff --git a/benchmarks/libcelero/Makefile b/benchmarks/libcelero/Makefile index 5cfc9195fc02..406d65422395 100644 --- a/benchmarks/libcelero/Makefile +++ b/benchmarks/libcelero/Makefile @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/license.txt BUILD_DEPENDS= ${LOCALBASE}/include/sys/sysinfo.h:devel/libsysinfo -USES= cmake:outsource compiler:c++11-lang localbase:ldflags +USES= cmake compiler:c++11-lang localbase:ldflags USE_GITHUB= yes GH_ACCOUNT= DigitalInBlue GH_PROJECT= Celero diff --git a/benchmarks/nosqlbench/Makefile b/benchmarks/nosqlbench/Makefile index ff6b8896c5e7..355bb3122d94 100644 --- a/benchmarks/nosqlbench/Makefile +++ b/benchmarks/nosqlbench/Makefile @@ -16,7 +16,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libleveldb.so:databases/leveldb DATE= 20151214 -USES= cmake tar:bzip2 +USES= cmake:insource tar:bzip2 CONFLICTS= tarantool-c diff --git a/benchmarks/smhasher/Makefile b/benchmarks/smhasher/Makefile index e71ba91ea34c..b72f6b4b7c15 100644 --- a/benchmarks/smhasher/Makefile +++ b/benchmarks/smhasher/Makefile @@ -17,7 +17,7 @@ BROKEN_powerpc64= fails to compile: City.cpp: byteswap.h: No such file or direct USE_GITHUB= yes GH_ACCOUNT= gvnn3 -USES= cmake +USES= cmake:insource PLIST_FILES= bin/SMHasher diff --git a/biology/avida/Makefile b/biology/avida/Makefile index f68e54a6b9d3..9a549c532fc7 100644 --- a/biology/avida/Makefile +++ b/biology/avida/Makefile @@ -20,7 +20,7 @@ BROKEN_mips64= invokes x86 assembler BROKEN_sparc64= missing atomics implementation BROKEN_powerpc64= fails to compile: sibling call optimization does not allow automatic multiple TOCs -USES= cmake:outsource ncurses +USES= cmake ncurses USE_CXXSTD= gnu++98 CMAKE_ARGS= -DAPTO_UNIT_TESTS:BOOL=OFF \ -DAVD_UNIT_TESTS:BOOL=OFF \ diff --git a/biology/bamtools/Makefile b/biology/bamtools/Makefile index 02f454bb79b2..ae18f4c0ae1b 100644 --- a/biology/bamtools/Makefile +++ b/biology/bamtools/Makefile @@ -12,7 +12,7 @@ LICENSE= MIT LIB_DEPENDS+= libjsoncpp.so:devel/jsoncpp -USES= cmake:outsource +USES= cmake USE_LDCONFIG= yes USE_GITHUB= yes GH_ACCOUNT= pezmaster31 diff --git a/biology/diamond/Makefile b/biology/diamond/Makefile index ae5b5ef753d5..7c2313831d8c 100644 --- a/biology/diamond/Makefile +++ b/biology/diamond/Makefile @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE ONLY_FOR_ARCHS= amd64 -USES= cmake:outsource +USES= cmake USE_GITHUB= yes GH_ACCOUNT= bbuchfink diff --git a/biology/hyphy/Makefile b/biology/hyphy/Makefile index 929337990983..cdd5437dca2a 100644 --- a/biology/hyphy/Makefile +++ b/biology/hyphy/Makefile @@ -16,7 +16,7 @@ ONLY_FOR_ARCHS= amd64 i386 LIB_DEPENDS= libcurl.so:ftp/curl -USES= compiler:c++14-lang cmake:outsource localbase:ldflags ssl +USES= compiler:c++14-lang cmake localbase:ldflags ssl USE_GITHUB= yes GH_ACCOUNT= veg diff --git a/biology/iqtree/Makefile b/biology/iqtree/Makefile index 0dc1ee7e86d3..bfd89f04639d 100644 --- a/biology/iqtree/Makefile +++ b/biology/iqtree/Makefile @@ -16,7 +16,7 @@ BROKEN_armv6= fails to compile: unrecognized command line options '-m32' and '- BROKEN_armv7= fails to compile: unrecognized command line options '-m32' and '-msse3' BROKEN_powerpc64= fails to build: GCC version must be at least 4.8! -USES= cmake compiler:openmp eigen:3 +USES= cmake:insource compiler:openmp eigen:3 USE_GITHUB= yes GH_ACCOUNT= Cibiv GH_PROJECT= IQ-TREE diff --git a/biology/libsbml/Makefile b/biology/libsbml/Makefile index 947c7afe0708..cb5d73912b8b 100644 --- a/biology/libsbml/Makefile +++ b/biology/libsbml/Makefile @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING.txt WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} -USES= cmake:outsource iconv:build +USES= cmake iconv:build USE_CXXSTD= c++98 USE_GNOME= libxml2 USE_LDCONFIG= yes diff --git a/biology/seqan-apps/Makefile b/biology/seqan-apps/Makefile index f516828857c7..fc557b6d35ec 100644 --- a/biology/seqan-apps/Makefile +++ b/biology/seqan-apps/Makefile @@ -15,7 +15,7 @@ LICENSE_COMB= multi BUILD_DEPENDS= boost-libs>0:devel/boost-libs -USES= cmake:outsource compiler:openmp # once #199603 is resolved, add c++14-lang +USES= cmake compiler:openmp # once #199603 is resolved, add c++14-lang USE_GITHUB= yes GH_ACCOUNT= seqan GH_PROJECT= seqan diff --git a/biology/unanimity/Makefile b/biology/unanimity/Makefile index 455e46550ab5..5719e1b5ab28 100644 --- a/biology/unanimity/Makefile +++ b/biology/unanimity/Makefile @@ -21,7 +21,7 @@ BUILD_DEPENDS= pbseqan>=g20171002:biology/pbseqan \ LIB_DEPENDS= libhts.so:biology/htslib \ libboost_regex.so:devel/boost-libs -USES= cmake compiler:c++14-lang pkgconfig python +USES= cmake:insource compiler:c++14-lang pkgconfig python USE_GITHUB= yes GH_ACCOUNT= PacificBiosciences diff --git a/cad/brlcad/Makefile b/cad/brlcad/Makefile index a11f2c07fe98..bee662a69c98 100644 --- a/cad/brlcad/Makefile +++ b/cad/brlcad/Makefile @@ -28,7 +28,7 @@ LIB_DEPENDS= libdrm.so:graphics/libdrm \ CONFLICTS_INSTALL= py[23][0-9]-epsilon -USES= bison cmake:outsource pathfix pkgconfig python:env shebangfix \ +USES= bison cmake:insource pathfix pkgconfig python:env shebangfix \ tar:bzip2 tk:85 USE_GL= gl glu USE_XORG= ice sm x11 xau xcb xdamage xdmcp xext xfixes xft xi \ diff --git a/cad/elmerfem/Makefile b/cad/elmerfem/Makefile index eb8e3e94ad97..240e41b1b6a3 100644 --- a/cad/elmerfem/Makefile +++ b/cad/elmerfem/Makefile @@ -20,7 +20,7 @@ USE_GITHUB= yes GH_ACCOUNT= ElmerCSC GH_TAGNAME= release-8.3 -USES= blaslapack:netlib cmake:outsource fortran gmake tcl +USES= blaslapack:netlib cmake fortran gmake tcl USE_LDCONFIG= ${PREFIX}/lib/elmersolver ALL_TARGET= # empty diff --git a/cad/freecad/Makefile b/cad/freecad/Makefile index a988d295ec06..132a19b4061a 100644 --- a/cad/freecad/Makefile +++ b/cad/freecad/Makefile @@ -35,7 +35,7 @@ LIB_DEPENDS= libexpat.so:textproc/expat2 \ libhdf5.so:science/hdf5 RUN_DEPENDS= pivy>0:graphics/py-pivy@${PY_FLAVOR} -USES= dos2unix compiler:c++11-lib cmake:outsource eigen:3 fortran jpeg \ +USES= dos2unix compiler:c++11-lib cmake eigen:3 fortran jpeg \ python:2.7 localbase qt:4 USE_GITHUB= yes USE_XORG= ice sm x11 xext xt diff --git a/cad/kicad-devel/Makefile b/cad/kicad-devel/Makefile index 745edacef5cd..042528c38b0f 100644 --- a/cad/kicad-devel/Makefile +++ b/cad/kicad-devel/Makefile @@ -46,7 +46,7 @@ PLIST_SUB= OPSYS=${OPSYS} \ BINS= cvpcb eeschema gerbview kicad pcbnew EXTRAS2RM= linux-non_unicode linux wings3d LINUX.README \ contrib_makefiles.txt running_kicad_under_W98.txt -USES= desktop-file-utils shared-mime-info compiler:c++11-lib tar:bzip2 cmake:noninja \ +USES= desktop-file-utils shared-mime-info compiler:c++11-lib tar:bzip2 cmake:insource,noninja \ gettext python:2.7 shebangfix ssl SHEBANG_FILES= pcbnew/python/plugins/touch_slider_wizard.py diff --git a/cad/opencascade/Makefile b/cad/opencascade/Makefile index 6e21981d2ef0..c38bf4fef73c 100644 --- a/cad/opencascade/Makefile +++ b/cad/opencascade/Makefile @@ -22,7 +22,7 @@ RUN_DEPENDS= bash:shells/bash # Check ${WRKSRC}/dox/overview/overview.md # and ${WRKSRC}/dox/dev_guides/building -USES= alias:10 cmake:outsource compiler:c++14-lang dos2unix \ +USES= alias:10 cmake compiler:c++14-lang dos2unix \ gl shebangfix tk tar:tgz USE_XORG= ice sm x11 xext xi xmu xt USE_GL= gl glu diff --git a/cad/openvsp/Makefile b/cad/openvsp/Makefile index 125fcaff50a4..b64889294c93 100644 --- a/cad/openvsp/Makefile +++ b/cad/openvsp/Makefile @@ -30,9 +30,8 @@ BUILD_DEPENDS= ${LOCALBASE}/lib/libopenNURBS.a:graphics/opennurbs \ ${LOCALBASE}/include/glm/glm.hpp:math/glm \ ${LOCALBASE}/libdata/pkgconfig/pthread-stubs.pc:devel/libpthread-stubs -USES= compiler:c++11-lang cmake:outsource,noninja localbase\ +USES= compiler:c++11-lang cmake:noninja localbase\ gl gnome jpeg - USE_GITHUB= yes GH_PROJECT= OpenVSP GH_ACCOUNT= ${GH_PROJECT} diff --git a/cad/stepcode/Makefile b/cad/stepcode/Makefile index 6806108648c6..9257cfb089e6 100644 --- a/cad/stepcode/Makefile +++ b/cad/stepcode/Makefile @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING BROKEN_powerpc64= fails to configure: Schema scan for 15926-0002-lifecycle_integration.exp exited with error code 1 -USES= cmake:outsource compiler:c++11-lang +USES= cmake compiler:c++11-lang USE_GITHUB= yes USE_LDCONFIG= yes CMAKE_ARGS+= -DSC_INSTALL_PREFIX=${PREFIX} \ diff --git a/chinese/ibus-table-chinese/Makefile b/chinese/ibus-table-chinese/Makefile index 1c3dab70c8a4..2057b7227670 100644 --- a/chinese/ibus-table-chinese/Makefile +++ b/chinese/ibus-table-chinese/Makefile @@ -17,7 +17,7 @@ BUILD_DEPENDS= ${LOCALBASE}/share/cmake/Modules/ManageEnvironment.cmake:devel/cm RUN_DEPENDS= ibus-daemon:textproc/ibus \ ${LOCALBASE}/libexec/ibus-engine-table:textproc/ibus-table -USES= cmake:noninja pkgconfig +USES= cmake:insource,noninja pkgconfig USE_GITHUB= yes GH_ACCOUNT= definite diff --git a/chinese/qterm/Makefile b/chinese/qterm/Makefile index 0f45f7e4c313..58896a74d686 100644 --- a/chinese/qterm/Makefile +++ b/chinese/qterm/Makefile @@ -10,6 +10,7 @@ MASTER_SITES= SF/qterm/qterm/${PORTVERSION} MAINTAINER= kaiwang27@gmail.com COMMENT= BBS client for BSD/Linux +USES= qt:4 tar:bzip2 cmake:insource perl5 DEPRECATED= Qt4 has been EOL since december 2015 EXPIRATION_DATE= 2019-03-15 diff --git a/comms/airspy/Makefile b/comms/airspy/Makefile index 525048e7cb6e..57e78d275861 100644 --- a/comms/airspy/Makefile +++ b/comms/airspy/Makefile @@ -16,7 +16,7 @@ LICENSE_FILE= ${WRKSRC}/airspy-tools/LICENSE.md BROKEN_aarch64= fails to compile: invalid conversion between vector type '__m64' and integer type 'int' BROKEN_powerpc64= fails to build: iqconverter_float.c:45:23: error: immintrin.h: No such file or directory -USES= cmake:outsource pkgconfig +USES= cmake pkgconfig USE_GITHUB= yes GH_PROJECT= airspyone_host USE_LDCONFIG= yes diff --git a/comms/freedv/Makefile b/comms/freedv/Makefile index 3e6f224442a7..291ec1f3c36d 100644 --- a/comms/freedv/Makefile +++ b/comms/freedv/Makefile @@ -20,7 +20,7 @@ LIB_DEPENDS= libcodec2.so:audio/codec2 \ libspeex.so:audio/speex \ libspeexdsp.so:audio/speexdsp -USES= cmake:outsource compiler:c++11-lib tar:xz +USES= cmake compiler:c++11-lib tar:xz USE_WX= 3.0+ CMAKE_ARGS+= -DCODEC2_INCLUDE_DIRS=${LOCALBASE}/include/codec2 \ -DCODEC2_LIBRARY=${LOCALBASE}/lib/libcodec2.so \ diff --git a/comms/gammu/Makefile b/comms/gammu/Makefile index ff12d1072096..6029153a9dc9 100644 --- a/comms/gammu/Makefile +++ b/comms/gammu/Makefile @@ -18,7 +18,7 @@ LIB_DEPENDS= libcurl.so:ftp/curl CMAKE_ARGS= -DINSTALL_LIBDATA_DIR:PATH=${PREFIX}/libdata \ -DINSTALL_MAN_DIR:PATH=${PREFIX}/man -USES= cmake:outsource compiler:c++11-lang gettext iconv pkgconfig shebangfix tar:xz +USES= cmake compiler:c++11-lang gettext iconv pkgconfig shebangfix tar:xz SHEBANG_FILES= utils/jadmaker utils/gammu-config bash_CMD= /bin/sh USE_GNOME= glib20 diff --git a/comms/gnuradio/Makefile b/comms/gnuradio/Makefile index 60e6fa2de11a..83feccfc73ba 100644 --- a/comms/gnuradio/Makefile +++ b/comms/gnuradio/Makefile @@ -51,7 +51,7 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} # volk/lib/volk_cpu.c: In function 'i_can_has_3dnow': # volk/lib/volk_cpu.c:62: error: can't find a register in class 'BREG' while reloading 'asm' # volk/lib/volk_cpu.c:62: error: 'asm' operand has impossible constraints -USES= cmake:outsource compiler:c11 fortran iconv perl5 pkgconfig pyqt:4 python:2.7 qt:4 shebangfix +USES= cmake compiler:c11 fortran iconv perl5 pkgconfig pyqt:4 python:2.7 qt:4 shebangfix SHEBANG_FILES= grc/scripts/freedesktop/grc_setup_freedesktop.in \ gnuradio-runtime/python/gnuradio/ctrlport/gr-ctrlport-monitor \ gnuradio-runtime/python/gnuradio/ctrlport/gr-perf-monitorx diff --git a/comms/hackrf/Makefile b/comms/hackrf/Makefile index 75ea8aedf473..c473befa075a 100644 --- a/comms/hackrf/Makefile +++ b/comms/hackrf/Makefile @@ -14,7 +14,7 @@ USE_GITHUB= YES GH_ACCOUNT= mossmann GH_TAGNAME= 31a37bd -USES= cmake:outsource +USES= cmake CMAKE_SOURCE_PATH= ${WRKSRC}/host CMAKE_ARGS= -DLIBUSB_LIBRARIES=/usr/lib/libusb.so diff --git a/comms/kremotecontrol-kde4/Makefile b/comms/kremotecontrol-kde4/Makefile index 33d48bc2cc0b..57765eab18d1 100644 --- a/comms/kremotecontrol-kde4/Makefile +++ b/comms/kremotecontrol-kde4/Makefile @@ -13,7 +13,7 @@ EXPIRATION_DATE= 2018-12-31 RUN_DEPENDS= lircd:comms/lirc -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= automoc4 kdelibs USE_QT= corelib script xmlpatterns \ qmake_build moc_build rcc_build uic_build diff --git a/comms/libbtbb/Makefile b/comms/libbtbb/Makefile index 17313fa31c7d..beb08c62f7b0 100644 --- a/comms/libbtbb/Makefile +++ b/comms/libbtbb/Makefile @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= ${PYNUMPY} -USES= cmake:outsource \ +USES= cmake \ python:2.7,build USE_GITHUB= yes diff --git a/comms/multimon-ng/Makefile b/comms/multimon-ng/Makefile index 3e531564a22a..9c4ccc2678ed 100644 --- a/comms/multimon-ng/Makefile +++ b/comms/multimon-ng/Makefile @@ -13,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING USE_GITHUB= yes GH_ACCOUNT= EliasOenal -USES= cmake +USES= cmake:insource OPTIONS_DEFINE= PULSEAUDIO X11 diff --git a/comms/openobex/Makefile b/comms/openobex/Makefile index d6541812ed9b..b9efced8f964 100644 --- a/comms/openobex/Makefile +++ b/comms/openobex/Makefile @@ -10,7 +10,7 @@ MAINTAINER= madpilot@FreeBSD.org COMMENT= Open source implementation of the OBEX protocol USE_LDCONFIG= yes -USES= cmake dos2unix +USES= cmake:insource dos2unix DOS2UNIX_FILES= CMakeLists.txt CMAKE_ARGS+= -DPKGCONFIG_INSTALL_DIR:STRING="${PREFIX}/libdata/pkgconfig" diff --git a/comms/sdr-wspr/Makefile b/comms/sdr-wspr/Makefile index 07a73c112d73..243b4e3758f6 100644 --- a/comms/sdr-wspr/Makefile +++ b/comms/sdr-wspr/Makefile @@ -17,7 +17,7 @@ LIB_DEPENDS= libsdr-gui.so:comms/libsdr-gui USE_GITHUB= yes GH_ACCOUNT= hmatuschek USE_QT= core buildtools_build qmake webkit widgets -USES= cmake:outsource compiler:gcc-c++11-lib fortran pkgconfig qt:5 +USES= cmake compiler:gcc-c++11-lib fortran pkgconfig qt:5 PLIST_FILES= bin/sdr-wspr share/applications/sdr-wspr.desktop \ share/icons/sdr-wspr.svg diff --git a/comms/ubertooth/Makefile b/comms/ubertooth/Makefile index 7296efa5e531..bc1ab7dfd6e4 100644 --- a/comms/ubertooth/Makefile +++ b/comms/ubertooth/Makefile @@ -17,7 +17,7 @@ LIB_DEPENDS= libpyside-python2.7.so:devel/pyside \ BUILD_DEPENDS= ${PYNUMPY} -USES= cmake:outsource \ +USES= cmake \ python USE_GITHUB= yes diff --git a/comms/uhd/Makefile b/comms/uhd/Makefile index 73df45c02d23..3415799f0a99 100644 --- a/comms/uhd/Makefile +++ b/comms/uhd/Makefile @@ -33,7 +33,7 @@ BROKEN_FreeBSD_13_armv6= fails to configure: Could not find standard set_new_han BROKEN_FreeBSD_13_armv7= fails to configure: Could not find standard set_new_handler function BROKEN_powerpc64= fails to link: undefined reference to boost function -USES= compiler:c++11-lib cmake:outsource ncurses pkgconfig \ +USES= compiler:c++11-lib cmake ncurses pkgconfig \ dos2unix python:2.7 shebangfix USE_LDCONFIG= yes CMAKE_SOURCE_PATH= ${WRKSRC}/host diff --git a/converters/osm2pgrouting/Makefile b/converters/osm2pgrouting/Makefile index 09e9a26ff4a1..b7ae1ec0fe38 100644 --- a/converters/osm2pgrouting/Makefile +++ b/converters/osm2pgrouting/Makefile @@ -16,7 +16,7 @@ LIB_DEPENDS= libboost_system.so:devel/boost-libs \ libexpat.so:textproc/expat2 \ libpqxx.so:databases/postgresql-libpqxx -USES= cmake:outsource compiler:c++11-lang pgsql +USES= cmake compiler:c++11-lang pgsql USE_GITHUB= yes GH_ACCOUNT= pgRouting WANT_PGSQL= client diff --git a/converters/osm2pgsql/Makefile b/converters/osm2pgsql/Makefile index 9369ab5594fc..da79c81a4106 100644 --- a/converters/osm2pgsql/Makefile +++ b/converters/osm2pgsql/Makefile @@ -21,7 +21,7 @@ BROKEN_powerpc64= fails to compile: node-ram-cache.hpp: cstdint: No such file or USE_GITHUB= yes GH_ACCOUNT= openstreetmap -USES= cmake:outsource lua:53 pgsql +USES= cmake lua:53 pgsql PLIST_FILES= bin/osm2pgsql \ man/man1/osm2pgsql.1.gz diff --git a/databases/akonadi-kde4/Makefile b/databases/akonadi-kde4/Makefile index f6eca2df671b..5c86a50038e7 100644 --- a/databases/akonadi-kde4/Makefile +++ b/databases/akonadi-kde4/Makefile @@ -21,7 +21,7 @@ LIB_DEPENDS= libboost_thread.so:devel/boost-libs # Let process generate meaningful backtrace on core dump. BUILD_DEPENDS= xsltproc:textproc/libxslt -USES= cmake:outsource kde:4 qt:4 shared-mime-info \ +USES= cmake kde:4 qt:4 shared-mime-info \ compiler:c++11-lang pathfix tar:bzip2 USE_KDE= automoc4 soprano USE_QT= corelib dbus gui network qtestlib_build sql xml \ diff --git a/databases/akonadi/Makefile b/databases/akonadi/Makefile index eff73aebe307..6c46752317e6 100644 --- a/databases/akonadi/Makefile +++ b/databases/akonadi/Makefile @@ -15,7 +15,7 @@ BUILD_DEPENDS= xsltproc:textproc/libxslt CONFLICTS= akonadi-[0-9]* akonadi-kf5-git-[0-9]* -USES= cmake:outsource compiler:c++11-lib gettext kde:5 \ +USES= cmake compiler:c++11-lib gettext kde:5 \ qt:5 shared-mime-info tar:xz USE_GNOME= libxml2 USE_KDE= auth codecs completion config configwidgets coreaddons crash \ diff --git a/databases/arangodb32/Makefile b/databases/arangodb32/Makefile index 39fd410d3278..39da67092ca8 100644 --- a/databases/arangodb32/Makefile +++ b/databases/arangodb32/Makefile @@ -16,7 +16,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE ONLY_FOR_ARCHS= amd64 ONLY_FOR_ARCHS_REASON= "Only builds on amd64" -USES= gmake ssl cmake:outsource,noninja python:2.7 compiler +USES= gmake ssl cmake:noninja python:2.7 compiler USE_GITHUB= yes CMAKE_ARGS= -DUSE_JEMALLOC:BOOL=off \ diff --git a/databases/arangodb33/Makefile b/databases/arangodb33/Makefile index 5dc0e6923efe..f15df379daa2 100644 --- a/databases/arangodb33/Makefile +++ b/databases/arangodb33/Makefile @@ -19,7 +19,7 @@ ONLY_FOR_ARCHS_REASON= "Only builds on amd64: https://github.com/arangodb/arango CONFLICTS_INSTALL= arangodb32 CONFLICTS_BUILD= v8 -USES= cmake:outsource,noninja compiler gmake python:2.7 ssl # ninja: error: loading 'build.ninja': No such file or directory +USES= cmake:noninja compiler gmake python:2.7 ssl # ninja: error: loading 'build.ninja': No such file or directory USE_GITHUB= yes CMAKE_OFF= USE_JEMALLOC diff --git a/databases/cassandra-cpp-driver/Makefile b/databases/cassandra-cpp-driver/Makefile index 6c94989fa436..c8efb184653a 100644 --- a/databases/cassandra-cpp-driver/Makefile +++ b/databases/cassandra-cpp-driver/Makefile @@ -13,13 +13,15 @@ LICENSE= APACHE20 LIB_DEPENDS= libuv.so:devel/libuv -USES= cmake:outsource compiler:c++11-lang pkgconfig pathfix ssl +USES= cmake compiler:c++11-lang pkgconfig pathfix ssl USE_LDCONFIG= yes USE_GITHUB= yes GH_ACCOUNT= datastax GH_PROJECT= cpp-driver -CMAKE_ARGS= -DCMAKE_INSTALL_LIBDIR:STRING=lib -DCASS_BUILD_STATIC:BOOL=ON +USES= cmake pkgconfig pathfix ssl +CMAKE_ARGS= -DCMAKE_INSTALL_LIBDIR:STRING=lib \ + -DCASS_BUILD_STATIC:BOOL=ON PLIST_FILES= include/cassandra.h \ lib/libcassandra.so \ diff --git a/databases/clickhouse/Makefile b/databases/clickhouse/Makefile index c174d098d4bd..9934ff75c245 100644 --- a/databases/clickhouse/Makefile +++ b/databases/clickhouse/Makefile @@ -35,7 +35,7 @@ LIB_DEPENDS= libtcmalloc.so:devel/google-perftools \ libcpuid.so:sysutils/libcpuid \ libgtest.so:devel/googletest -USES= compiler:c++14-lang cmake iconv mysql ssl readline shebangfix +USES= compiler:c++14-lang cmake:insource iconv mysql ssl readline shebangfix USE_LDCONFIG= yes CMAKE_ARGS= -DUNBUNDLED=1 \ diff --git a/databases/cppdb/Makefile b/databases/cppdb/Makefile index 0a6abbf4a660..e1738511bc80 100644 --- a/databases/cppdb/Makefile +++ b/databases/cppdb/Makefile @@ -41,7 +41,7 @@ SQLITE3_INTERNAL_DESC= Link SQLite 3 backend into CppDB SQLITE3_MODULE_DESC= Build SQLite 3 backend as a CppDB module USE_LDCONFIG= yes -USES= cmake:outsource tar:bzip2 +USES= cmake tar:bzip2 .include <bsd.port.options.mk> diff --git a/databases/iowow/Makefile b/databases/iowow/Makefile index a056b5682422..d9da8003227d 100644 --- a/databases/iowow/Makefile +++ b/databases/iowow/Makefile @@ -12,7 +12,7 @@ COMMENT= Persistent key-value database engine LICENSE= MIT -USES= cmake:outsource compiler:c11 +USES= cmake compiler:c11 USE_GITHUB= yes GH_ACCOUNT= Softmotions USE_LDCONFIG= yes diff --git a/databases/kdb/Makefile b/databases/kdb/Makefile index 8184e5803320..1ad6f545ba5f 100644 --- a/databases/kdb/Makefile +++ b/databases/kdb/Makefile @@ -12,7 +12,7 @@ COMMENT= Database connectivity and creation framework LIB_DEPENDS= libicuuc.so:devel/icu -USES= cmake:outsource compiler:c++11-lang gettext kde:5 \ +USES= cmake compiler:c++11-lang gettext kde:5 \ python:2.7 qt:5 tar:xz USE_KDE= coreaddons ecm i18n USE_QT= core gui network widgets xml \ diff --git a/databases/kexi/Makefile b/databases/kexi/Makefile index 588ff27f2555..51412ce3e593 100644 --- a/databases/kexi/Makefile +++ b/databases/kexi/Makefile @@ -14,7 +14,7 @@ LIB_DEPENDS= libKDb3.so:databases/kdb \ libKPropertyCore3.so:x11-toolkits/kproperty \ libKReport3.so:textproc/kreport -USES= cmake:outsource desktop-file-utils gettext iconv \ +USES= cmake desktop-file-utils gettext iconv \ kde:5 pkgconfig qt:5 tar:xz USE_GNOME= glib20 USE_KDE= auth bookmarks codecs completion config \ diff --git a/databases/mariadb-connector-c/Makefile b/databases/mariadb-connector-c/Makefile index 639c475d31e7..03bba229a543 100644 --- a/databases/mariadb-connector-c/Makefile +++ b/databases/mariadb-connector-c/Makefile @@ -27,7 +27,7 @@ CONFLICTS_INSTALL= mariadb[0-9]*-client-* \ mysql[0-9]*-client-* \ percona[0-9]*-client-* -USES= cmake compiler:c++11-lib iconv:translit ssl +USES= cmake:insource compiler:c++11-lib iconv:translit ssl USE_LDCONFIG= ${PREFIX}/lib/mariadb SITESDIR= mariadb/connector-c-${PORTVERSION} DOCSDIR= ${PREFIX}/share/doc/mysql diff --git a/databases/mariadb-connector-odbc/Makefile b/databases/mariadb-connector-odbc/Makefile index 7a79129a9ade..d12519c117f9 100644 --- a/databases/mariadb-connector-odbc/Makefile +++ b/databases/mariadb-connector-odbc/Makefile @@ -23,7 +23,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libodbc.so:databases/unixODBC \ libmariadb.so:databases/mariadb-connector-c -USES= cmake +USES= cmake:insource USE_LDCONFIG= ${PREFIX}/lib/mariadbconnector-odbc SITESDIR= ${PORTNAME}/${PKGNAMESUFFIX:S/^-//}-${PORTVERSION:S/.b$//} DOCSDIR= ${PREFIX}/share/doc/mysql diff --git a/databases/mariadb100-server/Makefile b/databases/mariadb100-server/Makefile index f814ee4deb6d..2c1e004b78a9 100644 --- a/databases/mariadb100-server/Makefile +++ b/databases/mariadb100-server/Makefile @@ -31,7 +31,7 @@ BROKEN_SSL_REASON_openssl111= Does not support OpenSSL 1.1, use MariaDB 10.2 or SUB_FILES= pkg-message SLAVEDIRS= databases/mariadb100-client -USES= bison:build cmake:noninja compiler:c++11-lib cpe \ +USES= bison:build cmake:insource,noninja compiler:c++11-lib cpe \ ncurses shebangfix ssl USE_LDCONFIG= ${PREFIX}/lib/mysql ${PREFIX}/lib/mysql/plugin SHEBANG_FILES= scripts/*.sh diff --git a/databases/mariadb101-server/Makefile b/databases/mariadb101-server/Makefile index 874a72260269..600298b8d373 100644 --- a/databases/mariadb101-server/Makefile +++ b/databases/mariadb101-server/Makefile @@ -28,7 +28,7 @@ BROKEN_SSL_REASON_openssl111= Does not support OpenSSL 1.1, use MariaDB 10.2 or SUB_FILES= pkg-message SLAVEDIRS= databases/mariadb101-client -USES= bison:build cmake:noninja compiler:c++11-lib cpe libedit ncurses \ +USES= bison:build cmake:insource,noninja compiler:c++11-lib cpe libedit ncurses \ shebangfix ssl USE_LDCONFIG= ${PREFIX}/lib/mysql SHEBANG_FILES= scripts/*.sh diff --git a/databases/mariadb102-server/Makefile b/databases/mariadb102-server/Makefile index 57a0540f9480..ccb2d701b1e7 100644 --- a/databases/mariadb102-server/Makefile +++ b/databases/mariadb102-server/Makefile @@ -25,7 +25,7 @@ LICENSE_PERMS_PerconaFT= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept SUB_FILES= pkg-message SLAVEDIRS= databases/mariadb102-client -USES= bison:build cmake:noninja compiler:c++11-lib cpe iconv:translit libedit ncurses shebangfix ssl +USES= bison:build cmake:insource,noninja compiler:c++11-lib cpe iconv:translit libedit ncurses shebangfix ssl USE_LDCONFIG= ${PREFIX}/lib/mysql SHEBANG_FILES= scripts/*.sh storage/rocksdb/myrocks_hotbackup SITESDIR= mariadb/mariadb-${PORTVERSION}/source diff --git a/databases/mariadb103-server/Makefile b/databases/mariadb103-server/Makefile index ff9c2d708a3f..c9bfbb0cfea0 100644 --- a/databases/mariadb103-server/Makefile +++ b/databases/mariadb103-server/Makefile @@ -27,7 +27,7 @@ SUB_FILES= pkg-message PKGMESSAGE= ${WRKDIR}/pkg-message SLAVEDIRS= databases/mariadb102-client -USES= bison:build cmake:noninja compiler:c++11-lib cpe iconv:translit libedit ncurses shebangfix ssl +USES= bison:build cmake:insource,noninja compiler:c++11-lib cpe iconv:translit libedit ncurses shebangfix ssl USE_LDCONFIG= ${PREFIX}/lib/mysql SHEBANG_FILES= scripts/*.sh storage/rocksdb/myrocks_hotbackup SITESDIR= mariadb/mariadb-${PORTVERSION}/source diff --git a/databases/mariadb55-server/Makefile b/databases/mariadb55-server/Makefile index 4040b7edf4a2..4f9a17d749b4 100644 --- a/databases/mariadb55-server/Makefile +++ b/databases/mariadb55-server/Makefile @@ -23,7 +23,7 @@ LICENSE= GPLv2 SUB_FILES= pkg-message SLAVEDIRS= databases/mariadb55-client -USES+= cmake:noninja shebangfix ssl +USES+= cmake:insource,noninja shebangfix ssl USE_LDCONFIG= ${PREFIX}/lib/mysql SHEBANG_FILES= scripts/*.sh sql-bench/[a-km-z]* diff --git a/databases/mydumper/Makefile b/databases/mydumper/Makefile index da6d951893c7..7702bfb24323 100644 --- a/databases/mydumper/Makefile +++ b/databases/mydumper/Makefile @@ -15,7 +15,7 @@ LIB_DEPENDS= libpcre.so:devel/pcre CMAKE_OFF= BUILD_DOCS WITH_BINLOG USE_GNOME= glib20 -USES= cmake gnome mysql pkgconfig +USES= cmake:insource gnome mysql pkgconfig PLIST_FILES= sbin/mydumper sbin/myloader diff --git a/databases/mysql-connector-c++/Makefile b/databases/mysql-connector-c++/Makefile index be23c0179789..c35557727230 100644 --- a/databases/mysql-connector-c++/Makefile +++ b/databases/mysql-connector-c++/Makefile @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libboost_regex.so:devel/boost-libs -USES= cmake:outsource compiler:c++11-lang mysql ssl +USES= cmake compiler:c++11-lang mysql ssl USE_LDCONFIG= yes CMAKE_ARGS= -DDOC_DESTINATION="${DOCSDIR}" -DCMAKE_ENABLE_C++11=ON diff --git a/databases/mysql-connector-c/Makefile b/databases/mysql-connector-c/Makefile index 1ebcfa4eded7..87f41b850b39 100644 --- a/databases/mysql-connector-c/Makefile +++ b/databases/mysql-connector-c/Makefile @@ -16,7 +16,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING BROKEN_SSL= openssl111 BROKEN_SSL_REASON_openssl111= variable has incomplete type 'EVP_CIPHER_CTX' (aka 'evp_cipher_ctx_st') -USES= cmake:outsource compiler:features mysql ssl +USES= cmake compiler:features mysql ssl CMAKE_ARGS+= -DOPENSSL_INCLUDE_DIR="${OPENSSLINC}" USE_LDCONFIG= ${PREFIX}/lib/${PORTNAME} diff --git a/databases/mysql55-server/Makefile b/databases/mysql55-server/Makefile index 3c6fa424f32e..5424e4838425 100644 --- a/databases/mysql55-server/Makefile +++ b/databases/mysql55-server/Makefile @@ -14,7 +14,7 @@ COMMENT?= Multithreaded SQL database (server) LICENSE= GPLv2 SLAVEDIRS= databases/mysql55-client -USES= cmake:noninja readline shebangfix +USES= cmake:insource,noninja readline shebangfix CXXFLAGS+= ${CPPFLAGS} NO_OPTIONS_SORT=yes diff --git a/databases/mysql56-server/Makefile b/databases/mysql56-server/Makefile index 9e17f35e6e49..6bd4189a4ad8 100644 --- a/databases/mysql56-server/Makefile +++ b/databases/mysql56-server/Makefile @@ -14,7 +14,7 @@ COMMENT?= Multithreaded SQL database (server) LICENSE= GPLv2 SLAVEDIRS= databases/mysql56-client -USES= bison:build cmake:outsource,noninja compiler:c11 compiler:c++11-lib \ +USES= bison:build cmake:noninja compiler:c11 compiler:c++11-lib \ cpe libedit localbase perl5 shebangfix ssl USE_PERL5= run diff --git a/databases/mysql57-server/Makefile b/databases/mysql57-server/Makefile index e2c28806b1f5..c460abb18d81 100644 --- a/databases/mysql57-server/Makefile +++ b/databases/mysql57-server/Makefile @@ -17,7 +17,7 @@ LICENSE= GPLv2 WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} SLAVEDIRS= databases/mysql57-client -USES= bison:build cmake:outsource,noninja compiler:c11 compiler:c++11-lib \ +USES= bison:build cmake:noninja compiler:c11 compiler:c++11-lib \ cpe libedit localbase perl5 shebangfix ssl USE_PERL5= run diff --git a/databases/mysql80-server/Makefile b/databases/mysql80-server/Makefile index 35e3ea9e6cf1..de3cd36c81ef 100644 --- a/databases/mysql80-server/Makefile +++ b/databases/mysql80-server/Makefile @@ -17,7 +17,7 @@ LICENSE= GPLv2 WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}${DISTVERSIONSUFFIX} SLAVEDIRS= databases/mysql80-client -USES= bison:build cmake:outsource,noninja compiler:c++14-lang \ +USES= bison:build cmake:noninja compiler:c++14-lang \ compiler:c++14-lib cpe libedit localbase perl5 shebangfix ssl USE_PERL5= run diff --git a/databases/mysqlwsrep56-server/Makefile b/databases/mysqlwsrep56-server/Makefile index 97178d8a1908..e9d2ccb93f48 100644 --- a/databases/mysqlwsrep56-server/Makefile +++ b/databases/mysqlwsrep56-server/Makefile @@ -30,7 +30,7 @@ DATADIR= ${PREFIX}/share/mysql ETCDIR= ${PREFIX}/etc/mysql USES= bison \ - cmake:outsource,noninja \ + cmake:noninja \ compiler:c++11-lib \ compiler:c11 \ libedit \ diff --git a/databases/mysqlwsrep57-server/Makefile b/databases/mysqlwsrep57-server/Makefile index e6055b0a9ea0..7217b6ab6b48 100644 --- a/databases/mysqlwsrep57-server/Makefile +++ b/databases/mysqlwsrep57-server/Makefile @@ -23,7 +23,7 @@ RUN_DEPENDS= bash:shells/bash \ LIB_DEPENDS= libevent.so:devel/libevent liblz4.so:archivers/liblz4 USES= bison \ - cmake:outsource,noninja \ + cmake:noninja \ compiler:c++11-lib \ compiler:c11 \ libedit \ diff --git a/databases/opendbviewer/Makefile b/databases/opendbviewer/Makefile index ca520924ba6d..4930d610e0b0 100644 --- a/databases/opendbviewer/Makefile +++ b/databases/opendbviewer/Makefile @@ -13,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= convert:graphics/ImageMagick6 -USES= cmake:outsource compiler:c++11-lang qt:5 +USES= cmake compiler:c++11-lang qt:5 USE_GITHUB= yes GH_ACCOUNT= Jet1oeil USE_QT= core gui network sql sql-sqlite3 testlib widgets \ diff --git a/databases/percona55-server/Makefile b/databases/percona55-server/Makefile index 346ae5e76222..987cf16aadf9 100644 --- a/databases/percona55-server/Makefile +++ b/databases/percona55-server/Makefile @@ -15,7 +15,7 @@ LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING SLAVEDIRS= databases/percona55-client -USES= bison cmake:noninja readline shebangfix +USES= bison cmake:insource,noninja readline shebangfix USE_CXXSTD= gnu++98 CXXFLAGS+= ${CPPFLAGS} diff --git a/databases/percona56-server/Makefile b/databases/percona56-server/Makefile index c3b8fc82e35f..ddf254632e83 100644 --- a/databases/percona56-server/Makefile +++ b/databases/percona56-server/Makefile @@ -19,7 +19,7 @@ BROKEN_armv7= fails to compile: sql/mysqld.cc:198:19: error: cannot combine wit SLAVEDIRS= databases/percona56-client \ databases/percona-pam-for-mysql -USES= bison compiler:c++11-lang cmake:noninja perl5 shebangfix +USES= bison compiler:c++11-lang cmake:insource,noninja perl5 shebangfix OPTIONS_DEFINE= OPENSSL FASTMTX INNODBMEMCACHED TOKUDB OPTIONS_DEFAULT= OPENSSL INNODBMEMCACHED diff --git a/databases/percona57-server/Makefile b/databases/percona57-server/Makefile index b0c2d6127c23..e7cf8d6a986b 100644 --- a/databases/percona57-server/Makefile +++ b/databases/percona57-server/Makefile @@ -24,7 +24,7 @@ BROKEN_powerpc64= Does not build SLAVEDIRS= databases/percona57-client \ databases/percona57-pam-for-mysql -USES= bison:build cmake:noninja compiler:c11 compiler:c++11-lib \ +USES= bison:build cmake:insource,noninja compiler:c11 compiler:c++11-lib \ cpe libedit localbase perl5 shebangfix MY_DBDIR= /var/db/mysql diff --git a/databases/pgagent/Makefile b/databases/pgagent/Makefile index 43631161950b..e46bae106d6f 100644 --- a/databases/pgagent/Makefile +++ b/databases/pgagent/Makefile @@ -11,7 +11,7 @@ DISTNAME= pgAgent-${PORTVERSION}-Source MAINTAINER= fjoe@FreeBSD.org COMMENT= Job scheduler for PostgreSQL -USES= cmake dos2unix pgsql +USES= cmake:insource dos2unix pgsql DOS2UNIX_GLOB= *.txt CMAKE_ARGS= -DSTATIC_BUILD:BOOL=NO -DWX_CONFIG_PATH:FILEPATH="${WX_CONFIG}" USE_WX= 2.8 diff --git a/databases/pgrouting/Makefile b/databases/pgrouting/Makefile index e0f319c97dca..c7661568011c 100644 --- a/databases/pgrouting/Makefile +++ b/databases/pgrouting/Makefile @@ -18,7 +18,7 @@ LIB_DEPENDS= libboost_system.so:devel/boost-libs\ libgmp.so:math/gmp RUN_DEPENDS= ${LOCALBASE}/share/postgresql/contrib/postgis-2.2/postgis.sql:databases/postgis22 -USES= compiler:c++11-lib cmake:outsource localbase pgsql:9.1+ pkgconfig +USES= compiler:c++11-lib cmake localbase pgsql:9.1+ pkgconfig USE_LDCONFIG= yes USE_GITHUB= yes GH_ACCOUNT= pgRouting diff --git a/databases/timescaledb/Makefile b/databases/timescaledb/Makefile index 9d5a45328449..4ef2c5955fe3 100644 --- a/databases/timescaledb/Makefile +++ b/databases/timescaledb/Makefile @@ -11,7 +11,7 @@ COMMENT= Time-series database built on PostgreSQL LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE-APACHE -USES= compiler:c11 cmake:outsource pgsql:9.6,10,11 ssl +USES= compiler:c11 cmake pgsql:9.6,10,11 ssl USE_GITHUB= YES GH_ACCOUNT= timescale diff --git a/databases/xrootd/Makefile b/databases/xrootd/Makefile index d0e28813ee43..14b3cfab61e3 100644 --- a/databases/xrootd/Makefile +++ b/databases/xrootd/Makefile @@ -20,7 +20,7 @@ LICENSE_FILE_LGPL3= ${WRKSRC}/COPYING.LGPL BUILD_DEPENDS= bash:shells/bash LIB_DEPENDS= librados.so:net/ceph -USES= cmake:outsource gnome localbase:ldflags pkgconfig readline shebangfix ssl +USES= cmake gnome localbase:ldflags pkgconfig readline shebangfix ssl SHEBANG_GLOB= *.sh USE_GNOME= libxml2 USE_LDCONFIG= yes diff --git a/deskutils/akonadi-calendar-tools/Makefile b/deskutils/akonadi-calendar-tools/Makefile index 11d5403d4eeb..bc7a3df7004e 100644 --- a/deskutils/akonadi-calendar-tools/Makefile +++ b/deskutils/akonadi-calendar-tools/Makefile @@ -9,7 +9,7 @@ COMMENT= CLI tools to manage akonadi calendars LIB_DEPENDS= libical.so:devel/libical -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash ecm guiaddons i18n iconthemes itemmodels \ itemviews jobwidgets kdelibs4support kio notifications parts \ diff --git a/deskutils/akonadi-import-wizard/Makefile b/deskutils/akonadi-import-wizard/Makefile index 3463864e350d..ec57e3585aeb 100644 --- a/deskutils/akonadi-import-wizard/Makefile +++ b/deskutils/akonadi-import-wizard/Makefile @@ -13,7 +13,7 @@ LIB_DEPENDS= libassuan.so:security/libassuan \ libgpgmepp.so:security/gpgme-cpp \ libqgpgme.so:security/gpgme-qt5 -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= archive auth codecs completion config configwidgets coreaddons \ crash dbusaddons ecm i18n itemmodels kio service wallet \ widgetsaddons xmlgui diff --git a/deskutils/akonadiconsole/Makefile b/deskutils/akonadiconsole/Makefile index 74392a9cec3a..40b3013e284a 100644 --- a/deskutils/akonadiconsole/Makefile +++ b/deskutils/akonadiconsole/Makefile @@ -17,7 +17,7 @@ LIB_DEPENDS= libassuan.so:security/libassuan \ libical.so:devel/libical \ libxapian.so:databases/xapian-core -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons ecm guiaddons i18n iconthemes \ itemmodels itemviews jobwidgets kdelibs4support kio \ diff --git a/deskutils/akregator/Makefile b/deskutils/akregator/Makefile index 5088d5bd6b08..9a9bb106c989 100644 --- a/deskutils/akregator/Makefile +++ b/deskutils/akregator/Makefile @@ -15,7 +15,7 @@ LIB_DEPENDS= libassuan.so:security/libassuan \ libgpgmepp.so:security/gpgme-cpp \ libqgpgme.so:security/gpgme-qt5 -USES= cmake:outsource compiler:c++11-lib gettext grantlee:5 kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext grantlee:5 kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons crash \ ecm i18n iconthemes itemmodels jobwidgets kcmutils kio \ notifications notifyconfig parts service sonnet texteditor\ diff --git a/deskutils/belcard/Makefile b/deskutils/belcard/Makefile index 2b31bad1bb49..779900bd420a 100644 --- a/deskutils/belcard/Makefile +++ b/deskutils/belcard/Makefile @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libbctoolbox.so:net/bctoolbox \ libbelr.so:textproc/belr -USES= cmake:outsource compiler:c++11-lib +USES= cmake compiler:c++11-lib USE_LDCONFIG= yes CMAKE_ARGS= -DENABLE_STATIC=NO -DENABLE_STRICT=NO -DENABLE_UNIT_TESTS=NO diff --git a/deskutils/charmtimetracker/Makefile b/deskutils/charmtimetracker/Makefile index eed093a01ebf..334299314f85 100644 --- a/deskutils/charmtimetracker/Makefile +++ b/deskutils/charmtimetracker/Makefile @@ -18,7 +18,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libqt5keychain.so:security/qtkeychain@qt5 -USES= cmake:outsource compiler:c++11-lib pkgconfig qt:5 +USES= cmake compiler:c++11-lib pkgconfig qt:5 CMAKE_ARGS= -DCharm_VERSION:STRING=${PORTVERSION} USE_GITHUB= yes diff --git a/deskutils/copyq/Makefile b/deskutils/copyq/Makefile index d6893d33aab4..2b977a88837c 100644 --- a/deskutils/copyq/Makefile +++ b/deskutils/copyq/Makefile @@ -11,7 +11,7 @@ COMMENT= Qt5 based clipboard manager LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/LICENSE -USES= cmake:outsource qt:5 +USES= cmake qt:5 USE_XORG= ice sm x11 xext xfixes xtst USE_QT= core gui network script svg widgets x11extras xml \ buildtools_build linguist_build qmake_build \ diff --git a/deskutils/go-for-it/Makefile b/deskutils/go-for-it/Makefile index ebe84e6b0f6f..150b4ce831b3 100644 --- a/deskutils/go-for-it/Makefile +++ b/deskutils/go-for-it/Makefile @@ -13,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= valac:lang/vala LIB_DEPENDS= libnotify.so:devel/libnotify -USES= cmake:outsource gettext pkgconfig +USES= cmake gettext pkgconfig GNU_CONFIGURE= yes USE_GITHUB= yes GH_ACCOUNT= JMoerman diff --git a/deskutils/grantlee-editor/Makefile b/deskutils/grantlee-editor/Makefile index 641153b58435..7f3d5339bf8f 100644 --- a/deskutils/grantlee-editor/Makefile +++ b/deskutils/grantlee-editor/Makefile @@ -15,7 +15,7 @@ LIB_DEPENDS= libassuan.so:security/libassuan \ libgpgmepp.so:security/gpgme-cpp \ libqgpgme.so:security/gpgme-qt5 -USES= cmake:outsource compiler:c++11-lib gettext grantlee:5 \ +USES= cmake compiler:c++11-lib gettext grantlee:5 \ kde:5 qt:5 tar:xz USE_KDE= archive attica auth codecs completion config configwidgets \ coreaddons crash dbusaddons ecm i18n itemmodels jobwidgets \ diff --git a/deskutils/grantleetheme/Makefile b/deskutils/grantleetheme/Makefile index f242438598d3..36c4d89d65ad 100644 --- a/deskutils/grantleetheme/Makefile +++ b/deskutils/grantleetheme/Makefile @@ -9,7 +9,7 @@ COMMENT= KDE PIM grantleetheme LICENSE= LGPL21 -USES= cmake:outsource compiler:c++11-lib gettext grantlee:5 kde:5 \ +USES= cmake compiler:c++11-lib gettext grantlee:5 kde:5 \ pkgconfig qt:5 tar:xz USE_KDE= attica auth codecs config configwidgets coreaddons ecm i18n \ iconthemes newstuff service widgetsaddons xmlgui diff --git a/deskutils/homerun/Makefile b/deskutils/homerun/Makefile index 10011014a036..342f9eb55551 100644 --- a/deskutils/homerun/Makefile +++ b/deskutils/homerun/Makefile @@ -12,7 +12,7 @@ COMMENT= Fullscreen launcher with content organized in tabs DEPRECATED= Qt4 has been EOL since december 2015 EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource compiler:c++0x gettext kde:4 qt:4 tar:bzip2 +USES= cmake compiler:c++0x gettext kde:4 qt:4 tar:bzip2 USE_KDE= kdelibs automoc4 workspace USE_QT= moc_build qmake_build rcc_build uic_build corelib gui USE_XORG= x11 diff --git a/deskutils/kaddressbook/Makefile b/deskutils/kaddressbook/Makefile index 4eb24f65fca0..ee10a10b65b9 100644 --- a/deskutils/kaddressbook/Makefile +++ b/deskutils/kaddressbook/Makefile @@ -13,7 +13,7 @@ LIB_DEPENDS= libassuan.so:security/libassuan \ libgpgmepp.so:security/gpgme-cpp \ libqgpgme.so:security/gpgme-qt5 -USES= cmake:outsource compiler:c++11-lib gettext grantlee:5 kde:5 \ +USES= cmake compiler:c++11-lib gettext grantlee:5 kde:5 \ qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons crash \ ecm i18n iconthemes itemmodels jobwidgets kcmutils kio parts \ diff --git a/deskutils/kalarm/Makefile b/deskutils/kalarm/Makefile index e5a96ea0c7fc..d1a2290fbc68 100644 --- a/deskutils/kalarm/Makefile +++ b/deskutils/kalarm/Makefile @@ -9,7 +9,7 @@ COMMENT= Personal alarm scheduler LIB_DEPENDS= libical.so:devel/libical -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 shebangfix tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 shebangfix tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons ecm guiaddons i18n iconthemes \ itemmodels itemviews jobwidgets kcmutils kdelibs4support kio \ diff --git a/deskutils/kcharselect-kde4/Makefile b/deskutils/kcharselect-kde4/Makefile index 11b3acdd2b70..aec137decf09 100644 --- a/deskutils/kcharselect-kde4/Makefile +++ b/deskutils/kcharselect-kde4/Makefile @@ -12,7 +12,7 @@ COMMENT= Character selector for KDE DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= automoc4 kdelibs USE_QT= qmake_build moc_build rcc_build uic_build diff --git a/deskutils/kcharselect/Makefile b/deskutils/kcharselect/Makefile index 052d8dac42ac..57d6bb3b94a4 100644 --- a/deskutils/kcharselect/Makefile +++ b/deskutils/kcharselect/Makefile @@ -10,7 +10,7 @@ COMMENT= Character selector for KDE BUILD_DEPENDS= ${LOCALBASE}/share/xsl/docbook/html/docbook.xsl:textproc/docbook-xsl \ docbook-xml>0:textproc/docbook-xml -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons crash ecm bookmarks \ doctools i18n widgetsaddons xmlgui USE_QT= core dbus gui widgets xml \ diff --git a/deskutils/kdeconnect-kde/Makefile b/deskutils/kdeconnect-kde/Makefile index 001ee065e7ba..83ddf3cbcb30 100644 --- a/deskutils/kdeconnect-kde/Makefile +++ b/deskutils/kdeconnect-kde/Makefile @@ -19,7 +19,7 @@ RUN_DEPENDS= sshfs:sysutils/fusefs-sshfs CONFLICTS_INSTALL= kdeconnect-kde-0.7* kdeconnect-kde-kde4-0.7.* -USES= cmake:outsource compiler:c++11-lang desktop-file-utils gettext kde:5 \ +USES= cmake compiler:c++11-lang desktop-file-utils gettext kde:5 \ pkgconfig qt:5 tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons dbusaddons doctools ecm i18n iconthemes \ diff --git a/deskutils/kdepim-addons/Makefile b/deskutils/kdepim-addons/Makefile index 821747d81418..777f891fc373 100644 --- a/deskutils/kdepim-addons/Makefile +++ b/deskutils/kdepim-addons/Makefile @@ -15,7 +15,7 @@ LIB_DEPENDS= libassuan.so:security/libassuan \ libgpgmepp.so:security/gpgme-cpp \ libqgpgme.so:security/gpgme-qt5 -USES= cmake:outsource compiler:c++11-lib gettext grantlee:5 kde:5 \ +USES= cmake compiler:c++11-lib gettext grantlee:5 kde:5 \ pkgconfig qt:5 tar:xz USE_KDE= archive auth codecs completion config configwidgets coreaddons \ dbusaddons ecm i18n iconthemes itemmodels itemviews jobwidgets \ diff --git a/deskutils/kdepim-apps-libs/Makefile b/deskutils/kdepim-apps-libs/Makefile index c86dfd296fc9..1321561840a2 100644 --- a/deskutils/kdepim-apps-libs/Makefile +++ b/deskutils/kdepim-apps-libs/Makefile @@ -15,7 +15,7 @@ LIB_DEPENDS= libassuan.so:security/libassuan \ libgpgmepp.so:security/gpgme-cpp \ libqgpgme.so:security/gpgme-qt5 -USES= cmake:outsource compiler:c++11-lib gettext grantlee:5 kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext grantlee:5 kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons \ dbusaddons ecm i18n iconthemes itemmodels jobwidgets \ kdewebkit kio service sonnet widgetsaddons xmlgui diff --git a/deskutils/kdepim-kde4/Makefile b/deskutils/kdepim-kde4/Makefile index 229490ba289a..ee9c99451d6f 100644 --- a/deskutils/kdepim-kde4/Makefile +++ b/deskutils/kdepim-kde4/Makefile @@ -28,7 +28,7 @@ CONFLICTS_INSTALL= kdepim44-4.* USE_GNOME= libxml2 libxslt:build USE_KDE= kdelibs pimlibs kactivities \ akonadi automoc4 soprano nepomuk-widgets baloo -USES= cmake:outsource grantlee:4 iconv kde:4 qt:4 shebangfix tar:xz +USES= cmake grantlee:4 iconv kde:4 qt:4 shebangfix tar:xz SHEBANG_FILES= agents/mailfilteragent/kconf_update/migrate-kmail-filters.pl \ kalarm/*.pl kmail/kconf_update/*.pl \ libkpgp/kconf_update/kpgp-3.1-upgrade-address-data.pl diff --git a/deskutils/kdepim-runtime-kde4/Makefile b/deskutils/kdepim-runtime-kde4/Makefile index 93fba8cd31a8..7e968caa3a10 100644 --- a/deskutils/kdepim-runtime-kde4/Makefile +++ b/deskutils/kdepim-runtime-kde4/Makefile @@ -24,7 +24,7 @@ LIB_DEPENDS= libboost_thread.so:devel/boost-libs \ CONFLICTS_INSTALL= kdepim-runtime44-4.* -USES= cmake:outsource kde:4 qt:4 shared-mime-info tar:xz +USES= cmake kde:4 qt:4 shared-mime-info tar:xz USE_GNOME= libxml2 libxslt:build USE_KDE= kdelibs pimlibs \ akonadi automoc4 diff --git a/deskutils/kdepim-runtime/Makefile b/deskutils/kdepim-runtime/Makefile index b09923585f31..1ef13ea5dd67 100644 --- a/deskutils/kdepim-runtime/Makefile +++ b/deskutils/kdepim-runtime/Makefile @@ -15,7 +15,7 @@ LIB_DEPENDS= libboost_date_time.so:devel/boost-libs \ libsasl2.so:security/cyrus-sasl2 \ libxerces-c-3.2.so:textproc/xerces-c3 -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons guiaddons holidays i18n iconthemes \ itemmodels itemviews jobwidgets kcmutils kdelibs4support kio \ diff --git a/deskutils/kdepimlibs-kde4/Makefile b/deskutils/kdepimlibs-kde4/Makefile index ec1644ed71c7..ef236422d0b3 100644 --- a/deskutils/kdepimlibs-kde4/Makefile +++ b/deskutils/kdepimlibs-kde4/Makefile @@ -24,7 +24,7 @@ LIB_DEPENDS= libgpgme.so:security/gpgme \ libprison.so:graphics/prison \ libqjson.so:devel/qjson@qt4 -USES= cmake:outsource kde:4 qt:4 shared-mime-info shebangfix tar:xz +USES= cmake kde:4 qt:4 shared-mime-info shebangfix tar:xz USE_KDE= kdelibs akonadi \ automoc4 ontologies soprano SHEBANG_FILES= mailtransport/kconf_update/migrate-transports.pl diff --git a/deskutils/kdeplasma-addons-kde4/Makefile b/deskutils/kdeplasma-addons-kde4/Makefile index 391586f5f24a..5f21fc643ebc 100644 --- a/deskutils/kdeplasma-addons-kde4/Makefile +++ b/deskutils/kdeplasma-addons-kde4/Makefile @@ -18,7 +18,7 @@ CONFLICTS_INSTALL= plasma-applet-icontasks-0.[89].* DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource eigen:2 kde:4 pkgconfig qt:4 shared-mime-info tar:xz +USES= cmake eigen:2 kde:4 pkgconfig qt:4 shared-mime-info tar:xz USE_KDE= kdelibs libkexiv2 pimlibs workspace \ akonadi attica automoc4 qimageblitz soprano USE_QT= corelib dbus declarative gui network script sql webkit \ diff --git a/deskutils/keditbookmarks/Makefile b/deskutils/keditbookmarks/Makefile index cfcaba0f5a69..23f7b5b55f32 100644 --- a/deskutils/keditbookmarks/Makefile +++ b/deskutils/keditbookmarks/Makefile @@ -7,7 +7,7 @@ CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Bookmark Organizer and Editor -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons ecm i18n iconthemes jobwidgets kio parts service \ sonnet textwidgets widgetsaddons windowsystem xmlgui diff --git a/deskutils/kfind/Makefile b/deskutils/kfind/Makefile index f0a1c5051d0a..4741552a5ce8 100644 --- a/deskutils/kfind/Makefile +++ b/deskutils/kfind/Makefile @@ -7,7 +7,7 @@ CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Find files and folders -USES= cmake:outsource gettext kde:5 qt:5 tar:xz +USES= cmake gettext kde:5 qt:5 tar:xz USE_KDE= archive auth bookmarks codecs completion config configwidgets \ coreaddons crash ecm filemetadata guiaddons i18n iconthemes itemviews \ jobwidgets kdelibs4support kio notifications parts service \ diff --git a/deskutils/kmail-account-wizard/Makefile b/deskutils/kmail-account-wizard/Makefile index 81194e9384a2..f7b4a5144c68 100644 --- a/deskutils/kmail-account-wizard/Makefile +++ b/deskutils/kmail-account-wizard/Makefile @@ -13,7 +13,7 @@ LIB_DEPENDS= libassuan.so:security/libassuan \ libgpgmepp.so:security/gpgme-cpp \ libqgpgme.so:security/gpgme-qt5 -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= attica auth codecs config configwidgets coreaddons crash \ dbusaddons ecm i18n itemmodels itemviews kcmutils kio kross \ newstuff notifications notifyconfig service texteditor wallet \ diff --git a/deskutils/kmail/Makefile b/deskutils/kmail/Makefile index e93382d0bd31..57f0795b2dcc 100644 --- a/deskutils/kmail/Makefile +++ b/deskutils/kmail/Makefile @@ -20,7 +20,7 @@ RUN_DEPENDS= accountwizard:deskutils/kmail-account-wizard \ mboximporter:deskutils/mbox-importer \ sieveeditor:deskutils/pim-sieve-editor -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons ecm guiaddons i18n iconthemes \ itemmodels itemviews jobwidgets kcmutils kdelibs4support kio \ diff --git a/deskutils/knotes/Makefile b/deskutils/knotes/Makefile index eb38a21f90d7..44a1bfdf72e5 100644 --- a/deskutils/knotes/Makefile +++ b/deskutils/knotes/Makefile @@ -11,7 +11,7 @@ LICENSE= LGPL21 LIB_DEPENDS= libical.so:devel/libical -USES= cmake:outsource compiler:c++11-lib gettext grantlee:5 kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext grantlee:5 kde:5 qt:5 tar:xz USE_KDE= attica auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons dnssd globalaccel guiaddons i18n \ iconthemes itemmodels itemviews jobwidgets kcmutils \ diff --git a/deskutils/kontact/Makefile b/deskutils/kontact/Makefile index e1b65d59dcbb..93f67cba9007 100644 --- a/deskutils/kontact/Makefile +++ b/deskutils/kontact/Makefile @@ -9,7 +9,7 @@ COMMENT= KDE Personal Information Manager LICENSE= LGPL21 -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons crash \ ecm i18n iconthemes itemmodels jobwidgets kcmutils kio parts \ service sonnet textwidgets widgetsaddons windowsystem xmlgui diff --git a/deskutils/korganizer/Makefile b/deskutils/korganizer/Makefile index 3b57c6085dd9..f54eeaeab717 100644 --- a/deskutils/korganizer/Makefile +++ b/deskutils/korganizer/Makefile @@ -9,7 +9,7 @@ COMMENT= Calendar and scheduling Program LIB_DEPENDS= libical.so:devel/libical -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= attica auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons ecm guiaddons i18n iconthemes \ itemmodels itemviews jobwidgets kcmutils kdelibs4support kio \ diff --git a/deskutils/kruler-kde4/Makefile b/deskutils/kruler-kde4/Makefile index 96981d4802eb..973f060e9e24 100644 --- a/deskutils/kruler-kde4/Makefile +++ b/deskutils/kruler-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= KDE 4 screen ruler DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs automoc4 USE_QT= moc_build qmake_build rcc_build uic_build USE_XORG= x11 diff --git a/deskutils/kruler/Makefile b/deskutils/kruler/Makefile index 8eba1e1f1d72..56abd987ac39 100644 --- a/deskutils/kruler/Makefile +++ b/deskutils/kruler/Makefile @@ -7,7 +7,7 @@ CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE screen ruler -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons ecm doctools i18n \ notifications widgetsaddons windowsystem xmlgui USE_QT= core dbus gui widgets x11extras xml \ diff --git a/deskutils/latte-dock/Makefile b/deskutils/latte-dock/Makefile index 991b2def2f45..2b63c69c07e2 100644 --- a/deskutils/latte-dock/Makefile +++ b/deskutils/latte-dock/Makefile @@ -13,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libxcb-util.so:x11/xcb-util -USES= cmake:outsource gettext kde:5 qt:5 tar:xz +USES= cmake gettext kde:5 qt:5 tar:xz USE_KDE= activities archive attica auth codecs config configwidgets \ coreaddons crash dbusaddons globalaccel i18n iconthemes \ kdeclarative newstuff notifications package plasma-framework service \ diff --git a/deskutils/libkdepim/Makefile b/deskutils/libkdepim/Makefile index e18b381167e8..83e04c99609d 100644 --- a/deskutils/libkdepim/Makefile +++ b/deskutils/libkdepim/Makefile @@ -11,7 +11,7 @@ LICENSE= LGPL21 LIB_DEPENDS= libboost_thread.so:devel/boost-libs -USES= cmake:outsource gettext compiler:c++11-lib kde:5 qt:5 tar:xz +USES= cmake gettext compiler:c++11-lib kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons ecm \ i18n iconthemes itemmodels itemviews jobwidgets kcmutils \ kio service wallet widgetsaddons diff --git a/deskutils/lxqt-notificationd/Makefile b/deskutils/lxqt-notificationd/Makefile index a32415095873..2b4d7461888e 100644 --- a/deskutils/lxqt-notificationd/Makefile +++ b/deskutils/lxqt-notificationd/Makefile @@ -12,7 +12,7 @@ COMMENT= LXQt notification daemon LICENSE= LGPL21+ -USES= cmake:outsource compiler:c++11-lib gettext kde:5 lxqt qt:5 \ +USES= cmake compiler:c++11-lib gettext kde:5 lxqt qt:5 \ pkgconfig tar:xz USE_QT= buildtools_build qmake_build dbus core gui \ linguisttools svg widgets x11extras xml diff --git a/deskutils/mbox-importer/Makefile b/deskutils/mbox-importer/Makefile index f35b78900cc7..18852fdbb204 100644 --- a/deskutils/mbox-importer/Makefile +++ b/deskutils/mbox-importer/Makefile @@ -13,7 +13,7 @@ LIB_DEPENDS= libassuan.so:security/libassuan \ libgpgmepp.so:security/gpgme-cpp \ libqgpgme.so:security/gpgme-qt5 -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= archive auth codecs completion config configwidgets coreaddons \ crash ecm i18n itemmodels kio service widgetsaddons # pim components diff --git a/deskutils/nextcloudclient/Makefile b/deskutils/nextcloudclient/Makefile index 3336207170d9..30d72ca337f6 100644 --- a/deskutils/nextcloudclient/Makefile +++ b/deskutils/nextcloudclient/Makefile @@ -15,7 +15,7 @@ LICENSE= GPLv2 LIB_DEPENDS= libinotify.so:devel/libinotify \ libqt5keychain.so:security/qtkeychain@qt5 -USES= cmake:outsource,noninja compiler:c++11-lib gmake iconv \ +USES= cmake:noninja compiler:c++11-lib gmake iconv \ localbase:ldflags pkgconfig qt:5 sqlite ssl USE_QT= buildtools_build concurrent core dbus gui linguist_build network \ qmake_build sql webkit widgets xml diff --git a/deskutils/osynctool/Makefile b/deskutils/osynctool/Makefile index ee3b7b9063fd..782c0e219246 100644 --- a/deskutils/osynctool/Makefile +++ b/deskutils/osynctool/Makefile @@ -15,7 +15,7 @@ LIB_DEPENDS= libopensync.so:devel/libopensync CONFLICTS= msynctool-0.2* -USES= cmake:outsource pkgconfig tar:bzip2 +USES= cmake pkgconfig tar:bzip2 PLIST_FILES= bin/${PORTNAME} \ etc/bash_completion.d/${PORTNAME}.sh diff --git a/deskutils/owncloudclient/Makefile b/deskutils/owncloudclient/Makefile index 94fc1b83ba98..8a66795b04d4 100644 --- a/deskutils/owncloudclient/Makefile +++ b/deskutils/owncloudclient/Makefile @@ -16,7 +16,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libinotify.so:devel/libinotify \ libqt5keychain.so:security/qtkeychain@qt5 -USES= cmake:outsource,noninja compiler:c++11-lib gmake iconv kde:5 \ +USES= cmake:noninja compiler:c++11-lib gmake iconv kde:5 \ localbase:ldflags pkgconfig qt:5 sqlite USE_QT= buildtools_build concurrent core dbus gui linguist_build network \ qmake_build sql webkit widgets xml diff --git a/deskutils/pim-data-exporter/Makefile b/deskutils/pim-data-exporter/Makefile index 69aa2fce139a..b2759be96652 100644 --- a/deskutils/pim-data-exporter/Makefile +++ b/deskutils/pim-data-exporter/Makefile @@ -13,7 +13,7 @@ LIB_DEPENDS= libassuan.so:security/libassuan \ libgpgmepp.so:security/gpgme-cpp \ libqgpgme.so:security/gpgme-qt5 -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= archive auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons ecm i18n itemmodels itemviews \ jobwidgets kio notifications service solid wallet \ diff --git a/deskutils/pim-sieve-editor/Makefile b/deskutils/pim-sieve-editor/Makefile index 6dfad70358a7..a23f76d5c8c6 100644 --- a/deskutils/pim-sieve-editor/Makefile +++ b/deskutils/pim-sieve-editor/Makefile @@ -7,7 +7,7 @@ CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Mail sieve editor -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= auth bookmarks codecs config configwidgets coreaddons crash \ dbusaddons ecm i18n iconthemes kio service wallet \ widgetsaddons xmlgui diff --git a/deskutils/plasma5-milou/Makefile b/deskutils/plasma5-milou/Makefile index 34d094a5871f..df4ffd141dff 100644 --- a/deskutils/plasma5-milou/Makefile +++ b/deskutils/plasma5-milou/Makefile @@ -8,7 +8,7 @@ CATEGORIES= deskutils kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 Plasmoid for search -USES= cmake:outsource compiler:c++11-lib cpe gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib cpe gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config coreaddons i18n kdeclarative package \ plasma-framework runner service USE_QT= core declarative gui network script testlib widgets \ diff --git a/deskutils/plasma5-sddm-kcm/Makefile b/deskutils/plasma5-sddm-kcm/Makefile index 6b21e510d7ab..bb91cb4c1701 100644 --- a/deskutils/plasma5-sddm-kcm/Makefile +++ b/deskutils/plasma5-sddm-kcm/Makefile @@ -8,7 +8,7 @@ CATEGORIES= deskutils kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 config module for SDDM -USES= cmake:outsource compiler:c++11-lib gettext kde:5 cpe pkgconfig \ +USES= cmake compiler:c++11-lib gettext kde:5 cpe pkgconfig \ qt:5 tar:xz USE_KDE= auth archive attica codecs completion config configwidgets \ coreaddons ecm i18n jobwidgets kio newstuff service \ diff --git a/deskutils/qlipper/Makefile b/deskutils/qlipper/Makefile index 11b3d071f31d..bcb841dd0a67 100644 --- a/deskutils/qlipper/Makefile +++ b/deskutils/qlipper/Makefile @@ -11,7 +11,7 @@ COMMENT= Lightweight clipboard history applet LICENSE= GPLv2 -USES= cmake:outsource compiler:c++11-lang gettext qt:5 +USES= cmake compiler:c++11-lang gettext qt:5 USE_GITHUB= yes GH_ACCOUNT= pvanek diff --git a/deskutils/strigi/Makefile.common b/deskutils/strigi/Makefile.common index 7444f9508084..322352ced521 100644 --- a/deskutils/strigi/Makefile.common +++ b/deskutils/strigi/Makefile.common @@ -11,7 +11,7 @@ DESCR= ${.CURDIR}/../strigi/pkg-descr CONFLICTS_INSTALL= strigi-0.7.[0-7]* strigi-0.7.8 strigi-0.7.8_1 -USES+= cmake:outsource tar:bzip2 +USES+= cmake tar:bzip2 CMAKE_SOURCE_PATH= ${WRKSRC}/${PORTNAME} PLIST_SUB= SHLIB_VER=${STRIGI_VERSION} diff --git a/deskutils/superkaramba-kde4/Makefile b/deskutils/superkaramba-kde4/Makefile index 08a7c95a7825..a98495ed751d 100644 --- a/deskutils/superkaramba-kde4/Makefile +++ b/deskutils/superkaramba-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= Widget framework for KDE DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 python:2.7 qt:4 tar:xz +USES= cmake kde:4 python:2.7 qt:4 tar:xz USE_KDE= kdelibs automoc4 qimageblitz USE_QT= qmake_build moc_build rcc_build uic_build USE_LDCONFIG= yes diff --git a/deskutils/taskd/Makefile b/deskutils/taskd/Makefile index 26d91934f4b9..83e8bba7210e 100644 --- a/deskutils/taskd/Makefile +++ b/deskutils/taskd/Makefile @@ -15,7 +15,7 @@ LICENSE= MIT LIB_DEPENDS= libgnutls.so:security/gnutls RUN_DEPENDS= bash:shells/bash -USES= cmake:outsource compiler:c++11-lib shebangfix +USES= cmake compiler:c++11-lib shebangfix USE_RC_SUBR= taskd USERS= taskd diff --git a/deskutils/zanshin/Makefile b/deskutils/zanshin/Makefile index 58bad19f924c..63baf18d22aa 100644 --- a/deskutils/zanshin/Makefile +++ b/deskutils/zanshin/Makefile @@ -11,7 +11,7 @@ COMMENT= Daily organizer for KDE LIB_DEPENDS= libical.so:devel/libical -USES= cmake:outsource compiler:c++14-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++14-lang gettext kde:5 qt:5 tar:xz USE_KDE= akonadi auth bookmarks codecs completion config configwidgets \ coreaddons crash ecm guiaddons i18n iconthemes itemmodels \ itemviews jobwidgets kdelibs4support kio notifications package \ diff --git a/devel/RStudio/Makefile b/devel/RStudio/Makefile index bc46845aea9a..ea0144da6fe7 100644 --- a/devel/RStudio/Makefile +++ b/devel/RStudio/Makefile @@ -29,7 +29,7 @@ LIB_DEPENDS= libR.so:math/R \ libinotify.so:devel/libinotify \ libuuid.so:misc/e2fsprogs-libuuid -USES= cmake:outsource desktop-file-utils fortran pkgconfig qt:5 shared-mime-info ssl +USES= cmake desktop-file-utils fortran pkgconfig qt:5 shared-mime-info ssl USE_QT= core dbus declarative gui location network opengl printsupport sensors \ sql svg webchannel webengine webkit widgets xml xmlpatterns buildtools_build qmake_build USE_JAVA= yes diff --git a/devel/allegro-devel/Makefile b/devel/allegro-devel/Makefile index 4b9aa7e0eeed..39af17f8a8c7 100644 --- a/devel/allegro-devel/Makefile +++ b/devel/allegro-devel/Makefile @@ -23,7 +23,7 @@ LIB_DEPENDS+= libjack.so:audio/jack \ libFLAC.so:audio/flac \ libphysfs.so:devel/physfs -USES= cmake jpeg openal:soft pkgconfig +USES= cmake:insource jpeg openal:soft pkgconfig USE_XORG= x11 xpm xext xcursor xxf86vm xxf86dga USE_GL= glu USE_GNOME= gtk20 diff --git a/devel/allegro/Makefile b/devel/allegro/Makefile index e99573642758..a2bc9bf68690 100644 --- a/devel/allegro/Makefile +++ b/devel/allegro/Makefile @@ -21,7 +21,7 @@ BUILD_DEPENDS= png>0:graphics/png \ LIB_DEPENDS= libogg.so:audio/libogg \ libvorbis.so:audio/libvorbis -USES= cmake makeinfo pkgconfig +USES= cmake:insource makeinfo pkgconfig USE_XORG= ice sm x11 xpm xext xcursor xxf86vm xxf86dga USE_LDCONFIG= yes diff --git a/devel/apitrace/Makefile b/devel/apitrace/Makefile index 5896bccd7908..b3a43e168fef 100644 --- a/devel/apitrace/Makefile +++ b/devel/apitrace/Makefile @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libpng.so:graphics/png -USES= cmake:outsource compiler:c++11-lang pkgconfig python:2.7 shebangfix +USES= cmake compiler:c++11-lang pkgconfig python:2.7 shebangfix USE_GITHUB= yes USE_XORG= x11 diff --git a/devel/arpc/Makefile b/devel/arpc/Makefile index 60d86f6995cd..399d01ad5b6e 100644 --- a/devel/arpc/Makefile +++ b/devel/arpc/Makefile @@ -19,7 +19,7 @@ LIB_DEPENDS= libargdata.so:devel/argdata RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pyPEG2>=2.15.2:textproc/py-pyPEG2@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}toposort>=1.5:devel/py-toposort@${PY_FLAVOR} -USES= compiler:c++17-lang cmake localbase:ldflags python:3.4+ \ +USES= compiler:c++17-lang cmake:insource localbase:ldflags python:3.4+ \ shebangfix SHEBANG_FILES= scripts/aprotoc.py USE_LDCONFIG= yes diff --git a/devel/benchmark/Makefile b/devel/benchmark/Makefile index 60cafbdbf368..5877640d29c3 100644 --- a/devel/benchmark/Makefile +++ b/devel/benchmark/Makefile @@ -13,7 +13,7 @@ COMMENT= Microbenchmark support library LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE -USES= cmake:outsource compiler:c++11-lang +USES= cmake compiler:c++11-lang USE_GITHUB= yes GH_ACCOUNT= google USE_LDCONFIG= yes diff --git a/devel/binaryen/Makefile b/devel/binaryen/Makefile index 1f7cab40da73..7039da4a7b44 100644 --- a/devel/binaryen/Makefile +++ b/devel/binaryen/Makefile @@ -11,7 +11,7 @@ COMMENT= Compiler infrastructure and toolchain library for WebAssembly LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE -USES= cmake:outsource python:2.7,build compiler:c++11-lang +USES= cmake python:2.7,build compiler:c++11-lang USE_GITHUB= yes GH_ACCOUNT= WebAssembly USE_LDCONFIG= yes diff --git a/devel/caf/Makefile b/devel/caf/Makefile index 836983a7abb3..36724a72fdce 100644 --- a/devel/caf/Makefile +++ b/devel/caf/Makefile @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE CXXFLAGS+= -std=c++11 -Wextra -Wall -pedantic LDFLAGS+= -pthread -USES= cmake:outsource compiler:c++11-lang +USES= cmake compiler:c++11-lang USE_LDCONFIG= yes TEST_TARGET= test USE_GITHUB= yes diff --git a/devel/catch/Makefile b/devel/catch/Makefile index b9289e3a8952..2a5c0cac554e 100644 --- a/devel/catch/Makefile +++ b/devel/catch/Makefile @@ -13,7 +13,7 @@ COMMENT= Header-only test framework for C++ LICENSE= BSL LICENSE_FILE= ${WRKSRC}/LICENSE.txt -USES= compiler:c++14-lang cmake:outsource pathfix +USES= compiler:c++14-lang cmake pathfix USE_GITHUB= yes GH_ACCOUNT= catchorg GH_PROJECT= Catch2 diff --git a/devel/ccls/Makefile b/devel/ccls/Makefile index b30556c9b8f8..e5488b102599 100644 --- a/devel/ccls/Makefile +++ b/devel/ccls/Makefile @@ -14,7 +14,7 @@ BUILD_DEPENDS= llvm${LLVM_DEFAULT}>0:devel/llvm${LLVM_DEFAULT} \ rapidjson>=1.1.0_4:devel/rapidjson LIB_DEPENDS= libLLVM-${LLVM_DEFAULT:C/[0-9]$//}.so:devel/llvm${LLVM_DEFAULT} -USES= cmake:outsource compiler:c++17-lang localbase +USES= cmake compiler:c++17-lang localbase USE_GITHUB= yes GH_ACCOUNT= MaskRay diff --git a/devel/cdash/Makefile b/devel/cdash/Makefile index 4bca56bcf084..557377e3ca83 100644 --- a/devel/cdash/Makefile +++ b/devel/cdash/Makefile @@ -14,7 +14,7 @@ COMMENT= Web-based software testing server LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/License.txt -USES= dos2unix cmake:outsource zip +USES= dos2unix cmake zip DOS2UNIX_GLOB= *.php *.xml *.xsl *.txt CMAKE_ARGS= -DCDASH_DB_NAME:STRING=cdash \ -DCDASH_DB_LOGIN:STRING=cdash \ diff --git a/devel/cervisia-kde4/Makefile b/devel/cervisia-kde4/Makefile index 26b247d008cb..af1c82cd65fb 100644 --- a/devel/cervisia-kde4/Makefile +++ b/devel/cervisia-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= CVS Frontend for KDE DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs automoc4 USE_QT= moc_build qmake_build rcc_build uic_build diff --git a/devel/cervisia/Makefile b/devel/cervisia/Makefile index 5f7a1e30b5e2..8a0a19331456 100644 --- a/devel/cervisia/Makefile +++ b/devel/cervisia/Makefile @@ -7,7 +7,7 @@ CATEGORIES= devel kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= CVS Frontend for KDE -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= dbusaddons doctools ecm iconthemes init itemviews kdesu \ notifications parts widgetsaddons USE_QT= core dbus gui widgets \ diff --git a/devel/cmake-doc/Makefile b/devel/cmake-doc/Makefile index 2262ce2cf0b4..d51566fc2abf 100644 --- a/devel/cmake-doc/Makefile +++ b/devel/cmake-doc/Makefile @@ -17,7 +17,7 @@ BUILD_DEPENDS= sphinx-build:textproc/py-sphinx DISTINFO_FILE= ${.CURDIR}/../cmake/distinfo NO_ARCH= yes -USES= cmake:outsource qt:5 +USES= cmake qt:5 USE_QT= help_build CMAKE_OFF= SPHINX_MAN diff --git a/devel/cmake-gui/Makefile b/devel/cmake-gui/Makefile index a32e2bf04a36..726b31bf343a 100644 --- a/devel/cmake-gui/Makefile +++ b/devel/cmake-gui/Makefile @@ -20,7 +20,7 @@ LIB_DEPENDS= libcurl.so:ftp/curl \ librhash.so:security/rhash USE_QT= core gui widgets buildtools_build qmake_build -USES= cmake:run desktop-file-utils libarchive \ +USES= cmake:run,insource desktop-file-utils libarchive \ shared-mime-info qt:5 CMAKE_OFF= BUILD_CursesDialog \ CMake_SPHINX_DEPEND_ON_EXECUTABLES diff --git a/devel/cmake-modules-webos/Makefile b/devel/cmake-modules-webos/Makefile index 6b319499f70e..a70c979bad59 100644 --- a/devel/cmake-modules-webos/Makefile +++ b/devel/cmake-modules-webos/Makefile @@ -13,7 +13,7 @@ USE_GITHUB= yes GH_ACCOUNT= FreeWebOS GH_TAGNAME= submissions/19 -USES= cmake:outsource +USES= cmake INSTALL_TARGET= install .include <bsd.port.mk> diff --git a/devel/codequery/Makefile b/devel/codequery/Makefile index f4135395f77c..f72c044c00c9 100644 --- a/devel/codequery/Makefile +++ b/devel/codequery/Makefile @@ -18,7 +18,7 @@ EXPIRATION_DATE= 2019-03-15 LICENSE_FILE_MPL20= ${WRKSRC}/LICENSE.md LICENSE_FILE_MIT= ${WRKSRC}/querylib/README.txt -USES= cmake compiler:c++11-lang ninja qt:4 sqlite +USES= cmake:insource compiler:c++11-lang ninja qt:4 sqlite USE_GITHUB= yes GH_ACCOUNT= ruben2020 diff --git a/devel/compiler-rt/Makefile b/devel/compiler-rt/Makefile index f144ccb95b9d..badd64ddbb88 100644 --- a/devel/compiler-rt/Makefile +++ b/devel/compiler-rt/Makefile @@ -25,7 +25,7 @@ TEST_TARGET= test CMAKE_SOURCE_PATH= ${WRKSRC} -USES= cmake tar:bzip2 +USES= cmake:insource tar:bzip2 USE_LDCONFIG= yes LLVM_SVN= http://llvm.org/svn/llvm-project diff --git a/devel/cpp-netlib/Makefile b/devel/cpp-netlib/Makefile index 12dcb16d7f70..89c3df1e0a9c 100644 --- a/devel/cpp-netlib/Makefile +++ b/devel/cpp-netlib/Makefile @@ -17,7 +17,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE_1_0.txt BUILD_DEPENDS= boost-libs>0:devel/boost-libs \ asio>0:net/asio -USES= cmake:outsource compiler:c++11-lang +USES= cmake compiler:c++11-lang USE_LDCONFIG= yes CFLAGS+= -fPIC CMAKE_ARGS+= -DCPP-NETLIB_BUILD_EXAMPLES=OFF \ diff --git a/devel/cpp2py/Makefile b/devel/cpp2py/Makefile index ad9ca94ba0ec..0cfa3e4e8184 100644 --- a/devel/cpp2py/Makefile +++ b/devel/cpp2py/Makefile @@ -21,7 +21,7 @@ BUILD_DEPENDS= ${PY_DEPENDS} \ RUN_DEPENDS= ${PY_DEPENDS} \ llvm${LLVM_VER}>0:devel/llvm${LLVM_VER} -USES= cmake:outsource compiler:c++14-lang python:2.7 shebangfix +USES= cmake compiler:c++14-lang python:2.7 shebangfix USE_GITHUB= yes GH_ACCOUNT= TRIQS SHEBANG_FILES= bin/c* diff --git a/devel/cppcheck/Makefile b/devel/cppcheck/Makefile index b6a885b135b7..ef95954af75a 100644 --- a/devel/cppcheck/Makefile +++ b/devel/cppcheck/Makefile @@ -11,7 +11,7 @@ COMMENT?= Static analysis of C/C++ code LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/COPYING -USES= compiler:c++11-lib cmake tar:bzip2 +USES= compiler:c++11-lib cmake:insource tar:bzip2 USE_GITHUB= yes GH_ACCOUNT= danmar diff --git a/devel/cpu_features/Makefile b/devel/cpu_features/Makefile index 9b590c73f2db..73eff5fb2518 100644 --- a/devel/cpu_features/Makefile +++ b/devel/cpu_features/Makefile @@ -10,7 +10,7 @@ COMMENT= Cross platform C99 library to get cpu features at runtime LICENSE= APACHE20 -USES= cmake +USES= cmake:insource USE_GITHUB= yes GH_ACCOUNT= google diff --git a/devel/cxxopts/Makefile b/devel/cxxopts/Makefile index 344d1fefba65..ee2853b777c6 100644 --- a/devel/cxxopts/Makefile +++ b/devel/cxxopts/Makefile @@ -12,7 +12,7 @@ COMMENT= Lightweight C++ command line option parser LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -USES= cmake:outsource compiler:c++11-lang +USES= cmake compiler:c++11-lang USE_GITHUB= yes GH_ACCOUNT= jarro2783 diff --git a/devel/docopt.cpp/Makefile b/devel/docopt.cpp/Makefile index 81f4db1d475c..088dd285cefb 100644 --- a/devel/docopt.cpp/Makefile +++ b/devel/docopt.cpp/Makefile @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE-MIT TEST_DEPENDS= python${PYTHON_DEFAULT}:lang/python${PYTHON_DEFAULT:S/.//} -USES= cmake:outsource compiler:c++11-lang +USES= cmake compiler:c++11-lang USE_GITHUB= yes GH_ACCOUNT= docopt USE_LDCONFIG= yes diff --git a/devel/dolphin-plugins-kde4/Makefile b/devel/dolphin-plugins-kde4/Makefile index e77342af6ffd..b9f9285bb6f4 100644 --- a/devel/dolphin-plugins-kde4/Makefile +++ b/devel/dolphin-plugins-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= Plugins for Dolphin file manager DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs libkonq automoc4 USE_QT= moc_build qmake_build rcc_build uic_build diff --git a/devel/dolphin-plugins/Makefile b/devel/dolphin-plugins/Makefile index 91e56506188f..063f31524063 100644 --- a/devel/dolphin-plugins/Makefile +++ b/devel/dolphin-plugins/Makefile @@ -10,7 +10,7 @@ COMMENT= Plugins for Dolphin file manager BUILD_DEPENDS= dolphin:x11-fm/dolphin RUN_DEPENDS= dolphin:x11-fm/dolphin -USES= cmake:outsource gettext kde:5 qt:5 tar:xz +USES= cmake gettext kde:5 qt:5 tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash guiaddons i18n iconthemes itemviews jobwidgets \ kdelibs4support kio notifications parts service solid sonnet \ diff --git a/devel/doxygen/Makefile b/devel/doxygen/Makefile index 6b78df809b9f..f14de30ae9fb 100644 --- a/devel/doxygen/Makefile +++ b/devel/doxygen/Makefile @@ -16,7 +16,7 @@ COMMENT= Documentation system for C, C++, and other languages LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/LICENSE -USES= bison cmake:outsource,noninja compiler:c++11-lang iconv python shebangfix +USES= bison cmake:noninja compiler:c++11-lang iconv python shebangfix ALL_TARGET= all CMAKE_ARGS+= -DDOC_INSTALL_DIR:PATH=${DOCSDIR_REL} # Parallel jobs breaks when the DOCS option is on diff --git a/devel/ds2/Makefile b/devel/ds2/Makefile index f12c2015a736..d8126109940c 100644 --- a/devel/ds2/Makefile +++ b/devel/ds2/Makefile @@ -17,7 +17,7 @@ GH_TAGNAME= 52c45f3 ONLY_FOR_ARCHS= amd64 ONLY_FOR_ARCHS_REASON= the ptrace code only has an amd64 backend -USES= cmake compiler +USES= cmake:insource compiler PLIST_FILES= bin/ds2 diff --git a/devel/eastl/Makefile b/devel/eastl/Makefile index 4c6fa776245d..8a708efd813d 100644 --- a/devel/eastl/Makefile +++ b/devel/eastl/Makefile @@ -11,7 +11,7 @@ COMMENT= Electronic Arts Standard Template Library LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -USES= cmake:outsource compiler:c++14-lang +USES= cmake compiler:c++14-lang USE_GITHUB= yes GH_ACCOUNT= electronicarts GH_PROJECT= ${PORTNAME:tu} diff --git a/devel/easyloggingpp/Makefile b/devel/easyloggingpp/Makefile index 0f7090d76f56..72ffa4a722cd 100644 --- a/devel/easyloggingpp/Makefile +++ b/devel/easyloggingpp/Makefile @@ -12,7 +12,7 @@ COMMENT= C++ logging library LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -USES= cmake:outsource compiler:c++11-lang +USES= cmake compiler:c++11-lang USE_GITHUB= yes GH_ACCOUNT= muflihun USE_LDCONFIG= yes diff --git a/devel/embb/Makefile b/devel/embb/Makefile index 42aa2c6e4883..a2f902c19ba3 100644 --- a/devel/embb/Makefile +++ b/devel/embb/Makefile @@ -16,7 +16,7 @@ LICENSE_COMB= multi USE_GITHUB= yes GH_ACCOUNT= siemens -USES= cmake:outsource compiler:c++11-lib +USES= cmake compiler:c++11-lib CMAKE_ARGS= -DINSTALL_PREFIX=${PREFIX} \ -DUSE_C11_AND_CXX11:BOOL=true diff --git a/devel/fifechan/Makefile b/devel/fifechan/Makefile index a1104c2c6d07..c71faa37ebd4 100644 --- a/devel/fifechan/Makefile +++ b/devel/fifechan/Makefile @@ -12,7 +12,7 @@ COMMENT= Small, efficient C++ GUI library designed for games LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/LICENSE.md -USES= cmake:outsource +USES= cmake USE_GITHUB= yes GH_ACCOUNT= fifengine diff --git a/devel/flang-clang/Makefile b/devel/flang-clang/Makefile index c8578b2b50ac..247ceeed38bf 100644 --- a/devel/flang-clang/Makefile +++ b/devel/flang-clang/Makefile @@ -19,7 +19,7 @@ ONLY_FOR_ARCHS= amd64 BUILD_DEPENDS= llvm60>=0:devel/llvm60 RUN_DEPENDS= llvm60>=0:devel/llvm60 -USES= cmake:outsource compiler:c++11-lib libedit tar:xz perl5 \ +USES= cmake compiler:c++11-lib libedit tar:xz perl5 \ python shebangfix USE_LDCONFIG= ${PREFIX}/flang/lib USE_GNOME= libxml2 diff --git a/devel/flang/Makefile b/devel/flang/Makefile index d8a59533c3e1..290bc1f864f5 100644 --- a/devel/flang/Makefile +++ b/devel/flang/Makefile @@ -23,7 +23,7 @@ LIB_DEPENDS= libpgmath.so:math/libpgmath OPTIONS_DEFINE= TESTS TESTS_DESC= build unit tests for flang -USES= cmake:outsource,noninja compiler:c++11-lib libedit perl5 tar:xz \ +USES= cmake:noninja compiler:c++11-lib libedit perl5 tar:xz \ shebangfix _USES_PYTHON?= python:build USES+= ${_USES_PYTHON} diff --git a/devel/flatbuffers/Makefile b/devel/flatbuffers/Makefile index 5ba2e7e9f2a5..c76cf5233eda 100644 --- a/devel/flatbuffers/Makefile +++ b/devel/flatbuffers/Makefile @@ -13,7 +13,7 @@ COMMENT= Memory efficient serialization library LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt -USES= cmake:outsource compiler:c++11-lib +USES= cmake compiler:c++11-lib USE_LDCONFIG= yes USE_GITHUB= yes GH_ACCOUNT= google diff --git a/devel/fuzzylite/Makefile b/devel/fuzzylite/Makefile index a6802b12222f..86625440b227 100644 --- a/devel/fuzzylite/Makefile +++ b/devel/fuzzylite/Makefile @@ -13,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE BROKEN_powerpc64= fails to compile: unrecognized command line option "-Wno-type-limits" -USES= cmake:outsource compiler +USES= cmake compiler USE_GITHUB= yes USE_LDCONFIG= yes diff --git a/devel/gdcm/Makefile b/devel/gdcm/Makefile index 395bb9db04b5..7a909e0f64c0 100644 --- a/devel/gdcm/Makefile +++ b/devel/gdcm/Makefile @@ -16,7 +16,7 @@ BUILD_DEPENDS= pkgconf:devel/pkgconf LIB_DEPENDS= libopenjp2.so:graphics/openjpeg \ libexpat.so:textproc/expat2 -USES= alias cmake:outsource compiler:c++11-lang tar:bzip2 ssl +USES= alias cmake compiler:c++11-lang tar:bzip2 ssl OPTIONS_DEFINE= VTK6 OPTIONS_SUB= yes @@ -34,6 +34,7 @@ GDCM_PATCH= 8 # Change this whenever VTK is updated VTK6_VERSION= 6.2 +USES= alias cmake tar:bzip2 ssl USE_LDCONFIG= yes CFLAGS+= -I${LOCALBASE}/include CMAKE_ARGS= -DGDCM_USE_SYSTEM_OPENSSL:BOOL=ON \ diff --git a/devel/glslang/Makefile b/devel/glslang/Makefile index 1214d5bb03f3..fce4a03cca10 100644 --- a/devel/glslang/Makefile +++ b/devel/glslang/Makefile @@ -12,7 +12,7 @@ COMMENT= OpenGL and OpenGL ES shader front end and validator LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKDIR}/LICENSE -USES= cmake:outsource compiler:c++11-lib +USES= cmake compiler:c++11-lib USE_GITHUB= yes GH_ACCOUNT= KhronosGroup diff --git a/devel/grantlee/Makefile b/devel/grantlee/Makefile index fedf53e8c478..e2ec6ecbe732 100644 --- a/devel/grantlee/Makefile +++ b/devel/grantlee/Makefile @@ -20,7 +20,7 @@ PORTSCOUT= limit:^0\. USE_QT= corelib gui qtestlib_build script \ qmake_build moc_build rcc_build uic_build -USES= cmake:outsource grantlee:4,selfbuild qt:4 +USES= cmake grantlee:4,selfbuild qt:4 CMAKE_ARGS+= -DBUILD_TESTS:BOOL=FALSE USE_LDCONFIG= yes diff --git a/devel/grantlee5/Makefile b/devel/grantlee5/Makefile index dd70fed18672..cf276d89bcbc 100644 --- a/devel/grantlee5/Makefile +++ b/devel/grantlee5/Makefile @@ -16,7 +16,7 @@ LICENSE= LGPL21 PORTSCOUT= limit:^5\. USE_QT= buildtools_build core gui qmake_build script -USES= cmake:outsource compiler:c++11-lib grantlee:5,selfbuild qt:5 +USES= cmake compiler:c++11-lib grantlee:5,selfbuild qt:5 CMAKE_ARGS+= -DBUILD_TESTS:BOOL=FALSE USE_LDCONFIG= yes diff --git a/devel/heimdall/Makefile b/devel/heimdall/Makefile index f8e6f7246385..8b093092b05e 100644 --- a/devel/heimdall/Makefile +++ b/devel/heimdall/Makefile @@ -13,7 +13,7 @@ COMMENT= Tool suite used to flash firmware onto Samsung mobile devices LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -USES= compiler:c++11-lang cmake +USES= compiler:c++11-lang cmake:insource USE_GITHUB= yes OPTIONS_DEFINE= DOCS GUI diff --git a/devel/hyperscan/Makefile b/devel/hyperscan/Makefile index cc0664d7cac6..23e4e216fc61 100644 --- a/devel/hyperscan/Makefile +++ b/devel/hyperscan/Makefile @@ -17,7 +17,7 @@ BUILD_DEPENDS= ragel:devel/ragel USE_GITHUB= yes GH_ACCOUNT= intel -USES= compiler:c++11-lib cmake:outsource pathfix python:build +USES= compiler:c++11-lib cmake pathfix python:build ONLY_FOR_ARCHS= amd64 ONLY_FOR_ARCHS_REASON= SSSE3 is required for work diff --git a/devel/ignition-cmake/Makefile b/devel/ignition-cmake/Makefile index 83046836b53c..f1233878c30e 100644 --- a/devel/ignition-cmake/Makefile +++ b/devel/ignition-cmake/Makefile @@ -10,7 +10,7 @@ COMMENT= CMake modules to be used by the Ignition projects LICENSE= APACHE20 -USES= cmake:outsource pkgconfig +USES= cmake pkgconfig USE_RUBY= yes CMAKE_OFF= BUILD_TESTING diff --git a/devel/ignition-common/Makefile b/devel/ignition-common/Makefile index ac0bfc47b404..e93f065e5a12 100644 --- a/devel/ignition-common/Makefile +++ b/devel/ignition-common/Makefile @@ -20,7 +20,7 @@ LIB_DEPENDS= libavcodec.so:multimedia/ffmpeg \ libuuid.so:misc/e2fsprogs-libuuid \ libignition-math6.so:math/ignition-math -USES= cmake:outsource compiler:c++17-lang gnome pkgconfig +USES= cmake compiler:c++17-lang gnome pkgconfig USE_GNOME= glib20 USE_LDCONFIG= yes diff --git a/devel/ignition-msgs/Makefile b/devel/ignition-msgs/Makefile index 020db578f686..442d3a983837 100644 --- a/devel/ignition-msgs/Makefile +++ b/devel/ignition-msgs/Makefile @@ -16,7 +16,7 @@ BUILD_DEPENDS= ignition-cmake==2:devel/ignition-cmake \ LIB_DEPENDS= libprotobuf.so:devel/protobuf \ libignition-math6.so:math/ignition-math -USES= compiler:c++11-lang cmake:outsource +USES= compiler:c++11-lang cmake USE_RUBY= yes USE_LDCONFIG= yes diff --git a/devel/ignition-plugin/Makefile b/devel/ignition-plugin/Makefile index c14716810848..1186cdbd6ca5 100644 --- a/devel/ignition-plugin/Makefile +++ b/devel/ignition-plugin/Makefile @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= ignition-cmake==2:devel/ignition-cmake -USES= cmake:outsource compiler:c++17-lang +USES= cmake compiler:c++17-lang USE_LDCONFIG= yes BB_ACCOUNT= ignitionrobotics diff --git a/devel/ignition-tools/Makefile b/devel/ignition-tools/Makefile index 3fe7dd513d6d..152fe611bdc9 100644 --- a/devel/ignition-tools/Makefile +++ b/devel/ignition-tools/Makefile @@ -12,7 +12,7 @@ COMMENT= Ignition entry point (ign) for using all the suite of ignition tools LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE -USES= cmake:outsource compiler:c++11-lang pkgconfig shebangfix +USES= cmake compiler:c++11-lang pkgconfig shebangfix SHEBANG_FILES= src/ign.in USE_RUBY= yes diff --git a/devel/ignition-transport/Makefile b/devel/ignition-transport/Makefile index 0cea6fa5efe8..ada2d48b3df7 100644 --- a/devel/ignition-transport/Makefile +++ b/devel/ignition-transport/Makefile @@ -21,7 +21,7 @@ LIB_DEPENDS= libignition-math6.so:math/ignition-math \ libzmq.so:net/libzmq4 RUN_DEPENDS= ignition-tools>0:devel/ignition-tools -USES= cmake:outsource pkgconfig sqlite +USES= cmake pkgconfig sqlite USE_LDCONFIG= yes CMAKE_OFF= BUILD_TESTING diff --git a/devel/ikos/Makefile b/devel/ikos/Makefile index 4ad2d6dca2aa..27b392f4fd0d 100644 --- a/devel/ikos/Makefile +++ b/devel/ikos/Makefile @@ -19,7 +19,7 @@ LIB_DEPENDS= libapron.so:math/apron \ libgmp.so:math/gmp \ libppl.so:devel/ppl -USES= cmake:outsource ncurses python sqlite +USES= cmake ncurses python sqlite USE_GITHUB= yes GH_ACCOUNT= NASA-SW-VnV diff --git a/devel/inastemp/Makefile b/devel/inastemp/Makefile index e57198716537..d8384ba6baf8 100644 --- a/devel/inastemp/Makefile +++ b/devel/inastemp/Makefile @@ -11,7 +11,7 @@ COMMENT= C++ library to use SIMD vectorization LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -USES= cmake:outsource +USES= cmake NO_ARCH= yes CMAKE_ARGS= -DINASTEMP_DO_INSTALL:BOOL=ON \ -DINASTEMP_JUST_LIB:BOOL=ON diff --git a/devel/include-what-you-use/Makefile b/devel/include-what-you-use/Makefile index 6fd2427e39f4..856ea6108d9e 100644 --- a/devel/include-what-you-use/Makefile +++ b/devel/include-what-you-use/Makefile @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.TXT BUILD_DEPENDS= clang60:devel/llvm60 RUN_DEPENDS= clang60:devel/llvm60 -USES= cmake:outsource ncurses python:run shebangfix +USES= cmake ncurses python:run shebangfix USE_GITHUB= yes SHEBANG_FILES= fix_includes.py \ diff --git a/devel/kapptemplate-kde4/Makefile b/devel/kapptemplate-kde4/Makefile index 88b0db9fab39..d04874558f0d 100644 --- a/devel/kapptemplate-kde4/Makefile +++ b/devel/kapptemplate-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= KDE template generator DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs automoc4 USE_QT= moc_build qmake_build rcc_build uic_build \ corelib dbus declarative diff --git a/devel/kapptemplate/Makefile b/devel/kapptemplate/Makefile index 751463389e4b..599e866c27f0 100644 --- a/devel/kapptemplate/Makefile +++ b/devel/kapptemplate/Makefile @@ -10,7 +10,7 @@ COMMENT= KDE template generator BUILD_DEPENDS= ${LOCALBASE}/share/xsl/docbook/html/docbook.xsl:textproc/docbook-xsl \ docbook-xml>0:textproc/docbook-xml -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth archive codecs completion config configwidgets coreaddons \ doctools ecm i18n jobwidgets kio newstuff service widgetsaddons USE_QT= core dbus gui network testlib widgets xml \ diff --git a/devel/kcachegrind-kde4/Makefile b/devel/kcachegrind-kde4/Makefile index 8c954f546dd2..eb5cfc801d17 100644 --- a/devel/kcachegrind-kde4/Makefile +++ b/devel/kcachegrind-kde4/Makefile @@ -12,7 +12,7 @@ COMMENT= Profiler frontend for KDE DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 python:run qt:4 tar:xz shebangfix +USES= cmake kde:4 python:run qt:4 tar:xz shebangfix USE_KDE= kdelibs automoc4 USE_QT= moc_build qmake_build rcc_build uic_build \ corelib dbus gui diff --git a/devel/kcachegrind/Makefile b/devel/kcachegrind/Makefile index 7013b0eb79a9..9a28b7a7bef4 100644 --- a/devel/kcachegrind/Makefile +++ b/devel/kcachegrind/Makefile @@ -7,7 +7,7 @@ CATEGORIES= devel kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Profiler frontend for KDE -USES= cmake:outsource compiler:c++11-lang kde:5 python:run qt:5 \ +USES= cmake compiler:c++11-lang kde:5 python:run qt:5 \ shebangfix tar:xz USE_KDE= archive auth bookmarks codecs completion config configwidgets \ coreaddons ecm i18n itemviews jobwidgets kio service solid \ diff --git a/devel/kcov/Makefile b/devel/kcov/Makefile index 8fd8d476bee5..09ca69d5ee0f 100644 --- a/devel/kcov/Makefile +++ b/devel/kcov/Makefile @@ -21,7 +21,7 @@ LIB_DEPENDS= libcurl.so:ftp/curl \ libdw.so:devel/elfutils \ libelf.so:devel/elfutils -USES= cmake:outsource shebangfix python:build gettext-runtime +USES= cmake shebangfix python:build gettext-runtime # Remove -DPORTVERSION (and associated patch) when basing the port on an # official release diff --git a/devel/kde-dev-scripts-kde4/Makefile b/devel/kde-dev-scripts-kde4/Makefile index b1ff04c0a566..00394d02a104 100644 --- a/devel/kde-dev-scripts-kde4/Makefile +++ b/devel/kde-dev-scripts-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= KDE development scripts DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 python:run qt:4 shebangfix tar:xz +USES= cmake kde:4 python:run qt:4 shebangfix tar:xz USE_KDE= kdelibs automoc4 USE_QT= moc_build qmake_build rcc_build uic_build diff --git a/devel/kde-dev-scripts/Makefile b/devel/kde-dev-scripts/Makefile index c8692470d5f2..988619b08422 100644 --- a/devel/kde-dev-scripts/Makefile +++ b/devel/kde-dev-scripts/Makefile @@ -7,7 +7,7 @@ CATEGORIES= devel kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE development scripts -USES= cmake:outsource kde:5 perl5 python:run qt:5 shebangfix tar:xz +USES= cmake kde:5 perl5 python:run qt:5 shebangfix tar:xz USE_KDE= doctools ecm USE_QT= buildtools_build qmake_build diff --git a/devel/kde-dev-utils-kde4/Makefile b/devel/kde-dev-utils-kde4/Makefile index 30206b8c2b97..27f1c159df0c 100644 --- a/devel/kde-dev-utils-kde4/Makefile +++ b/devel/kde-dev-utils-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= KDE development utilities DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs automoc4 USE_QT= moc_build qmake_build rcc_build uic_build \ corelib designer gui qt3support xml diff --git a/devel/kde-dev-utils/Makefile b/devel/kde-dev-utils/Makefile index 7b21881ec24e..d466658ba0b6 100644 --- a/devel/kde-dev-utils/Makefile +++ b/devel/kde-dev-utils/Makefile @@ -7,7 +7,7 @@ CATEGORIES= devel kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE development utilities -USES= compiler:c++11-lang cmake:outsource kde:5 qt:5 tar:xz +USES= compiler:c++11-lang cmake kde:5 qt:5 tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons ecm i18n itemviews jobwidgets kio parts service \ solid sonnet textwidgets widgetsaddons xmlgui diff --git a/devel/kdesdk-kioslaves-kde4/Makefile b/devel/kdesdk-kioslaves-kde4/Makefile index a458aa99a54e..51c1a91db401 100644 --- a/devel/kdesdk-kioslaves-kde4/Makefile +++ b/devel/kdesdk-kioslaves-kde4/Makefile @@ -14,7 +14,7 @@ EXPIRATION_DATE= 2018-12-31 LIB_DEPENDS= libsvn_client-1.so:devel/subversion -USES= cmake:outsource kde:4 perl5 qt:4 shebangfix tar:xz +USES= cmake kde:4 perl5 qt:4 shebangfix tar:xz USE_KDE= kdelibs automoc4 USE_QT= moc_build qmake_build rcc_build uic_build diff --git a/devel/kdesdk-strigi-analyzers-kde4/Makefile b/devel/kdesdk-strigi-analyzers-kde4/Makefile index 24070b32b46b..11d6903cecb8 100644 --- a/devel/kdesdk-strigi-analyzers-kde4/Makefile +++ b/devel/kdesdk-strigi-analyzers-kde4/Makefile @@ -12,7 +12,7 @@ COMMENT= Strigi analyzers for SDK related file formats DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs automoc4 strigi USE_QT= moc_build qmake_build rcc_build uic_build diff --git a/devel/kdesdk-thumbnailers-kde4/Makefile b/devel/kdesdk-thumbnailers-kde4/Makefile index f40398fd8138..76759b250269 100644 --- a/devel/kdesdk-thumbnailers-kde4/Makefile +++ b/devel/kdesdk-thumbnailers-kde4/Makefile @@ -12,7 +12,7 @@ COMMENT= KDE thumbnail generator for gettext po files DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource gettext kde:4 qt:4 tar:xz +USES= cmake gettext kde:4 qt:4 tar:xz USE_KDE= kdelibs automoc4 USE_QT= moc_build qmake_build rcc_build uic_build diff --git a/devel/kdesdk-thumbnailers/Makefile b/devel/kdesdk-thumbnailers/Makefile index 6858f79c17e4..2932cea6b72c 100644 --- a/devel/kdesdk-thumbnailers/Makefile +++ b/devel/kdesdk-thumbnailers/Makefile @@ -7,7 +7,7 @@ CATEGORIES= devel kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE thumbnail generator for gettext po files -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= completion config coreaddons ecm i18n jobwidgets \ kio service widgetsaddons USE_QT= core dbus gui network widgets xml \ diff --git a/devel/kdesvn-kde4/Makefile b/devel/kdesvn-kde4/Makefile index 4a720d86b0eb..588625564484 100644 --- a/devel/kdesvn-kde4/Makefile +++ b/devel/kdesvn-kde4/Makefile @@ -28,7 +28,7 @@ CONFLICTS= kdesvn-2.* \ CMAKE_ARGS+= -DSUBVERSION_INCLUDE_DIR=${LOCALBASE}/include/subversion-1 \ -DMAN_INSTALL_DIR=${MANPREFIX}/man -USES= cmake:outsource compiler:c11 bdb kde:4 qt:4 tar:xz +USES= cmake compiler:c11 bdb kde:4 qt:4 tar:xz USE_KDE= automoc4 kdelibs soprano baseapps_run USE_LDCONFIG= yes USE_QT= corelib gui xml network dbus svg sql \ diff --git a/devel/kdesvn/Makefile b/devel/kdesvn/Makefile index d063b140517b..f857d6778ac9 100644 --- a/devel/kdesvn/Makefile +++ b/devel/kdesvn/Makefile @@ -20,7 +20,7 @@ LIB_DEPENDS= libapr-1.so:devel/apr1 \ CONFLICTS_INSTALL= kdesvn-kde4 \ qsvn-[0-9]* -USES= bdb cmake:outsource kde:5 qt:5 tar:xz +USES= bdb cmake kde:5 qt:5 tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons dbusaddons ecm i18n iconthemes itemviews jobwidgets \ kio notifications parts service sonnet texteditor textwidgets \ diff --git a/devel/kdev-php/Makefile b/devel/kdev-php/Makefile index cf636d4633f8..17788584cfdd 100644 --- a/devel/kdev-php/Makefile +++ b/devel/kdev-php/Makefile @@ -13,7 +13,7 @@ COMMENT= PHP support for KDevelop BUILD_DEPENDS= kdev-pg-qt:devel/kdevelop-pg-qt LIB_DEPENDS= libkdevcmakecommon.so:devel/kdevelop -USES= cmake:outsource compiler:c++11-lib kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons ecm \ i18n itemmodels jobwidgets kcmutils kio parts service sonnet \ texteditor textwidgets threadweaver widgetsaddons xmlgui diff --git a/devel/kdev-python/Makefile b/devel/kdev-python/Makefile index f73843267ec6..6e9d4f839fe4 100644 --- a/devel/kdev-python/Makefile +++ b/devel/kdev-python/Makefile @@ -13,7 +13,7 @@ COMMENT= Python support for KDevelop BUILD_DEPENDS= kdev-pg-qt:devel/kdevelop-pg-qt LIB_DEPENDS= libkdevcmakecommon.so:devel/kdevelop -USES= cmake:outsource compiler:c++11-lib kde:5 python:3.4+ qt:5 tar:xz +USES= cmake compiler:c++11-lib kde:5 python:3.4+ qt:5 tar:xz USE_KDE= attica auth codecs completion config configwidgets coreaddons \ ecm i18n itemmodels jobwidgets kio newstuff parts service \ sonnet texteditor textwidgets threadweaver widgetsaddons xmlgui diff --git a/devel/kdevelop-kde4/Makefile b/devel/kdevelop-kde4/Makefile index 2333e461bf77..aabeb5f4dc94 100644 --- a/devel/kdevelop-kde4/Makefile +++ b/devel/kdevelop-kde4/Makefile @@ -18,7 +18,7 @@ EXPIRATION_DATE= 2018-12-31 LIB_DEPENDS= libkdevplatforminterfaces.so:devel/kdevplatform-kde4 RUN_DEPENDS= gmake:devel/gmake -USES= cmake:outsource compiler:c++11-lib kde:4 \ +USES= cmake compiler:c++11-lib kde:4 \ qt:4 shared-mime-info tar:xz USE_KDE= kdelibs workspace automoc4 USE_QT= qmake_build moc_build uic_build rcc_build \ diff --git a/devel/kdevelop-pg-qt-kde4/Makefile b/devel/kdevelop-pg-qt-kde4/Makefile index 50a7b4da3df5..b4fa1fd04f42 100644 --- a/devel/kdevelop-pg-qt-kde4/Makefile +++ b/devel/kdevelop-pg-qt-kde4/Makefile @@ -17,7 +17,7 @@ EXPIRATION_DATE= 2018-12-31 BUILD_DEPENDS= ${LOCALBASE}/bin/flex:textproc/flex -USES= bison cmake:outsource compiler:c++11-lib kde:4 qt:4 tar:bzip2 +USES= bison cmake compiler:c++11-lib kde:4 qt:4 tar:bzip2 USE_KDE= automoc4 kdelibs USE_QT= qmake_build moc_build uic_build rcc_build diff --git a/devel/kdevelop-pg-qt/Makefile b/devel/kdevelop-pg-qt/Makefile index fdcf08016814..e11bd3202165 100644 --- a/devel/kdevelop-pg-qt/Makefile +++ b/devel/kdevelop-pg-qt/Makefile @@ -16,7 +16,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING.LIB BUILD_DEPENDS= ${LOCALBASE}/bin/flex:textproc/flex -USES= bison cmake:outsource compiler:c++11-lib kde:5 qt:5 tar:xz +USES= bison cmake compiler:c++11-lib kde:5 qt:5 tar:xz USE_KDE= ecm USE_QT= core testlib \ buildtools_build qmake_build diff --git a/devel/kdevelop-php-docs-kde4/Makefile b/devel/kdevelop-php-docs-kde4/Makefile index 625b1b78ac9e..7a93b2318bb5 100644 --- a/devel/kdevelop-php-docs-kde4/Makefile +++ b/devel/kdevelop-php-docs-kde4/Makefile @@ -16,7 +16,7 @@ EXPIRATION_DATE= 2018-12-31 LIB_DEPENDS= libkdevplatforminterfaces.so:devel/kdevplatform-kde4 -USES= cmake:outsource compiler:c++11-lib kde:4 qt:4 tar:xz +USES= cmake compiler:c++11-lib kde:4 qt:4 tar:xz USE_KDE= kdelibs automoc4 USE_QT= moc_build qmake_build rcc_build uic_build webkit diff --git a/devel/kdevelop-php-kde4/Makefile b/devel/kdevelop-php-kde4/Makefile index bb8ac67256c5..fb51f07f3550 100644 --- a/devel/kdevelop-php-kde4/Makefile +++ b/devel/kdevelop-php-kde4/Makefile @@ -17,7 +17,7 @@ EXPIRATION_DATE= 2018-12-31 LIB_DEPENDS= libkdevplatforminterfaces.so:devel/kdevplatform-kde4 BUILD_DEPENDS= ${KDE_PREFIX}/bin/kdev-pg-qt:devel/kdevelop-pg-qt-kde4 -USES= cmake:outsource compiler:c++11-lib kde:4 qt:4 tar:xz +USES= cmake compiler:c++11-lib kde:4 qt:4 tar:xz USE_KDE= kdelibs automoc4 USE_QT= moc_build qmake_build rcc_build uic_build MAKE_JOBS_UNSAFE= yes diff --git a/devel/kdevelop/Makefile b/devel/kdevelop/Makefile index 05a47a92dbd6..eac0a46cf7ed 100644 --- a/devel/kdevelop/Makefile +++ b/devel/kdevelop/Makefile @@ -22,7 +22,7 @@ LIB_DEPENDS= libkasten3controllers.so:devel/okteta \ libclang.so.${LLVM_VERSION:C/([1-9])([0-9])/\1/}:devel/llvm${LLVM_VERSION} RUN_DEPENDS= gmake:devel/gmake -USES= cmake:outsource compiler:c++11-lib desktop-file-utils \ +USES= cmake compiler:c++11-lib desktop-file-utils \ gettext grantlee:5 kde:5 qt:5 shared-mime-info shebangfix tar:xz USE_KDE= archive attica auth bookmarks codecs completion config configwidgets \ coreaddons crash guiaddons emoticons i18n iconthemes init \ diff --git a/devel/kdevplatform-kde4/Makefile b/devel/kdevplatform-kde4/Makefile index 588705b0a4d8..adef3a84f54e 100644 --- a/devel/kdevplatform-kde4/Makefile +++ b/devel/kdevplatform-kde4/Makefile @@ -19,7 +19,7 @@ LIB_DEPENDS= libsvn_client-1.so:devel/subversion \ libboost_thread.so:devel/boost-libs \ libqjson.so:devel/qjson@qt4 -USES= cmake:outsource compiler:c++11-lib grantlee:4 kde:4 qt:4 shebangfix \ +USES= cmake compiler:c++11-lib grantlee:4 kde:4 qt:4 shebangfix \ tar:xz USE_KDE= kate_run kdelibs automoc4 USE_QT= qmake_build moc_build uic_build rcc_build \ diff --git a/devel/kf5-extra-cmake-modules/Makefile b/devel/kf5-extra-cmake-modules/Makefile index f3fd380fab75..57abff891d09 100644 --- a/devel/kf5-extra-cmake-modules/Makefile +++ b/devel/kf5-extra-cmake-modules/Makefile @@ -12,7 +12,7 @@ COMMENT= Extra modules and scripts for CMake LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/COPYING-CMAKE-SCRIPTS -USES= cmake:outsource kde:5 qt:5 tar:xz +USES= cmake kde:5 qt:5 tar:xz USE_QT= buildtools_build linguisttools_build qmake_build HELP_USE= QT=help_build # qt5-help is only used to build a .qch file. diff --git a/devel/kf5-kapidox/Makefile b/devel/kf5-kapidox/Makefile index ff61fdd73485..0ee6459a4333 100644 --- a/devel/kf5-kapidox/Makefile +++ b/devel/kf5-kapidox/Makefile @@ -10,7 +10,7 @@ COMMENT= KF5 API Documentation Tools LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -USES= cmake:outsource kde:5 python qt:5 tar:xz +USES= cmake kde:5 python qt:5 tar:xz USE_KDE= archive ecm USE_QT= buildtools_build qmake_build USE_PYTHON= py3kplist diff --git a/devel/kf5-kauth/Makefile b/devel/kf5-kauth/Makefile index 065b3f1aecfc..03c02cc1aca5 100644 --- a/devel/kf5-kauth/Makefile +++ b/devel/kf5-kauth/Makefile @@ -9,7 +9,7 @@ COMMENT= KF5 abstraction to system policy and authentication features LIB_DEPENDS= libpolkit-qt5-core-1.so:sysutils/polkit-qt@qt5 -USES= cmake:outsource compiler:c++11-lib kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib kde:5 qt:5 tar:xz USE_KDE= coreaddons ecm USE_QT= buildtools_build core dbus gui linguisttools qmake_build \ widgets diff --git a/devel/kf5-kbookmarks/Makefile b/devel/kf5-kbookmarks/Makefile index 969e8236e957..1c5d37ffdda6 100644 --- a/devel/kf5-kbookmarks/Makefile +++ b/devel/kf5-kbookmarks/Makefile @@ -7,7 +7,7 @@ CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 library for bookmarks and the XBEL format -USES= cmake:outsource compiler:c++11-lib kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons ecm \ iconthemes widgetsaddons xmlgui USE_QT= buildtools_build core dbus gui linguisttools \ diff --git a/devel/kf5-kcmutils/Makefile b/devel/kf5-kcmutils/Makefile index b03fbbb05070..03d728ef4895 100644 --- a/devel/kf5-kcmutils/Makefile +++ b/devel/kf5-kcmutils/Makefile @@ -7,7 +7,7 @@ CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 utilities for working with KCModules -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons ecm i18n \ iconthemes itemviews kdeclarative package service \ widgetsaddons xmlgui diff --git a/devel/kf5-kconfig/Makefile b/devel/kf5-kconfig/Makefile index 5fc74d5e4361..1a0dece833f9 100644 --- a/devel/kf5-kconfig/Makefile +++ b/devel/kf5-kconfig/Makefile @@ -11,7 +11,7 @@ COMMENT= KF5 widgets for configuration dialogs LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/COPYING.LIB -USES= cmake:outsource compiler:c++11-lib kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib kde:5 qt:5 tar:xz USE_KDE= ecm USE_QT= buildtools_build concurrent core dbus gui linguisttools \ qmake_build testlib xml diff --git a/devel/kf5-kcoreaddons/Makefile b/devel/kf5-kcoreaddons/Makefile index 5b003d2040b7..c445186685cb 100644 --- a/devel/kf5-kcoreaddons/Makefile +++ b/devel/kf5-kcoreaddons/Makefile @@ -12,7 +12,7 @@ LICENSE_COMB= multi LICENSE_FILE_LGPL21+= ${WRKSRC}/COPYING.LIB LICENSE_FILE_BSD3CLAUSE= ${WRKSRC}/COPYING-CMAKE-SCRIPTS -USES= cmake:outsource compiler:c++11-lib kde:5 qt:5 shared-mime-info tar:xz +USES= cmake compiler:c++11-lib kde:5 qt:5 shared-mime-info tar:xz USE_KDE= ecm USE_QT= buildtools_build core linguisttools qmake_build diff --git a/devel/kf5-kcrash/Makefile b/devel/kf5-kcrash/Makefile index 87604d8267b0..072d45084b5c 100644 --- a/devel/kf5-kcrash/Makefile +++ b/devel/kf5-kcrash/Makefile @@ -7,7 +7,7 @@ CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 library to handle crash analysis and bug report from apps -USES= cmake:outsource compiler:c++11-lib kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib kde:5 qt:5 tar:xz USE_KDE= coreaddons ecm windowsystem USE_QT= buildtools_build core gui qmake_build widgets x11extras USE_XORG= ice sm x11 xext diff --git a/devel/kf5-kdbusaddons/Makefile b/devel/kf5-kdbusaddons/Makefile index f1be588b1544..420c77afda43 100644 --- a/devel/kf5-kdbusaddons/Makefile +++ b/devel/kf5-kdbusaddons/Makefile @@ -10,7 +10,7 @@ COMMENT= KF5 addons to QtDBus LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/COPYING.LIB -USES= cmake:outsource compiler:c++11-lib kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib kde:5 qt:5 tar:xz USE_KDE= ecm USE_QT= buildtools_build core dbus gui linguisttools \ qmake_build testlib x11extras diff --git a/devel/kf5-kdeclarative/Makefile b/devel/kf5-kdeclarative/Makefile index fe8755671eb2..6cd32c5b9ee8 100644 --- a/devel/kf5-kdeclarative/Makefile +++ b/devel/kf5-kdeclarative/Makefile @@ -9,7 +9,7 @@ COMMENT= KF5 library providing integration of QML and KDE Frameworks LIB_DEPENDS= libepoxy.so:graphics/libepoxy -USES= cmake:outsource compiler:c++11-lib gettext kde:5 pkgconfig \ +USES= cmake compiler:c++11-lib gettext kde:5 pkgconfig \ qt:5 tar:xz USE_KDE= completion config coreaddons globalaccel guiaddons i18n \ iconthemes jobwidgets kio package service widgetsaddons \ diff --git a/devel/kf5-kdoctools/Makefile b/devel/kf5-kdoctools/Makefile index 068fc398478e..8d9c4178efcc 100644 --- a/devel/kf5-kdoctools/Makefile +++ b/devel/kf5-kdoctools/Makefile @@ -13,7 +13,7 @@ BUILD_DEPENDS= ${LOCALBASE}/share/xsl/docbook/html/docbook.xsl:textproc/docbook- RUN_DEPENDS= ${LOCALBASE}/share/xsl/docbook/html/docbook.xsl:textproc/docbook-xsl \ docbook-xml>0:textproc/docbook-xml -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_GNOME= libxml2 libxslt USE_KDE= archive ecm i18n USE_QT= buildtools_build core qmake_build diff --git a/devel/kf5-kfilemetadata/Makefile b/devel/kf5-kfilemetadata/Makefile index dd376dc65ae1..2bdf3af466cc 100644 --- a/devel/kf5-kfilemetadata/Makefile +++ b/devel/kf5-kfilemetadata/Makefile @@ -15,7 +15,7 @@ LIB_DEPENDS= libavutil.so:multimedia/ffmpeg \ libtag.so:audio/taglib # TODO: maybe depend on textproc/catdoc -USES= cmake:outsource compiler:c++11-lib gettext kde:5 pkgconfig \ +USES= cmake compiler:c++11-lib gettext kde:5 pkgconfig \ qt:5 tar:xz USE_KDE= archive ecm i18n USE_QT= buildtools_build core qmake_build xml diff --git a/devel/kf5-ki18n/Makefile b/devel/kf5-ki18n/Makefile index e26ac9795045..920ed7a68ece 100644 --- a/devel/kf5-ki18n/Makefile +++ b/devel/kf5-ki18n/Makefile @@ -7,7 +7,7 @@ CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 advanced internationalization framework -USES= cmake:outsource compiler:c++11-lib gettext-runtime \ +USES= cmake compiler:c++11-lib gettext-runtime \ gettext-tools:build,run kde:5 qt:5 tar:xz USE_KDE= ecm USE_QT= buildtools_build concurrent core declarative qmake_build script testlib diff --git a/devel/kf5-kidletime/Makefile b/devel/kf5-kidletime/Makefile index 60cb1f1fb79f..2496788fa3a0 100644 --- a/devel/kf5-kidletime/Makefile +++ b/devel/kf5-kidletime/Makefile @@ -7,7 +7,7 @@ CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 library for monitoring user activity -USES= cmake:outsource compiler:c++11-lib kde:5 pkgconfig qt:5 tar:xz +USES= cmake compiler:c++11-lib kde:5 pkgconfig qt:5 tar:xz USE_KDE= ecm USE_QT= buildtools_build core dbus gui qmake_build widgets x11extras USE_XORG= ice sm x11 xext xcb xscrnsaver diff --git a/devel/kf5-kio/Makefile b/devel/kf5-kio/Makefile index 6c1e819e6067..11893dc76614 100644 --- a/devel/kf5-kio/Makefile +++ b/devel/kf5-kio/Makefile @@ -7,7 +7,7 @@ CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 resource and network access abstraction -USES= cmake:outsource compiler:c++11-lib desktop-file-utils \ +USES= cmake compiler:c++11-lib desktop-file-utils \ gettext kde:5 qt:5 ssl tar:xz USE_GNOME= libxml2 libxslt USE_KDE= archive auth bookmarks codecs completion config \ diff --git a/devel/kf5-kitemmodels/Makefile b/devel/kf5-kitemmodels/Makefile index 61fc04e85fe3..0dc5ae67ee19 100644 --- a/devel/kf5-kitemmodels/Makefile +++ b/devel/kf5-kitemmodels/Makefile @@ -7,7 +7,7 @@ CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 models for Qt Model/View system -USES= cmake:outsource compiler:c++11-lib kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib kde:5 qt:5 tar:xz USE_KDE= ecm USE_QT= buildtools_build core qmake_build testlib_build diff --git a/devel/kf5-knewstuff/Makefile b/devel/kf5-knewstuff/Makefile index c9c57a241704..1418437908f4 100644 --- a/devel/kf5-knewstuff/Makefile +++ b/devel/kf5-knewstuff/Makefile @@ -7,7 +7,7 @@ CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 library for downloading application assets from the network -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= archive attica5 auth codecs completion config \ configwidgets coreaddons ecm i18n iconthemes itemviews \ jobwidgets kio service sonnet textwidgets widgetsaddons \ diff --git a/devel/kf5-knotifications/Makefile b/devel/kf5-knotifications/Makefile index 8f34879e63d7..a0e1908367c4 100644 --- a/devel/kf5-knotifications/Makefile +++ b/devel/kf5-knotifications/Makefile @@ -9,7 +9,7 @@ COMMENT= KF5 abstraction for system notifications LIB_DEPENDS= libdbusmenu-qt5.so:devel/libdbusmenu-qt@qt5 -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= codecs config coreaddons ecm windowsystem USE_QT= buildtools_build core dbus gui linguisttools phonon4 \ qmake_build widgets x11extras diff --git a/devel/kf5-knotifyconfig/Makefile b/devel/kf5-knotifyconfig/Makefile index f5de87c5a0ca..dda55dba3862 100644 --- a/devel/kf5-knotifyconfig/Makefile +++ b/devel/kf5-knotifyconfig/Makefile @@ -7,7 +7,7 @@ CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 configuration system for KNotify -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= completion config coreaddons ecm i18n jobwidgets kio \ service widgetsaddons USE_QT= buildtools_build core dbus gui network phonon4 \ diff --git a/devel/kf5-kpackage/Makefile b/devel/kf5-kpackage/Makefile index 984ecb0c27b7..283141b77c4e 100644 --- a/devel/kf5-kpackage/Makefile +++ b/devel/kf5-kpackage/Makefile @@ -7,7 +7,7 @@ CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 library to load and install packages -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= archive config coreaddons doctools ecm i18n USE_QT= buildtools_build core qmake_build xml diff --git a/devel/kf5-kparts/Makefile b/devel/kf5-kparts/Makefile index c806d1d1cb0c..2158fba7acf9 100644 --- a/devel/kf5-kparts/Makefile +++ b/devel/kf5-kparts/Makefile @@ -7,7 +7,7 @@ CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 document centric plugin system -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons \ i18n iconthemes jobwidgets kio notifications service \ sonnet textwidgets widgetsaddons xmlgui diff --git a/devel/kf5-kpeople/Makefile b/devel/kf5-kpeople/Makefile index 963c7ed946b6..966716675f6f 100644 --- a/devel/kf5-kpeople/Makefile +++ b/devel/kf5-kpeople/Makefile @@ -7,7 +7,7 @@ CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 library providing access to contacts -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= config coreaddons ecm i18n itemviews service widgetsaddons USE_QT= buildtools_build core dbus declarative gui network qmake_build \ sql widgets diff --git a/devel/kf5-kpty/Makefile b/devel/kf5-kpty/Makefile index f860cff7213c..5ca91b6cee40 100644 --- a/devel/kf5-kpty/Makefile +++ b/devel/kf5-kpty/Makefile @@ -7,7 +7,7 @@ CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 pty abstraction -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= coreaddons ecm i18n USE_QT= buildtools_build core qmake_build diff --git a/devel/kf5-kservice/Makefile b/devel/kf5-kservice/Makefile index 58442539c6ac..8f61d4f72295 100644 --- a/devel/kf5-kservice/Makefile +++ b/devel/kf5-kservice/Makefile @@ -7,7 +7,7 @@ CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 advanced plugin and service introspection -USES= bison cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= bison cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= archive config coreaddons crash dbusaddons \ doctools ecm i18n USE_QT= buildtools_build core dbus gui qmake_build xml diff --git a/devel/kf5-ktexteditor/Makefile b/devel/kf5-ktexteditor/Makefile index e4200d9c4d02..c11d40c2b6e6 100644 --- a/devel/kf5-ktexteditor/Makefile +++ b/devel/kf5-ktexteditor/Makefile @@ -9,7 +9,7 @@ COMMENT= KF5 advanced embeddable text editor LIB_DEPENDS= libgit2.so:devel/libgit2 -USES= cmake:outsource compiler:c++11-lib gettext kde:5 pkgconfig qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 pkgconfig qt:5 tar:xz USE_KDE= archive auth codecs completion config configwidgets \ coreaddons ecm guiaddons i18n iconthemes itemviews \ jobwidgets kio parts service sonnet syntaxhighlighting \ diff --git a/devel/kf5-kunitconversion/Makefile b/devel/kf5-kunitconversion/Makefile index 904e7fde972f..6de2a714b7d8 100644 --- a/devel/kf5-kunitconversion/Makefile +++ b/devel/kf5-kunitconversion/Makefile @@ -7,7 +7,7 @@ CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 library for unit conversion -USES= cmake:outsource compiler:c++11-lib gettext kde:5 pkgconfig qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 pkgconfig qt:5 tar:xz USE_KDE= ecm i18n USE_QT= buildtools_build core network qmake_build xml diff --git a/devel/kf5-solid/Makefile b/devel/kf5-solid/Makefile index 40dd87ec92dd..8c655008770a 100644 --- a/devel/kf5-solid/Makefile +++ b/devel/kf5-solid/Makefile @@ -7,7 +7,7 @@ CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 hardware integration and detection -USES= bison cmake:outsource compiler:c++11-lib kde:5 qt:5 tar:xz +USES= bison cmake compiler:c++11-lib kde:5 qt:5 tar:xz USE_KDE= ecm USE_QT= buildtools_build concurrent core dbus declarative gui linguisttools \ network qmake_build testlib widgets xml diff --git a/devel/kf5-threadweaver/Makefile b/devel/kf5-threadweaver/Makefile index c2ed6a13583d..77776ce45c76 100644 --- a/devel/kf5-threadweaver/Makefile +++ b/devel/kf5-threadweaver/Makefile @@ -7,7 +7,7 @@ CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 addons to QtDBus -USES= cmake:outsource compiler:c++11-lib kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib kde:5 qt:5 tar:xz USE_KDE= ecm USE_QT= buildtools_build core network qmake_build testlib widgets xml diff --git a/devel/kio-extras/Makefile b/devel/kio-extras/Makefile index 4870d1d69858..b059d39a1761 100644 --- a/devel/kio-extras/Makefile +++ b/devel/kio-extras/Makefile @@ -10,7 +10,7 @@ COMMENT= Plasma5 library to increase the functionality of KIO LIB_DEPENDS= libtag.so:audio/taglib \ libHalf.so:graphics/ilmbase -USES= cmake:outsource compiler:c++11-lib gettext gperf kde:5 \ +USES= cmake compiler:c++11-lib gettext gperf kde:5 \ pkgconfig qt:5 shared-mime-info shebangfix tar:xz USE_KDE= activities archive auth bookmarks codecs completion config \ configwidgets coreaddons crash dbusaddons dnssd doctools ecm \ diff --git a/devel/leatherman/Makefile b/devel/leatherman/Makefile index 5ffb6e35edc9..15b920c48888 100644 --- a/devel/leatherman/Makefile +++ b/devel/leatherman/Makefile @@ -13,7 +13,7 @@ LICENSE= APACHE20 LIB_DEPENDS= libboost_system.so:devel/boost-libs \ libcurl.so:ftp/curl -USES= compiler:c++11-lang cmake:outsource gettext +USES= compiler:c++11-lang cmake gettext USE_GITHUB= yes GH_ACCOUNT= puppetlabs diff --git a/devel/libarea/Makefile b/devel/libarea/Makefile index 302454d85140..8345f72a40fa 100644 --- a/devel/libarea/Makefile +++ b/devel/libarea/Makefile @@ -17,7 +17,7 @@ USE_GITHUB= yes GH_ACCOUNT= Heeks GH_TAGNAME= f1986ac -USES= cmake:outsource python +USES= cmake python USE_LDCONFIG= yes post-patch: diff --git a/devel/libbson/Makefile b/devel/libbson/Makefile index 4721df8557d8..8caebace29fc 100644 --- a/devel/libbson/Makefile +++ b/devel/libbson/Makefile @@ -13,7 +13,7 @@ LICENSE= APACHE20 USE_GITHUB= yes GH_ACCOUNT= mongodb -USES= cmake:outsource pkgconfig +USES= cmake pkgconfig USE_LDCONFIG= yes .include <bsd.port.mk> diff --git a/devel/libdbusmenu-qt/Makefile b/devel/libdbusmenu-qt/Makefile index 7dee2aa9964b..c120ce96c722 100644 --- a/devel/libdbusmenu-qt/Makefile +++ b/devel/libdbusmenu-qt/Makefile @@ -18,7 +18,7 @@ LICENSE= LGPL20 FLAVORS= qt5 qt4 FLAVOR?= ${FLAVORS:[1]} -USES= compiler:c++11-lib cmake:outsource +USES= compiler:c++11-lib cmake USE_LDCONFIG= yes . if ${FLAVOR} == qt4 diff --git a/devel/libflatarray/Makefile b/devel/libflatarray/Makefile index 6f42b8d7b3f5..b5be811e26d8 100644 --- a/devel/libflatarray/Makefile +++ b/devel/libflatarray/Makefile @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= boost-libs>=1.48:devel/boost-libs -USES= cmake:outsource compiler:c++11-lib +USES= cmake compiler:c++11-lib CMAKE_ARGS= -DWITH_CUDA:BOOL=FALSE diff --git a/devel/libfmt/Makefile b/devel/libfmt/Makefile index 0c510b30234a..035067e4f41a 100644 --- a/devel/libfmt/Makefile +++ b/devel/libfmt/Makefile @@ -11,7 +11,7 @@ COMMENT= Fmt is an open-source formatting library for C++ LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE.rst -USES= cmake:outsource compiler:c++11-lib +USES= cmake compiler:c++11-lib USE_GITHUB= yes GH_ACCOUNT= fmtlib GH_PROJECT= fmt diff --git a/devel/libftdi1/Makefile b/devel/libftdi1/Makefile index 835d407ea732..d7f00347904a 100644 --- a/devel/libftdi1/Makefile +++ b/devel/libftdi1/Makefile @@ -22,7 +22,7 @@ OPTIONS_SUB= yes BOOST_DESC= Build with boost PYTHON_DESC= Build Python bindings -USES= cmake compiler:c++11-lang gettext-runtime pkgconfig tar:bzip2 +USES= cmake:insource compiler:c++11-lang gettext-runtime pkgconfig tar:bzip2 USE_LDCONFIG= yes PORTDOCS= COPYING.LIB ChangeLog README diff --git a/devel/libgpkg/Makefile b/devel/libgpkg/Makefile index e56afbfbdfcc..f52a51fa0d86 100644 --- a/devel/libgpkg/Makefile +++ b/devel/libgpkg/Makefile @@ -20,7 +20,7 @@ OPTIONS_DEFINE= GEOS OPTIONS_DEFAULT=GEOS USE_LDCONFIG= yes -USES= cmake tar:bzip2 +USES= cmake:insource tar:bzip2 PLIST_SUB= PORTVERSION=${PORTVERSION} WRKSRC= ${WRKDIR}/luciad-libgpkg-c56e3708453e diff --git a/devel/libkgapi-kde4/Makefile b/devel/libkgapi-kde4/Makefile index 7fc706f447c2..b7630e42a723 100644 --- a/devel/libkgapi-kde4/Makefile +++ b/devel/libkgapi-kde4/Makefile @@ -18,7 +18,7 @@ EXPIRATION_DATE= 2018-12-31 LIB_DEPENDS= libqjson.so:devel/qjson@qt4 -USES= cmake:outsource kde:4 qt:4 tar:bzip2 +USES= cmake kde:4 qt:4 tar:bzip2 USE_KDE= automoc4 kdelibs pimlibs USE_LDCONFIG= yes USE_QT= corelib network webkit xml \ diff --git a/devel/libkolab/Makefile b/devel/libkolab/Makefile index 3169f77878fd..237d9c93e9f0 100644 --- a/devel/libkolab/Makefile +++ b/devel/libkolab/Makefile @@ -28,7 +28,7 @@ CMAKE_ARGS= -DBUILD_TESTS:BOOL=OFF \ -DPHP_BINDINGS:BOOL=OFF \ -DPYTHON_BINDINGS:BOOL=OFF \ -DUSE_LIBCALENDARING:BOOL=OFF -USES= cmake:outsource kde:4 qt:4 +USES= cmake kde:4 qt:4 USE_KDE= automoc4 kdelibs pimlibs USE_LDCONFIG= yes USE_QT= corelib dbus gui network svg xml \ diff --git a/devel/liblxqt-l10n/Makefile b/devel/liblxqt-l10n/Makefile index 95c8b86cd9e8..d0d0d31d36c3 100644 --- a/devel/liblxqt-l10n/Makefile +++ b/devel/liblxqt-l10n/Makefile @@ -13,7 +13,7 @@ COMMENT= Translations of liblxqt LICENSE= LGPL21+ -USES= cmake:outsource lxqt pkgconfig qt:5 tar:xz +USES= cmake lxqt pkgconfig qt:5 tar:xz USE_QT= buildtools_build qmake_build linguisttools USE_LXQT= buildtools diff --git a/devel/liblxqt/Makefile b/devel/liblxqt/Makefile index 0dbb592f71b7..403e4000bb52 100644 --- a/devel/liblxqt/Makefile +++ b/devel/liblxqt/Makefile @@ -14,7 +14,7 @@ LICENSE= LGPL21+ LIB_DEPENDS= libpolkit-qt5-core-1.so:sysutils/polkit-qt@qt5 -USES= cmake:outsource compiler:c++11-lib gettext kde:5 lxqt \ +USES= cmake compiler:c++11-lib gettext kde:5 lxqt \ pkgconfig qt:5 tar:xz USE_QT= buildtools_build qmake_build dbus core gui linguisttools \ svg widgets x11extras xml diff --git a/devel/libqtxdg/Makefile b/devel/libqtxdg/Makefile index 34f88bdcb647..7752744eb136 100644 --- a/devel/libqtxdg/Makefile +++ b/devel/libqtxdg/Makefile @@ -12,7 +12,7 @@ COMMENT= Qt implementation of freedesktop.org xdg specs LICENSE= LGPL21+ -USES= cmake:outsource compiler:c++11-lib lxqt pkgconfig qt:5 tar:xz +USES= cmake compiler:c++11-lib lxqt pkgconfig qt:5 tar:xz USE_LDCONFIG= yes USE_QT= buildtools_build qmake_build core dbus gui svg widgets \ xml diff --git a/devel/librolegen/Makefile b/devel/librolegen/Makefile index 5bb3321fa6e1..610879677439 100644 --- a/devel/librolegen/Makefile +++ b/devel/librolegen/Makefile @@ -14,7 +14,7 @@ BUILD_DEPENDS= ${LOCALBASE}/share/cmake/Modules/webOS/webOS.cmake:devel/cmake-mo USE_GITHUB= yes GH_ACCOUNT= FreeWebOS -USES= cmake:outsource +USES= cmake USE_LDCONFIG= yes diff --git a/devel/libsimdpp/Makefile b/devel/libsimdpp/Makefile index 76d7d975161a..25890cb605db 100644 --- a/devel/libsimdpp/Makefile +++ b/devel/libsimdpp/Makefile @@ -17,7 +17,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE_1_0.txt PORTSCOUT= limit:^[v1-9] -USES= cmake:outsource +USES= cmake USE_GITHUB= yes GH_ACCOUNT= p12tic NO_BUILD= yes diff --git a/devel/libtap/Makefile b/devel/libtap/Makefile index cdd97b3eb8a5..da46cf22c22d 100644 --- a/devel/libtap/Makefile +++ b/devel/libtap/Makefile @@ -12,7 +12,7 @@ COMMENT= Library implementing the Test Anything Protocol LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/COPYING -USES= cmake:outsource perl5 tar:bz2 +USES= cmake perl5 tar:bz2 USE_LDCONFIG= yes USE_PERL5= build diff --git a/devel/llbuild/Makefile b/devel/llbuild/Makefile index a58c8b50e051..22386f3a1402 100644 --- a/devel/llbuild/Makefile +++ b/devel/llbuild/Makefile @@ -18,7 +18,7 @@ BROKEN_powerpc64= fails to compile: unrecognized command line option "-Wdocument LIB_DEPENDS= libsqlite3.so:databases/sqlite3 -USES= cmake:outsource +USES= cmake USE_GITHUB= yes GH_ACCOUNT= apple diff --git a/devel/llvm-cheri/Makefile b/devel/llvm-cheri/Makefile index 63760005c86e..aa1824148bf8 100644 --- a/devel/llvm-cheri/Makefile +++ b/devel/llvm-cheri/Makefile @@ -17,7 +17,7 @@ COMMAND_SUFFIX= ${LLVM_SUFFIX} DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}${LLVM_SUFFIX} DATADIR= ${PREFIX}/share/${PORTNAME}${LLVM_SUFFIX} -USES= cmake:outsource compiler:c++11-lib libedit perl5 \ +USES= cmake compiler:c++11-lib libedit perl5 \ shebangfix USE_LDCONFIG= ${LLVM_PREFIX}/lib SHEBANG_FILES= utils/lit/lit.py utils/llvm-lit/llvm-lit.in \ diff --git a/devel/llvm-devel/Makefile b/devel/llvm-devel/Makefile index ef79fa4d3953..b34bbd81c518 100644 --- a/devel/llvm-devel/Makefile +++ b/devel/llvm-devel/Makefile @@ -19,7 +19,7 @@ DATADIR= ${PREFIX}/share/${PORTNAME}${LLVM_SUFFIX} BUILD_DEPENDS= -USES= cmake:outsource compiler:c++11-lib libedit perl5 \ +USES= cmake compiler:c++11-lib libedit perl5 \ shebangfix USE_LDCONFIG= ${LLVM_PREFIX}/lib _USES_PYTHON?= python:build:2.7 diff --git a/devel/llvm38/Makefile b/devel/llvm38/Makefile index 7c20968f0081..1236d83ff658 100644 --- a/devel/llvm38/Makefile +++ b/devel/llvm38/Makefile @@ -25,7 +25,7 @@ LLVM_PREFIX= ${PREFIX}/llvm${LLVM_SUFFIX} DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}${LLVM_SUFFIX} DATADIR= ${PREFIX}/share/${PORTNAME}${LLVM_SUFFIX} -USES= cmake:outsource,noninja compiler:c++11-lib libedit perl5 tar:xz \ +USES= cmake:noninja compiler:c++11-lib libedit perl5 tar:xz \ shebangfix USE_LDCONFIG= ${LLVM_PREFIX}/lib SHEBANG_FILES= utils/lit/lit.py utils/llvm-lit/llvm-lit.in \ diff --git a/devel/llvm40/Makefile b/devel/llvm40/Makefile index 8ef033da2c16..dd65f350053b 100644 --- a/devel/llvm40/Makefile +++ b/devel/llvm40/Makefile @@ -25,7 +25,7 @@ LLVM_PREFIX= ${PREFIX}/llvm${LLVM_SUFFIX} DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}${LLVM_SUFFIX} DATADIR= ${PREFIX}/share/${PORTNAME}${LLVM_SUFFIX} -USES= cmake:outsource compiler:c++11-lib libedit perl5 tar:xz \ +USES= cmake compiler:c++11-lib libedit perl5 tar:xz \ shebangfix _USES_PYTHON?= python:2.7,build USES+= ${_USES_PYTHON} diff --git a/devel/llvm50/Makefile b/devel/llvm50/Makefile index 7a418d35a085..9d6b5d9a67c7 100644 --- a/devel/llvm50/Makefile +++ b/devel/llvm50/Makefile @@ -28,7 +28,7 @@ LLVM_PREFIX= ${PREFIX}/llvm${LLVM_SUFFIX} DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}${LLVM_SUFFIX} DATADIR= ${PREFIX}/share/${PORTNAME}${LLVM_SUFFIX} -USES= cmake:outsource compiler:c++11-lib libedit perl5 tar:xz \ +USES= cmake compiler:c++11-lib libedit perl5 tar:xz \ shebangfix _USES_PYTHON?= python:2.7,build USES+= ${_USES_PYTHON} diff --git a/devel/llvm60/Makefile b/devel/llvm60/Makefile index 20f053daf070..f5da1870cb0a 100644 --- a/devel/llvm60/Makefile +++ b/devel/llvm60/Makefile @@ -25,7 +25,7 @@ LLVM_PREFIX= ${PREFIX}/llvm${LLVM_SUFFIX} DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}${LLVM_SUFFIX} DATADIR= ${PREFIX}/share/${PORTNAME}${LLVM_SUFFIX} -USES= cmake:outsource compiler:c++11-lib libedit perl5 tar:xz \ +USES= cmake compiler:c++11-lib libedit perl5 tar:xz \ shebangfix _USES_PYTHON?= python:2.7,build USES+= ${_USES_PYTHON} diff --git a/devel/llvm70/Makefile b/devel/llvm70/Makefile index cf257382aa1d..a2e0bd874768 100644 --- a/devel/llvm70/Makefile +++ b/devel/llvm70/Makefile @@ -24,7 +24,7 @@ LLVM_PREFIX= ${PREFIX}/llvm${LLVM_SUFFIX} DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}${LLVM_SUFFIX} DATADIR= ${PREFIX}/share/${PORTNAME}${LLVM_SUFFIX} -USES= cmake:outsource compiler:c++11-lib libedit perl5 tar:xz \ +USES= cmake compiler:c++11-lib libedit perl5 tar:xz \ shebangfix _USES_PYTHON?= python:2.7,build USES+= ${_USES_PYTHON} diff --git a/devel/lokalize-kde4/Makefile b/devel/lokalize-kde4/Makefile index ed46d1656fb6..495f702d232c 100644 --- a/devel/lokalize-kde4/Makefile +++ b/devel/lokalize-kde4/Makefile @@ -13,7 +13,7 @@ EXPIRATION_DATE= 2018-12-31 LIB_DEPENDS= libhunspell-1.6.so:textproc/hunspell -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs automoc4 USE_QT= moc_build qmake_build rcc_build uic_build \ sql diff --git a/devel/lokalize/Makefile b/devel/lokalize/Makefile index cad7604a65df..9cedaef47339 100644 --- a/devel/lokalize/Makefile +++ b/devel/lokalize/Makefile @@ -9,7 +9,7 @@ COMMENT= Computer-aided translation system LIB_DEPENDS= libhunspell-1.6.so:textproc/hunspell -USES= cmake:outsource compiler:c++11-lang desktop-file-utils gettext \ +USES= cmake compiler:c++11-lang desktop-file-utils gettext \ kde:5 qt:5 tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons doctools ecm i18n itemviews \ diff --git a/devel/lxqt-build-tools/Makefile b/devel/lxqt-build-tools/Makefile index 712a9fa999da..cc73397cbae2 100644 --- a/devel/lxqt-build-tools/Makefile +++ b/devel/lxqt-build-tools/Makefile @@ -12,7 +12,7 @@ COMMENT= Helpers CMake modules for LXQt LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/BSD-3-Clause -USES= cmake:outsource lxqt pkgconfig qt:5 tar:xz +USES= cmake lxqt pkgconfig qt:5 tar:xz USE_QT= qmake_build buildtools_build core USE_GNOME= glib20 diff --git a/devel/mongo-c-driver/Makefile b/devel/mongo-c-driver/Makefile index e618ebb89ea2..75dabde3b42e 100644 --- a/devel/mongo-c-driver/Makefile +++ b/devel/mongo-c-driver/Makefile @@ -17,7 +17,7 @@ LIB_DEPENDS= libsasl2.so:security/cyrus-sasl2 \ USE_GITHUB= yes GH_ACCOUNT= mongodb -USES= cmake:outsource pkgconfig +USES= cmake pkgconfig #USES= cmake:noninja pkgconfig USE_LDCONFIG= yes LDFLAGS+= -pthread diff --git a/devel/nlohmann-json/Makefile b/devel/nlohmann-json/Makefile index b109db288b13..4f0f2fe2cb00 100644 --- a/devel/nlohmann-json/Makefile +++ b/devel/nlohmann-json/Makefile @@ -14,7 +14,7 @@ COMMENT= JSON library for Modern C++ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.MIT -USES= cmake:outsource compiler:c++11-lib +USES= cmake compiler:c++11-lib USE_GITHUB= yes GH_ACCOUNT= nlohmann diff --git a/devel/nss_wrapper/Makefile b/devel/nss_wrapper/Makefile index b72ea4e8a7c7..1fbde8374e8d 100644 --- a/devel/nss_wrapper/Makefile +++ b/devel/nss_wrapper/Makefile @@ -11,7 +11,7 @@ COMMENT= Wrapper for the user, group and hosts NSS API LICENSE= GPLv3 -USES= cmake:outsource compiler:c++11-lang perl5 shebangfix +USES= cmake compiler:c++11-lang perl5 shebangfix USE_PERL5= run USE_LDCONFIG= yes diff --git a/devel/okteta-kde4/Makefile b/devel/okteta-kde4/Makefile index ff0df646c4f4..f1c9b88f77ac 100644 --- a/devel/okteta-kde4/Makefile +++ b/devel/okteta-kde4/Makefile @@ -13,7 +13,7 @@ EXPIRATION_DATE= 2018-12-31 LIB_DEPENDS= libqca.so:devel/qca@qt4 -USES= cmake:outsource kde:4 qt:4 shared-mime-info tar:xz +USES= cmake kde:4 qt:4 shared-mime-info tar:xz USE_KDE= kdelibs automoc4 USE_QT= moc_build qmake_build rcc_build uic_build \ corelib designer gui script scripttools xml diff --git a/devel/okteta/Makefile b/devel/okteta/Makefile index 805bfdbed9d6..7ecf3161a8ec 100644 --- a/devel/okteta/Makefile +++ b/devel/okteta/Makefile @@ -12,7 +12,7 @@ COMMENT= KDE hex editor LIB_DEPENDS= libqca-qt5.so:devel/qca@qt5 -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 \ +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 \ shared-mime-info tar:xz USE_KDE= attica auth bookmarks codecs completion crash \ config configwidgets coreaddons dbusaddons doctools \ diff --git a/devel/opendht/Makefile b/devel/opendht/Makefile index a72717398633..93f079afbbc6 100644 --- a/devel/opendht/Makefile +++ b/devel/opendht/Makefile @@ -18,7 +18,7 @@ LIB_DEPENDS= libargon2.so:security/libargon2 \ libnettle.so:security/nettle \ libgnutls.so:security/gnutls -USES= cmake:outsource compiler:c++11-lib pathfix pkgconfig readline:port +USES= cmake compiler:c++11-lib pathfix pkgconfig readline:port USE_GITHUB= yes GH_ACCOUNT= savoirfairelinux USE_LDCONFIG= yes diff --git a/devel/p5-perlkde-kde4/Makefile b/devel/p5-perlkde-kde4/Makefile index ce8a16a7f6c9..07a3e021d6c0 100644 --- a/devel/p5-perlkde-kde4/Makefile +++ b/devel/p5-perlkde-kde4/Makefile @@ -12,7 +12,7 @@ COMMENT= Perl bindings for KDE DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource compiler:c++11-lib kde:4 perl5 qt:4 tar:xz +USES= cmake compiler:c++11-lib kde:4 perl5 qt:4 tar:xz USE_KDE= perlqt smokekde automoc4 USE_QT= network opengl sql svg xml \ qmake_build moc_build uic_build rcc_build diff --git a/devel/p5-perlqt-kde4/Makefile b/devel/p5-perlqt-kde4/Makefile index 2999ec7ead39..ca7027de573f 100644 --- a/devel/p5-perlqt-kde4/Makefile +++ b/devel/p5-perlqt-kde4/Makefile @@ -15,7 +15,7 @@ EXPIRATION_DATE= 2018-12-31 LIB_DEPENDS= libqscintilla2_qt4.so:devel/qscintilla2 \ libqwt.so:x11-toolkits/qwt5 -USES= cmake:outsource kde:4 perl5 qt:4 tar:xz +USES= cmake kde:4 perl5 qt:4 tar:xz USE_KDE= smokeqt qimageblitz USE_QT= corelib dbus gui network xml \ qmake_build moc_build uic_build rcc_build diff --git a/devel/pam_wrapper/Makefile b/devel/pam_wrapper/Makefile index bb5839a95cdd..0cb242bec17c 100644 --- a/devel/pam_wrapper/Makefile +++ b/devel/pam_wrapper/Makefile @@ -13,7 +13,7 @@ LICENSE= GPLv3 EXTRA_PATCHES= ${PATCHDIR}/python-detection.patch:-p1 -USES= cmake:outsource python:2.7+ +USES= cmake python:2.7+ USE_LDCONFIG= yes CMAKE_ARGS= -DMAN_INSTALL_DIR:PATH="${PREFIX}/man" diff --git a/devel/physfs-devel/Makefile b/devel/physfs-devel/Makefile index 005065218111..e297ab746a6a 100644 --- a/devel/physfs-devel/Makefile +++ b/devel/physfs-devel/Makefile @@ -12,7 +12,7 @@ COMMENT= Library to provide abstract access to various archives CONFLICTS_INSTALL= physfs-[0-9]* -USES= cmake tar:bzip2 +USES= cmake:insource tar:bzip2 USE_LDCONFIG= yes .include <bsd.port.mk> diff --git a/devel/plasma5-khotkeys/Makefile b/devel/plasma5-khotkeys/Makefile index b8f25d0a4c23..cb42987ebeaa 100644 --- a/devel/plasma5-khotkeys/Makefile +++ b/devel/plasma5-khotkeys/Makefile @@ -8,7 +8,7 @@ CATEGORIES= devel kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 library for hotkeys -USES= cmake:outsource compiler:c++11-lib cpe gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib cpe gettext kde:5 qt:5 tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons ecm emoticons globalaccel \ guiaddons i18n iconthemes init itemmodels itemviews jobwidgets \ diff --git a/devel/plasma5-kwrited/Makefile b/devel/plasma5-kwrited/Makefile index f4fe0fddd413..448028049e33 100644 --- a/devel/plasma5-kwrited/Makefile +++ b/devel/plasma5-kwrited/Makefile @@ -8,7 +8,7 @@ CATEGORIES= devel kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 daemon listening for wall and write messages -USES= cmake:outsource compiler:c++11-lib cpe gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib cpe 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 diff --git a/devel/plasma5-plasma-sdk/Makefile b/devel/plasma5-plasma-sdk/Makefile index eb100978d8cc..d2e2597d2dc4 100644 --- a/devel/plasma5-plasma-sdk/Makefile +++ b/devel/plasma5-plasma-sdk/Makefile @@ -8,7 +8,7 @@ CATEGORIES= devel kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 applications useful for Plasma development -USES= cmake:outsource compiler:c++11-lib cpe gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib cpe gettext kde:5 qt:5 tar:xz USE_KDE= archive attica auth codecs completion config configwidgets \ coreaddons dbusaddons ecm i18n iconthemes itemmodels \ jobwidgets kdeclarative kio kirigami2 newstuff package parts \ diff --git a/devel/poxml-kde4/Makefile b/devel/poxml-kde4/Makefile index a8a26f4ac708..88cea6127dc9 100644 --- a/devel/poxml-kde4/Makefile +++ b/devel/poxml-kde4/Makefile @@ -13,7 +13,7 @@ EXPIRATION_DATE= 2018-12-31 BUILD_DEPENDS= ${LOCALBASE}/lib/libantlr.a:devel/antlr -USES= cmake:outsource gettext-tools:build,run kde:4 qt:4 tar:xz +USES= cmake gettext-tools:build,run kde:4 qt:4 tar:xz USE_KDE= kdelibs automoc4 USE_QT= moc_build qmake_build rcc_build uic_build \ corelib xml diff --git a/devel/poxml/Makefile b/devel/poxml/Makefile index ce9a2fd4a6bc..11c269a4a018 100644 --- a/devel/poxml/Makefile +++ b/devel/poxml/Makefile @@ -7,7 +7,7 @@ CATEGORIES= devel kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Tools to translate Docbook XML using gettext -USES= cmake:outsource compiler:c++11-lang gettext-tools:build,run \ +USES= cmake compiler:c++11-lang gettext-tools:build,run \ kde:5 qt:5 tar:xz USE_KDE= doctools ecm USE_QT= core xml \ diff --git a/devel/py-krosspython-kde4/Makefile b/devel/py-krosspython-kde4/Makefile index 4fab495ea8cb..9b545834a506 100644 --- a/devel/py-krosspython-kde4/Makefile +++ b/devel/py-krosspython-kde4/Makefile @@ -13,7 +13,7 @@ COMMENT= Kross Python scripting library DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 python:2.7 qt:4 tar:xz +USES= cmake kde:4 python:2.7 qt:4 tar:xz USE_KDE= kdelibs automoc4 USE_QT= corelib gui qmake_build moc_build uic_build rcc_build CMAKE_ARGS+= -DBUILD_falcon:BOOL=FALSE \ diff --git a/devel/py-opendht/Makefile b/devel/py-opendht/Makefile index 516ca9322aec..227f8a210e8b 100644 --- a/devel/py-opendht/Makefile +++ b/devel/py-opendht/Makefile @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/../COPYING LIB_DEPENDS= libopendht.so:devel/opendht \ libgnutls.so:security/gnutls -USES= cmake:outsource compiler:c++11-lib localbase python:3.4+ +USES= cmake compiler:c++11-lib localbase python:3.4+ USE_GITHUB= yes GH_ACCOUNT= savoirfairelinux USE_PYTHON= distutils cython autoplist diff --git a/devel/py-pykde4-kde4/Makefile b/devel/py-pykde4-kde4/Makefile index cdeb4a09a26f..7d3ab901aa2b 100644 --- a/devel/py-pykde4-kde4/Makefile +++ b/devel/py-pykde4-kde4/Makefile @@ -14,7 +14,7 @@ EXPIRATION_DATE= 2018-12-31 LIB_DEPENDS= libqwt.so:x11-toolkits/qwt5 -USES= cmake:outsource kde:4 python:2.7 pyqt:4 qt:4 tar:xz +USES= cmake kde:4 python:2.7 pyqt:4 qt:4 tar:xz USE_KDE= kdelibs nepomuk-core okular pimlibs \ akonadi automoc4 soprano USE_PYQT= declarative designer gui network opengl phonon script sip \ diff --git a/devel/py-pykdeuic4-kde4/Makefile b/devel/py-pykdeuic4-kde4/Makefile index 3a293f898dd9..ace11500d2ed 100644 --- a/devel/py-pykdeuic4-kde4/Makefile +++ b/devel/py-pykdeuic4-kde4/Makefile @@ -13,7 +13,7 @@ COMMENT= Enhanced version of pyuic4 DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource python:2.7 kde:4 qt:4 shebangfix tar:xz +USES= cmake python:2.7 kde:4 qt:4 shebangfix tar:xz USE_KDE= kdelibs automoc4 pykde4 USE_QT= moc_build qmake_build rcc_build uic_build DISTINFO_FILE= ${.CURDIR:H:H}/devel/py-pykde4-kde4/distinfo diff --git a/devel/pybind11/Makefile b/devel/pybind11/Makefile index 25d75ce82153..c6a7788cf2d8 100644 --- a/devel/pybind11/Makefile +++ b/devel/pybind11/Makefile @@ -12,7 +12,7 @@ COMMENT= Seamless interoperability between C++11 and Python (cmake part) LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -USES= cmake:outsource compiler:c++11-lang +USES= cmake compiler:c++11-lang USE_GITHUB= yes GH_ACCOUNT= pybind NO_ARCH= yes diff --git a/devel/qca/Makefile b/devel/qca/Makefile index d3b395f57b2b..caea5ce6d33d 100644 --- a/devel/qca/Makefile +++ b/devel/qca/Makefile @@ -20,7 +20,7 @@ RUN_DEPENDS= ${LOCALBASE}/share/certs/ca-root-nss.crt:security/ca_root_nss FLAVORS= qt5 qt4 FLAVOR?= ${FLAVORS:[1]} -USES= cmake:outsource tar:xz +USES= cmake tar:xz CMAKE_ARGS= -DBUILD_PLUGINS=none -DBUILD_TESTS=no \ -DPKGCONFIG_INSTALL_PREFIX=${PREFIX}/libdata/pkgconfig \ -DQCA_FEATURE_INSTALL_DIR=${QT_MKSPECDIR}/features \ diff --git a/devel/qgit/Makefile b/devel/qgit/Makefile index c1a354430a9a..54abf28140b9 100644 --- a/devel/qgit/Makefile +++ b/devel/qgit/Makefile @@ -11,7 +11,7 @@ COMMENT= Graphical interface to git repositories LICENSE= GPLv2 -USES= cmake:outsource qt:5 +USES= cmake qt:5 USE_QT= core gui widgets \ buildtools_build qmake_build diff --git a/devel/raknet/Makefile b/devel/raknet/Makefile index 6137fc803baf..033bdfad54ef 100644 --- a/devel/raknet/Makefile +++ b/devel/raknet/Makefile @@ -30,7 +30,7 @@ LEGAL_TEXT= Special authorization granted to distribute version 3.x under GPLv3 NO_WRKSUBDIR= yes -USES= dos2unix cmake zip +USES= dos2unix cmake:insource zip USE_LDCONFIG= yes USE_GCC= any diff --git a/devel/range-v3/Makefile b/devel/range-v3/Makefile index db7d1abaa832..4c58532de308 100644 --- a/devel/range-v3/Makefile +++ b/devel/range-v3/Makefile @@ -10,7 +10,7 @@ COMMENT= Experimental range library for C++11/14/17 LICENSE= BSL LICENSE_FILE= ${WRKSRC}/LICENSE.txt -USES= cmake:outsource +USES= cmake USE_GITHUB= yes GH_ACCOUNT= ericniebler NO_BUILD= yes diff --git a/devel/rapidjson/Makefile b/devel/rapidjson/Makefile index 14b941faf478..8ff91debe860 100644 --- a/devel/rapidjson/Makefile +++ b/devel/rapidjson/Makefile @@ -48,7 +48,7 @@ CXXFLAGS+= -Wno-zero-as-null-pointer-constant post-patch: @${REINPLACE_CMD} -e 's|DOC_INSTALL_DIR}/examples"|CMAKE_INSTALL_PREFIX}/share/examples/${PORTNAME}"| ; s| -march=native||' ${WRKSRC}/CMakeLists.txt @${REINPLACE_CMD} -e 's|-Werror||' ${WRKSRC}/example/CMakeLists.txt ${WRKSRC}/test/unittest/CMakeLists.txt - @${REINPLACE_CMD} -e 's|.*travis.*||' ${WRKSRC}/CMakeLists.txt # travis_doc breaks cmake, see https://github.com/miloyip/rapidjson/issues/715 + @${REINPLACE_CMD} -e 's|.*travis.*||' ${WRKSRC}/CMakeLists.txt # travis_doc breaks cmake: see https://github.com/miloyip/rapidjson/issues/715 @${REINPLACE_CMD} -e 's|add_subdirectory.*googletest.*|link_directories(${LOCALBASE}/lib)|' ${WRKSRC}/test/CMakeLists.txt post-install: diff --git a/devel/raylib/Makefile b/devel/raylib/Makefile index 3f5323b9ee0d..67a6f42096a4 100644 --- a/devel/raylib/Makefile +++ b/devel/raylib/Makefile @@ -13,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.md LIB_DEPENDS= libglfw.so:graphics/glfw -USES= cmake:outsource localbase:ldflags +USES= cmake localbase:ldflags USE_GITHUB= yes GH_ACCOUNT= raysan5 USE_LDCONFIG= yes diff --git a/devel/replxx/Makefile b/devel/replxx/Makefile index 046b7916ccc2..907bc84c08d1 100644 --- a/devel/replxx/Makefile +++ b/devel/replxx/Makefile @@ -12,7 +12,7 @@ COMMENT= Portable readline library capable of handling UTF-8 LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE.md -USES= cmake:outsource compiler:c++14-lang +USES= cmake compiler:c++14-lang USE_GITHUB= yes GH_ACCOUNT= AmokHuginnsson diff --git a/devel/resolv_wrapper/Makefile b/devel/resolv_wrapper/Makefile index e8327675eb96..a47378fbb861 100644 --- a/devel/resolv_wrapper/Makefile +++ b/devel/resolv_wrapper/Makefile @@ -10,7 +10,7 @@ COMMENT= Wrapper for dns name resolving or dns faking LICENSE= GPLv3 -USES= cmake:outsource +USES= cmake USE_LDCONFIG= yes CMAKE_ARGS= -DMAN_INSTALL_DIR:PATH="${PREFIX}/man" diff --git a/devel/ruby-korundum-kde4/Makefile b/devel/ruby-korundum-kde4/Makefile index 093b8d024b48..5a1a7859a5df 100644 --- a/devel/ruby-korundum-kde4/Makefile +++ b/devel/ruby-korundum-kde4/Makefile @@ -12,7 +12,7 @@ COMMENT= Ruby bindings for KDE DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kate kdelibs okular pimlibs \ qtruby smokegen smokekde smokeqt \ akonadi automoc4 soprano diff --git a/devel/ruby-krossruby-kde4/Makefile b/devel/ruby-krossruby-kde4/Makefile index 4ca5c43b46d6..e45ef486348d 100644 --- a/devel/ruby-krossruby-kde4/Makefile +++ b/devel/ruby-krossruby-kde4/Makefile @@ -13,7 +13,7 @@ COMMENT= Ruby bindings for Qt/KDE DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs pimlibs automoc4 USE_QT= corelib gui qmake_build moc_build uic_build rcc_build USE_RUBY= yes diff --git a/devel/ruby-qtruby-kde4/Makefile b/devel/ruby-qtruby-kde4/Makefile index c7c896759413..0610b8b3b8fa 100644 --- a/devel/ruby-qtruby-kde4/Makefile +++ b/devel/ruby-qtruby-kde4/Makefile @@ -17,7 +17,7 @@ BROKEN_powerpc64= fails to compile: ruby.h:1381: wrong number of arguments speci LIB_DEPENDS= libqwt.so:x11-toolkits/qwt5 \ libqscintilla2_qt4.so:devel/qscintilla2 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= smokeqt USE_QT= corelib dbus declarative gui network phonon script webkit xml \ qmake_build moc_build uic_build rcc_build diff --git a/devel/shiboken/Makefile b/devel/shiboken/Makefile index f451ee9bd9ad..54f0a7f0a888 100644 --- a/devel/shiboken/Makefile +++ b/devel/shiboken/Makefile @@ -25,7 +25,7 @@ PLIST_SUB= PORTVERSION=${PORTVERSION} \ USE_QT= corelib qmake_build qtestlib moc_build network \ uic_build rcc_build xml xmlpatterns -USES= cmake python:2.7 qt:4 tar:bzip2 +USES= cmake:insource python:2.7 qt:4 tar:bzip2 USE_LDCONFIG= yes ALL_TARGET= all diff --git a/devel/silentbob/Makefile b/devel/silentbob/Makefile index 95b2a9fb9fff..97f792f5dca3 100644 --- a/devel/silentbob/Makefile +++ b/devel/silentbob/Makefile @@ -12,7 +12,7 @@ COMMENT= Yet another sourcecode indexing tool LICENSE= GPLv2 -USES= cmake:outsource +USES= cmake PORTDOCS= README PLIST_FILES= bin/silentbob diff --git a/devel/smokegen-kde4/Makefile b/devel/smokegen-kde4/Makefile index 44f035516541..4d4e92259cd7 100644 --- a/devel/smokegen-kde4/Makefile +++ b/devel/smokegen-kde4/Makefile @@ -10,7 +10,7 @@ COMMENT= SMOKE bindings for KDE DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_QT= corelib xml qmake_build moc_build uic_build rcc_build CMAKE_ARGS+= -DSMOKE_CMAKE_MODULE_DIR:PATH=${PREFIX}/lib/cmake/smoke USE_LDCONFIG= yes diff --git a/devel/smokekde-kde4/Makefile b/devel/smokekde-kde4/Makefile index 1761f76161cf..2b2152d265ee 100644 --- a/devel/smokekde-kde4/Makefile +++ b/devel/smokekde-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= SMOKE bindings for KDE DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kate kdelibs okular pimlibs \ smokegen smokeqt akonadi automoc4 soprano USE_QT= corelib dbus designer_build gui network opengl sql svg xml \ diff --git a/devel/smokeqt-kde4/Makefile b/devel/smokeqt-kde4/Makefile index 956b283b6e93..34d872032351 100644 --- a/devel/smokeqt-kde4/Makefile +++ b/devel/smokeqt-kde4/Makefile @@ -14,7 +14,7 @@ EXPIRATION_DATE= 2018-12-31 LIB_DEPENDS= libqscintilla2_qt4.so:devel/qscintilla2 \ libqwt.so:x11-toolkits/qwt5 -USES= cmake:outsource kde:4 pkgconfig qt:4 tar:xz +USES= cmake kde:4 pkgconfig qt:4 tar:xz USE_KDE= smokegen qimageblitz USE_QT= corelib dbus declarative designer_build gui help \ multimedia network opengl phonon qtestlib script \ diff --git a/devel/socket_wrapper/Makefile b/devel/socket_wrapper/Makefile index ac146ba56cd9..9dbca385e48f 100644 --- a/devel/socket_wrapper/Makefile +++ b/devel/socket_wrapper/Makefile @@ -12,7 +12,7 @@ LICENSE= GPLv3 BROKEN_aarch64= fails to compile: socket_wrapper.c:4036:9: cast to 'void *' from smaller integer type 'uintptr_t' (aka 'unsigned int') -USES= cmake:outsource +USES= cmake USE_LDCONFIG= yes CFLAGS_mips= -Wno-error=int-to-pointer-cast -Wno-error=pointer-to-int-cast diff --git a/devel/spirv-tools/Makefile b/devel/spirv-tools/Makefile index 9988576b7dbd..f867c69cb385 100644 --- a/devel/spirv-tools/Makefile +++ b/devel/spirv-tools/Makefile @@ -11,7 +11,7 @@ COMMENT= Tools for processing SPIR-V intermediate shader language modules LICENSE= APACHE20 -USES= cmake:outsource compiler:c++11-lib python:build shebangfix +USES= cmake compiler:c++11-lib python:build shebangfix USE_LDCONFIG= yes SHEBANG_FILES= tools/lesspipe/spirv-lesspipe.sh diff --git a/devel/stxxl/Makefile b/devel/stxxl/Makefile index 813a91d6726a..b88bef8d042a 100644 --- a/devel/stxxl/Makefile +++ b/devel/stxxl/Makefile @@ -12,7 +12,7 @@ COMMENT= Standard Template Library for Extra Large Data Sets LICENSE= BSL LICENSE_FILE= ${WRKSRC}/LICENSE_1_0.txt -USES= cmake:outsource +USES= cmake CMAKE_ARGS= -DINSTALL_PKGCONFIG_DIR:STRING="libdata/pkgconfig" \ -DUSE_GNU_PARALLEL:BOOL=OFF # may be enabled for future versions of clang with openmp support diff --git a/devel/ucommon/Makefile b/devel/ucommon/Makefile index f115ccae9d14..abe5b7d20d40 100644 --- a/devel/ucommon/Makefile +++ b/devel/ucommon/Makefile @@ -16,7 +16,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING.LESSER BROKEN_SSL= openssl111 BROKEN_SSL_REASON_openssl111= error: allocation of incomplete type 'EVP_CIPHER_CTX' -USES= compiler:c++11-lib cmake:outsource pathfix pkgconfig ssl +USES= compiler:c++11-lib cmake pathfix pkgconfig ssl CMAKE_ARGS= -DBUILD_TESTING:BOOL=ON \ -DCMAKE_INSTALL_BINDIR:STRING=bin/${PORTNAME} USE_LDCONFIG= yes diff --git a/devel/uid_wrapper/Makefile b/devel/uid_wrapper/Makefile index 34fa201b0ca1..5d7e1af7eb53 100644 --- a/devel/uid_wrapper/Makefile +++ b/devel/uid_wrapper/Makefile @@ -10,7 +10,7 @@ COMMENT= Wrapper to fake privilege separation LICENSE= GPLv3 -USES= cmake:outsource +USES= cmake USE_LDCONFIG= yes CMAKE_ARGS= -DMAN_INSTALL_DIR:PATH="${PREFIX}/man" diff --git a/devel/umbrello-kde4/Makefile b/devel/umbrello-kde4/Makefile index 73f616a59cea..bfad6158a716 100644 --- a/devel/umbrello-kde4/Makefile +++ b/devel/umbrello-kde4/Makefile @@ -13,7 +13,7 @@ EXPIRATION_DATE= 2018-12-31 LIB_DEPENDS= libboost_thread.so:devel/boost-libs -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs automoc4 USE_GNOME= libxml2 libxslt USE_QT= moc_build qmake_build rcc_build uic_build diff --git a/devel/umbrello/Makefile b/devel/umbrello/Makefile index f32e464213d7..e32b03281792 100644 --- a/devel/umbrello/Makefile +++ b/devel/umbrello/Makefile @@ -9,7 +9,7 @@ COMMENT= UML modeller for KDE LIB_DEPENDS= libboost_thread.so:devel/boost-libs -USES= cmake:outsource compiler:c++11-lang gnome kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gnome kde:5 qt:5 tar:xz USE_GNOME= libxml2 libxslt USE_KDE= archive auth bookmarks codecs completion config configwidgets \ coreaddons crash ecm guiaddons i18n iconthemes itemviews \ diff --git a/devel/vera++/Makefile b/devel/vera++/Makefile index 89a38f1c44d3..9e223b761edb 100644 --- a/devel/vera++/Makefile +++ b/devel/vera++/Makefile @@ -17,7 +17,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE_1_0.txt BUILD_DEPENDS= boost-libs>=0:devel/boost-libs -USES= compiler:c++11-lang cmake:outsource tk +USES= compiler:c++11-lang cmake tk CMAKE_ARGS+= -DTCL_INCLUDE_PATH=${TCL_INCLUDEDIR} \ -DTK_INCLUDE_PATH=${TK_INCLUDEDIR} \ diff --git a/devel/vexcl/Makefile b/devel/vexcl/Makefile index a88e842a4d13..1a397973ec92 100644 --- a/devel/vexcl/Makefile +++ b/devel/vexcl/Makefile @@ -15,7 +15,7 @@ BUILD_DEPENDS= boost-libs>0:devel/boost-libs \ opencl>0:devel/opencl \ ocl-icd>0:devel/ocl-icd -USES= cmake:outsource localbase:ldflags +USES= cmake localbase:ldflags USE_GITHUB= yes GH_ACCOUNT= ddemidov NO_ARCH= yes diff --git a/devel/vulkan-headers/Makefile b/devel/vulkan-headers/Makefile index 7afd65892273..6b423d99331c 100644 --- a/devel/vulkan-headers/Makefile +++ b/devel/vulkan-headers/Makefile @@ -10,7 +10,7 @@ COMMENT= Headers for the Vulkan graphics API LICENSE= APACHE20 -USES= cmake:outsource +USES= cmake STRIP= # nothing to strip USE_GITHUB= yes diff --git a/devel/vulkan-tools/Makefile b/devel/vulkan-tools/Makefile index 83f4ed44c0cd..05a44d79837b 100644 --- a/devel/vulkan-tools/Makefile +++ b/devel/vulkan-tools/Makefile @@ -18,7 +18,7 @@ LIB_DEPENDS= libvulkan.so:graphics/vulkan-loader \ libXrandr.so:x11/libXrandr \ libxcb.so:x11/libxcb -USES= cmake:outsource compiler:c++11-lib pkgconfig python:3.4+,build +USES= cmake compiler:c++11-lib pkgconfig python:3.4+,build USE_GITHUB= yes GH_ACCOUNT= KhronosGroup diff --git a/devel/vulkan-validation-layers/Makefile b/devel/vulkan-validation-layers/Makefile index 9d835ee3b008..8efbaae1bab0 100644 --- a/devel/vulkan-validation-layers/Makefile +++ b/devel/vulkan-validation-layers/Makefile @@ -16,7 +16,7 @@ BUILD_DEPENDS= ${LOCALBASE}/include/vulkan/vulkan.h:devel/vulkan-headers \ ${LOCALBASE}/include/spirv-tools/libspirv.h:devel/spirv-tools \ ${LOCALBASE}/include/SPIRV/spirv.hpp:devel/glslang -USES= cmake:outsource compiler:c++11-lib pkgconfig python:3.4+,build +USES= cmake compiler:c++11-lib pkgconfig python:3.4+,build USE_LDCONFIG= yes USE_GITHUB= yes diff --git a/devel/websocketpp/Makefile b/devel/websocketpp/Makefile index 81701b51b622..1c352b3f6490 100644 --- a/devel/websocketpp/Makefile +++ b/devel/websocketpp/Makefile @@ -11,7 +11,7 @@ LICENSE= MIT BSD3CLAUSE ZLIB LICENSE_COMB= multi LICENSE_FILE= ${WRKSRC}/COPYING -USES= cmake +USES= cmake:insource USE_GITHUB= yes GH_ACCOUNT= zaphoyd diff --git a/devel/woff2/Makefile b/devel/woff2/Makefile index eabf4542eb0d..b9bf741a4a71 100644 --- a/devel/woff2/Makefile +++ b/devel/woff2/Makefile @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libbrotlidec.so:archivers/brotli -USES= cmake:outsource compiler:c++11-lib +USES= cmake compiler:c++11-lib USE_GITHUB= yes GH_ACCOUNT= google USE_LDCONFIG= yes diff --git a/devel/xc3sprog/Makefile b/devel/xc3sprog/Makefile index 434cf174d3d7..40d4b5262c2d 100644 --- a/devel/xc3sprog/Makefile +++ b/devel/xc3sprog/Makefile @@ -11,7 +11,7 @@ COMMENT= Free programmer for Xilinx Spartan S3E Starter Kit LIB_DEPENDS= libftdi.so:devel/libftdi RUN_DEPENDS= ${LOCALBASE}/sbin/fxload:misc/fxload -USES= tar:xz cmake +USES= tar:xz cmake:insource ALL_TARGET= xc3sprog PLIST_FILES= bin/xc3sprog diff --git a/devel/xeus-cling/Makefile b/devel/xeus-cling/Makefile index b246df2cf30f..abe3410c5b23 100644 --- a/devel/xeus-cling/Makefile +++ b/devel/xeus-cling/Makefile @@ -21,7 +21,7 @@ LIB_DEPENDS= libclingInterpreter.so:lang/cling \ libxeus.so:devel/xeus \ libzmq.so:net/libzmq4 -USES= cmake:outsource compiler:c++14-lang pkgconfig +USES= cmake compiler:c++14-lang pkgconfig USE_GITHUB= yes GH_ACCOUNT= QuantStack diff --git a/devel/xeus/Makefile b/devel/xeus/Makefile index 6c54a977aacb..86e55d21965d 100644 --- a/devel/xeus/Makefile +++ b/devel/xeus/Makefile @@ -17,7 +17,7 @@ LIB_DEPENDS= libcryptopp.so:security/cryptopp \ libuuid.so:misc/e2fsprogs-libuuid \ libzmq.so:net/libzmq4 -USES= cmake:outsource compiler:c++14-lang localbase:ldflags pkgconfig +USES= cmake compiler:c++14-lang localbase:ldflags pkgconfig USE_GITHUB= yes GH_ACCOUNT= QuantStack USE_LDCONFIG= yes diff --git a/devel/xtl-quant-stack/Makefile b/devel/xtl-quant-stack/Makefile index f893877aa7fa..2d5d8821a9dd 100644 --- a/devel/xtl-quant-stack/Makefile +++ b/devel/xtl-quant-stack/Makefile @@ -16,7 +16,7 @@ RUN_DEPENDS= nlohmann-json>0:devel/nlohmann-json TEST_DEPENDS= nlohmann-json>0:devel/nlohmann-json \ googletest>0:devel/googletest -USES= cmake:outsource +USES= cmake USE_GITHUB= yes GH_ACCOUNT= QuantStack diff --git a/devel/xxhash/Makefile b/devel/xxhash/Makefile index a835170494cb..d7599cd0648c 100644 --- a/devel/xxhash/Makefile +++ b/devel/xxhash/Makefile @@ -15,7 +15,7 @@ USE_GITHUB= yes GH_ACCOUNT= Cyan4973 GH_PROJECT= xxHash -USES= cmake:outsource +USES= cmake USE_LDCONFIG= yes CMAKE_SOURCE_PATH= ${WRKSRC}/cmake_unofficial diff --git a/devel/yajl/Makefile b/devel/yajl/Makefile index 231b1a7f9b10..7e3753956e03 100644 --- a/devel/yajl/Makefile +++ b/devel/yajl/Makefile @@ -15,7 +15,7 @@ GH_ACCOUNT= lloyd CFLAGS+= -g -O0 USE_LDCONFIG= yes -USES= cmake:outsource +USES= cmake PLIST_SUB= VERSION=${PORTVERSION} diff --git a/devel/zapcc/Makefile b/devel/zapcc/Makefile index 9684509ef9df..f2e84daa0902 100644 --- a/devel/zapcc/Makefile +++ b/devel/zapcc/Makefile @@ -12,7 +12,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.TXT BUILD_DEPENDS= googletest>0:devel/googletest -USES= cmake:outsource libedit python:3.4+ shebangfix +USES= cmake libedit python:3.4+ shebangfix USE_GITHUB= yes GH_ACCOUNT= yrnkrn GH_PROJECT= zapcc diff --git a/devel/zeal/Makefile b/devel/zeal/Makefile index e02ad1fd46e9..4fe5c2b9105b 100644 --- a/devel/zeal/Makefile +++ b/devel/zeal/Makefile @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libxcb.so:x11/libxcb \ libxcb-keysyms.so:x11/xcb-util-keysyms -USES= cmake:outsource compiler:c++11-lib desktop-file-utils \ +USES= cmake compiler:c++11-lib desktop-file-utils \ kde:5 libarchive pkgconfig qt:5 sqlite USE_GL= gl # Dependency added by qt5-gui. USE_GITHUB= yes diff --git a/devel/zfp/Makefile b/devel/zfp/Makefile index 4927f07c895c..306b31772fe8 100644 --- a/devel/zfp/Makefile +++ b/devel/zfp/Makefile @@ -11,7 +11,7 @@ COMMENT= High throughput library for compressed floating-point arrays LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -USES= cmake:outsource +USES= cmake USE_LDCONFIG= yes LDFLAGS+= -lm diff --git a/dns/kf5-kdnssd/Makefile b/dns/kf5-kdnssd/Makefile index 81c37672c16f..21a99fcea7bc 100644 --- a/dns/kf5-kdnssd/Makefile +++ b/dns/kf5-kdnssd/Makefile @@ -7,7 +7,7 @@ CATEGORIES= dns kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 abstraction to system DNSSD features -USES= cmake:outsource compiler:c++11-lib kde:5 pkgconfig qt:5 tar:xz +USES= cmake compiler:c++11-lib kde:5 pkgconfig qt:5 tar:xz USE_KDE= ecm USE_QT= buildtools_build core linguisttools network qmake_build diff --git a/dns/mdnsd/Makefile b/dns/mdnsd/Makefile index a3b9826cab5d..bb553e68b037 100644 --- a/dns/mdnsd/Makefile +++ b/dns/mdnsd/Makefile @@ -15,7 +15,7 @@ COMMENT= Advertise a service via Rendezvous LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -USES= cmake:outsource +USES= cmake USE_GITHUB= yes GH_ACCOUNT= Pro USE_LDCONFIG= yes diff --git a/dns/qmdnsengine/Makefile b/dns/qmdnsengine/Makefile index 93711f69ef5b..bc067f03947f 100644 --- a/dns/qmdnsengine/Makefile +++ b/dns/qmdnsengine/Makefile @@ -12,7 +12,7 @@ COMMENT= Multicast DNS library for Qt applications LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt -USES= cmake:outsource compiler:c++11-lang qt:5 +USES= cmake compiler:c++11-lang qt:5 USE_GITHUB= yes GH_ACCOUNT= nitroshare USE_QT= core network buildtools_build qmake_build diff --git a/editors/calligra/Makefile b/editors/calligra/Makefile index 8df72ab7c9f0..d690711e882e 100644 --- a/editors/calligra/Makefile +++ b/editors/calligra/Makefile @@ -36,7 +36,7 @@ LIB_DEPENDS= libImath.so:graphics/ilmbase \ BUILD_DEPENDS= pstoedit:graphics/pstoedit RUN_DEPENDS= pstoedit:graphics/pstoedit -USES= cmake:outsource cpe compiler:c++11-lib desktop-file-utils eigen:3 \ +USES= cmake cpe compiler:c++11-lib desktop-file-utils eigen:3 \ gettext iconv:translit jpeg kde:5 localbase:ldflags perl5 pkgconfig \ qt:5 shared-mime-info sqlite tar:xz USE_KDE= activities archive auth bookmarks codecs completion config \ diff --git a/editors/calligraplan/Makefile b/editors/calligraplan/Makefile index 2a8cc55c40f9..1f701e23c455 100644 --- a/editors/calligraplan/Makefile +++ b/editors/calligraplan/Makefile @@ -12,7 +12,7 @@ COMMENT= KDE Calligra project management application LIB_DEPENDS= libKChart.so:graphics/kdiagram -USES= cmake:outsource cpe compiler:c++11-lib desktop-file-utils kde:5 \ +USES= cmake cpe compiler:c++11-lib desktop-file-utils kde:5 \ qt:5 tar:xz USE_KDE= activities akonadi archive auth bookmarks codecs completion config \ configwidgets coreaddons dbusaddons ecm guiaddons holidays i18n \ diff --git a/editors/codelite/Makefile b/editors/codelite/Makefile index 9273743f38c6..3058cb0085d4 100644 --- a/editors/codelite/Makefile +++ b/editors/codelite/Makefile @@ -19,7 +19,7 @@ BROKEN_armv6= fails to configure: has leading or trailing whitespace. This is USE_GITHUB= yes GH_ACCOUNT= eranif -USES= cmake:outsource,noninja compiler:c++11-lib dos2unix gettext \ +USES= cmake:noninja compiler:c++11-lib dos2unix gettext \ pathfix shebangfix sqlite USE_GNOME+= cairo gtk20 DOS2UNIX_GLOB= *.cpp *.txt diff --git a/editors/ecrire/Makefile b/editors/ecrire/Makefile index 50b3360fa903..63213da75baf 100644 --- a/editors/ecrire/Makefile +++ b/editors/ecrire/Makefile @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libefl.so:devel/efl -USES= cmake:outsource desktop-file-utils pkgconfig +USES= cmake desktop-file-utils pkgconfig USE_GITHUB= yes GH_ACCOUNT= Obsidian-StudiosInc diff --git a/editors/jucipp/Makefile b/editors/jucipp/Makefile index e6eed21e332a..6a5fa173db87 100644 --- a/editors/jucipp/Makefile +++ b/editors/jucipp/Makefile @@ -18,7 +18,7 @@ LIB_DEPENDS= libaspell.so:textproc/aspell \ libgit2.so:devel/libgit2 \ libclang.so.5:devel/llvm50 -USES= cmake:outsource compiler:c++14-lang desktop-file-utils pkgconfig +USES= cmake compiler:c++14-lang desktop-file-utils pkgconfig USE_GITHUB= yes GH_ACCOUNT= cppit GH_TUPLE= cppit:libclangmm:5a0195e:libclangmm/libclangmm \ diff --git a/editors/kate-kde4/Makefile b/editors/kate-kde4/Makefile index af23f814ecf7..c877e5bd48c1 100644 --- a/editors/kate-kde4/Makefile +++ b/editors/kate-kde4/Makefile @@ -14,7 +14,7 @@ EXPIRATION_DATE= 2018-12-31 LIB_DEPENDS= libqjson.so:devel/qjson@qt4 -USES= cmake:outsource gettext kde:4 perl5 qt:4 tar:xz +USES= cmake gettext kde:4 perl5 qt:4 tar:xz USE_KDE= kdelibs automoc4 kactivities USE_PERL5= build USE_QT= dbus gui script sql webkit xml \ diff --git a/editors/kate-plugin-pate-kde4/Makefile b/editors/kate-plugin-pate-kde4/Makefile index 8ce373ac1854..b29cfb4c408b 100644 --- a/editors/kate-plugin-pate-kde4/Makefile +++ b/editors/kate-plugin-pate-kde4/Makefile @@ -12,7 +12,7 @@ COMMENT= Support for Python plugins in Kate DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource,noninja kde:4 python:2.7 qt:4 tar:xz +USES= cmake:noninja kde:4 python:2.7 qt:4 tar:xz USE_KDE= kdelibs automoc4 kate \ pykde4_build pykde4_run USE_QT= gui webkit \ diff --git a/editors/kate/Makefile b/editors/kate/Makefile index e66ab8f4d20f..2ba5b8203353 100644 --- a/editors/kate/Makefile +++ b/editors/kate/Makefile @@ -11,7 +11,7 @@ BUILD_DEPENDS= ${LOCALBASE}/share/xsl/docbook/html/docbook.xsl:textproc/docbook- docbook-xml>0:textproc/docbook-xml LIB_DEPENDS= libgit2.so:devel/libgit2 -USES= cmake:outsource compiler:c++11-lang desktop-file-utils gettext \ +USES= cmake compiler:c++11-lang desktop-file-utils gettext \ pkgconfig kde:5 qt:5 tar:xz USE_KDE= activities attica auth bookmarks codecs completion config \ configwidgets coreaddons crash dbusaddons doctools ecm \ diff --git a/editors/kile/Makefile b/editors/kile/Makefile index 578b9fdb517d..f76b1fab37e6 100644 --- a/editors/kile/Makefile +++ b/editors/kile/Makefile @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libpoppler.so:graphics/poppler \ libpoppler-qt5.so:graphics/poppler-qt5 -USES= cmake:outsource desktop-file-utils kde:5 \ +USES= cmake desktop-file-utils kde:5 \ qt:5 shared-mime-info shebangfix USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons ecm guiaddons i18n iconthemes \ diff --git a/editors/neovim-qt/Makefile b/editors/neovim-qt/Makefile index f7d51d73d050..598b063b4aae 100644 --- a/editors/neovim-qt/Makefile +++ b/editors/neovim-qt/Makefile @@ -15,7 +15,7 @@ BUILD_DEPENDS= neovim>=0:editors/neovim LIB_DEPENDS= libmsgpackc.so:devel/msgpack RUN_DEPENDS= neovim>=0:editors/neovim -USES= cmake:outsource desktop-file-utils qt:5 +USES= cmake desktop-file-utils qt:5 USE_GITHUB= yes GH_ACCOUNT= equalsraf USE_QT= core gui testlib network widgets buildtools_build qmake_build diff --git a/editors/neovim/Makefile b/editors/neovim/Makefile index 92d8d2daee1a..3c65bdab34b5 100644 --- a/editors/neovim/Makefile +++ b/editors/neovim/Makefile @@ -22,7 +22,7 @@ LIB_DEPENDS= libluajit-5.1.so:lang/luajit \ libuv.so:devel/libuv \ libvterm.so:devel/libvterm -USES= cmake:outsource iconv lua:build pathfix pkgconfig +USES= cmake iconv lua:build pathfix pkgconfig USE_GITHUB= yes GH_TUPLE= libmpack:libmpack:1.0.5:libmpack \ libmpack:libmpack-lua:1.0.7:libmpack_lua diff --git a/editors/texworks/Makefile b/editors/texworks/Makefile index 45a0e2b1a015..d119930b93f6 100644 --- a/editors/texworks/Makefile +++ b/editors/texworks/Makefile @@ -17,7 +17,7 @@ LIB_DEPENDS= libhunspell-1.6.so:textproc/hunspell \ libpoppler.so:graphics/poppler \ libpoppler-qt5.so:graphics/poppler-qt5 -USES= cmake:outsource desktop-file-utils pkgconfig qt:5 +USES= cmake desktop-file-utils pkgconfig qt:5 USE_GITHUB= yes GH_ACCOUNT= TeXworks USE_QT= buildtools_build designer_build qmake_build \ diff --git a/emulators/citra/Makefile b/emulators/citra/Makefile index 55ccccc7ef70..cab6e4caf492 100644 --- a/emulators/citra/Makefile +++ b/emulators/citra/Makefile @@ -38,7 +38,7 @@ GH_TUPLE= citra-emu:ext-libressl-portable:7d01cb0:libressl/externals/libressl \ zeromq:cppzmq:v4.2.3:cppzmq/externals/cppzmq \ zeromq:libzmq:v4.2.5:libzmq/externals/libzmq -USES= cmake:outsource compiler:c++17-lang iconv localbase:ldflags +USES= cmake compiler:c++17-lang iconv localbase:ldflags USE_SDL= sdl2 LDFLAGS+= -Wl,--as-needed # Qt5Network TEST_TARGET= test diff --git a/emulators/dynamips-community/Makefile b/emulators/dynamips-community/Makefile index aed7f30caaa3..704cf99a98fb 100644 --- a/emulators/dynamips-community/Makefile +++ b/emulators/dynamips-community/Makefile @@ -21,7 +21,7 @@ CFLAGS+= -I${PREFIX}/include/libelf CONFLICTS= dynamips-[0-9]* dynamips-devel-[0-9]* -USES= cmake +USES= cmake:insource USE_GITHUB= yes OPTIONS_DEFINE= DOCS diff --git a/emulators/joytran/Makefile b/emulators/joytran/Makefile index 6707cc7a7326..faac20460646 100644 --- a/emulators/joytran/Makefile +++ b/emulators/joytran/Makefile @@ -14,7 +14,7 @@ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/COPYRIGHT USE_SDL= sdl2 -USES= tar:bzip2 cmake pkgconfig +USES= tar:bzip2 cmake:insource pkgconfig CMAKE_ARGS= -DLOCALBASE="${LOCALBASE}" -DPREFIX="${PREFIX}" USE_XORG= x11 xtst diff --git a/emulators/mgba/Makefile b/emulators/mgba/Makefile index 12a4c1211b42..f1de15860310 100644 --- a/emulators/mgba/Makefile +++ b/emulators/mgba/Makefile @@ -21,7 +21,7 @@ LICENSE_FILE_MPL20= ${WRKSRC}/LICENSE LIB_DEPENDS= libepoxy.so:graphics/libepoxy \ libpng.so:graphics/png -USES= cmake:outsource compiler:c++11-lang localbase:ldflags pkgconfig sqlite:3 +USES= cmake compiler:c++11-lang localbase:ldflags pkgconfig sqlite:3 USE_GITHUB= yes GH_ACCOUNT= mgba-emu diff --git a/emulators/ppsspp/Makefile b/emulators/ppsspp/Makefile index d5c7647aa427..bb0c97a6f69b 100644 --- a/emulators/ppsspp/Makefile +++ b/emulators/ppsspp/Makefile @@ -32,7 +32,7 @@ GH_TUPLE?= hrydgard:glslang:29619b23:glslang/ext/glslang \ CONFLICTS_INSTALL= ${PORTNAME}-* -USES= cmake:outsource compiler:c++11-lib localbase:ldflags pkgconfig +USES= cmake compiler:c++11-lib localbase:ldflags pkgconfig EXCLUDE= libzip zlib EXTRACT_AFTER_ARGS=${EXCLUDE:S,^,--exclude ,} USE_GL= gl glew glu diff --git a/emulators/rpcs3/Makefile b/emulators/rpcs3/Makefile index 8ef6ca47546d..a5107175da6f 100644 --- a/emulators/rpcs3/Makefile +++ b/emulators/rpcs3/Makefile @@ -36,7 +36,7 @@ GH_TUPLE= RPCS3:hidapi:hidapi-0.8.0-rc1-27-g9220f5e:hidapi/3rdparty/hidapi \ USCiLab:cereal:v1.2.0:cereal/3rdparty/cereal \ zeux:pugixml:v1.9:pugixml/3rdparty/pugixml -USES= cmake:outsource compiler:c++17-lang iconv:wchar_t localbase:ldflags \ +USES= cmake compiler:c++17-lang iconv:wchar_t localbase:ldflags \ openal:soft pkgconfig qt:5 USE_GL= gl glew USE_QT= qmake_build buildtools_build core dbus declarative gui network widgets diff --git a/emulators/tpm-emulator/Makefile b/emulators/tpm-emulator/Makefile index 909aff9d1d43..9259c4b6a44f 100644 --- a/emulators/tpm-emulator/Makefile +++ b/emulators/tpm-emulator/Makefile @@ -15,7 +15,7 @@ LICENSE= GPLv2 LIB_DEPENDS= libgmp.so:math/gmp -USES= cmake:outsource +USES= cmake USE_RC_SUBR= tpmd CONFIGURE_ENV= PREFIX="${PREFIX}" CMAKE_ARGS= -DTPM_INCLUDE_DIRS:STRING="${LOCALBASE}/include" \ diff --git a/emulators/visualboyadvance-m/Makefile b/emulators/visualboyadvance-m/Makefile index 79463bde2dea..39e51d442ca4 100644 --- a/emulators/visualboyadvance-m/Makefile +++ b/emulators/visualboyadvance-m/Makefile @@ -41,7 +41,7 @@ DOS2UNIX_REGEX= .*\.(c|cpp|h|ypp) USE_XORG= x11 xext USE_GL= gl glu USE_SDL= sdl -USES= cmake dos2unix pkgconfig +USES= cmake:insource dos2unix pkgconfig INSTALLS_ICONS= yes CMAKE_ARGS= -DVERSION:STRING="${PORTVERSION}" \ -DSYSCONFDIR:STRING="${PREFIX}/etc" \ diff --git a/finance/alkimia/Makefile b/finance/alkimia/Makefile index 13cecc438804..ba07798b6530 100644 --- a/finance/alkimia/Makefile +++ b/finance/alkimia/Makefile @@ -16,7 +16,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING.LIB # Depending on ecm via USE_KDE causes unwanted CMAKE_ARGS to be set BUILD_DEPENDS= ${LOCALBASE}/share/ECM/cmake/ECMConfig.cmake:devel/kf5-extra-cmake-modules -USES= cmake:outsource compiler:c++11-lang pathfix tar:xz +USES= cmake compiler:c++11-lang pathfix tar:xz USE_LDCONFIG= yes SLAVE?= qt5 diff --git a/finance/gnucash/Makefile b/finance/gnucash/Makefile index c73c731c1a51..bb376bfe660d 100644 --- a/finance/gnucash/Makefile +++ b/finance/gnucash/Makefile @@ -55,7 +55,7 @@ PYTHON_USES= python:3.3+ TEST_BUILD_DEPENDS= ${NONEXISTENT}:devel/googlemock:build \ gtest-config:devel/googletest -USES= cmake compiler:c++11-lib desktop-file-utils gettext-tools libtool localbase \ +USES= cmake:insource compiler:c++11-lib desktop-file-utils gettext-tools libtool localbase \ perl5 pkgconfig shebangfix tar:bzip2 USE_XORG= x11 USE_CXXSTD= c++11 diff --git a/finance/skrooge/Makefile b/finance/skrooge/Makefile index d9eec076d25e..cfaa50dfd6db 100644 --- a/finance/skrooge/Makefile +++ b/finance/skrooge/Makefile @@ -18,7 +18,7 @@ LIB_DEPENDS= libofx.so:finance/libofx \ libqca-qt5.so:devel/qca@qt5 \ libsqlcipher.so:databases/sqlcipher -USES= cmake:outsource compiler:c++11-lib desktop-file-utils \ +USES= cmake compiler:c++11-lib desktop-file-utils \ gettext grantlee:5 kde:5 pkgconfig python:3.4+ qt:5 shared-mime-info \ shebangfix sqlite:3 tar:xz USE_KDE= activities archive attica5 auth bookmarks codecs completion \ diff --git a/games/OpenTomb/Makefile b/games/OpenTomb/Makefile index 4de3321acbca..2f1862f3593c 100644 --- a/games/OpenTomb/Makefile +++ b/games/OpenTomb/Makefile @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libpng.so:graphics/png -USES= cmake compiler:c++11-lang lua openal +USES= cmake:insource compiler:c++11-lang lua openal USE_GITHUB= yes USE_SDL= sdl2 LLD_UNSAFE= yes diff --git a/games/aquaria/Makefile b/games/aquaria/Makefile index d5f01ad4459b..8b94d9e24de7 100644 --- a/games/aquaria/Makefile +++ b/games/aquaria/Makefile @@ -22,7 +22,7 @@ USE_GITHUB= yes GH_ACCOUNT= AquariaOSE GH_PROJECT= Aquaria -USES= cmake lua:51 openal pkgconfig +USES= cmake:insource lua:51 openal pkgconfig EXCLUDE= AL FTGL GL SDL* freetype2 glm glpng/png glpng/zlib \ libogg-* libvorbis-* lua-* tinyxml2* EXTRACT_AFTER_ARGS=${EXCLUDE:S,^,--exclude ExternalLibs/,} diff --git a/games/astromenace/Makefile b/games/astromenace/Makefile index 01b3a900e33b..c597eeee395f 100644 --- a/games/astromenace/Makefile +++ b/games/astromenace/Makefile @@ -24,7 +24,7 @@ LIB_DEPENDS= libogg.so:audio/libogg \ USE_GITHUB= yes GH_ACCOUNT= viewizard -USES= cmake compiler:c++11-lib dos2unix gl openal:al,alut +USES= cmake:insource compiler:c++11-lib dos2unix gl openal:al,alut DOS2UNIX_FILES= CMakeLists.txt src/config/config.cpp USE_GL= gl glu USE_SDL= sdl2 diff --git a/games/ballerburg/Makefile b/games/ballerburg/Makefile index 48e2ca8e6eba..01d5a4205983 100644 --- a/games/ballerburg/Makefile +++ b/games/ballerburg/Makefile @@ -16,7 +16,7 @@ LICENSE= GPLv3+ GNU_CONFIGURE= yes NLS_USES= gettext -USES= cmake +USES= cmake:insource USE_SDL= sdl OPTIONS_DEFINE= DOCS NLS diff --git a/games/barony/Makefile b/games/barony/Makefile index cb6b194ff66f..cf4c815a95fc 100644 --- a/games/barony/Makefile +++ b/games/barony/Makefile @@ -17,7 +17,7 @@ LIB_DEPENDS= libogg.so:audio/libogg \ libpng.so:graphics/png \ libvorbisfile.so:audio/libvorbis -USES= cmake compiler:c++11-lib dos2unix gl localbase:ldflags openal pkgconfig +USES= cmake:insource compiler:c++11-lib dos2unix gl localbase:ldflags openal pkgconfig USE_GITHUB= yes GH_ACCOUNT= TurningWheel GH_PROJECT= Barony diff --git a/games/blinken-kde4/Makefile b/games/blinken-kde4/Makefile index 4ff6f4b640de..091950a7b96e 100644 --- a/games/blinken-kde4/Makefile +++ b/games/blinken-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= Memory enhancement game for KDE 4 DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs automoc4 USE_QT= moc_build qmake_build rcc_build uic_build diff --git a/games/blinken/Makefile b/games/blinken/Makefile index cfa9c47e9c52..d49decaf77ec 100644 --- a/games/blinken/Makefile +++ b/games/blinken/Makefile @@ -7,7 +7,7 @@ CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Memory enhancement game for KDE -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons crash dbusaddons \ doctools ecm guiaddons i18n widgetsaddons xmlgui USE_QT= core dbus gui phonon4 svg widgets xml \ diff --git a/games/blinkensisters/Makefile b/games/blinkensisters/Makefile index 369cb85338c6..0086add345c9 100644 --- a/games/blinkensisters/Makefile +++ b/games/blinkensisters/Makefile @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/DOC/LICENSE BROKEN_sparc64= does not compile on sparc64 -USES= cmake compiler:c++11-lang localbase perl5 # actually, old gcc fails in theora.h +USES= cmake:insource compiler:c++11-lang localbase perl5 # actually, old gcc fails in theora.h USE_SDL= sdl image ttf USE_PERL5= build diff --git a/games/bomber-kde4/Makefile b/games/bomber-kde4/Makefile index 9dc9b087d05b..e8799ee802c7 100644 --- a/games/bomber-kde4/Makefile +++ b/games/bomber-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= ${${PORTNAME}_DESC} DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs libkdegames automoc4 USE_QT= moc_build qmake_build rcc_build uic_build diff --git a/games/bomber/Makefile b/games/bomber/Makefile index e29cba219792..5e57509bc211 100644 --- a/games/bomber/Makefile +++ b/games/bomber/Makefile @@ -7,7 +7,7 @@ CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= ${${PORTNAME}_DESC} -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons crash dbusaddons \ ecm i18n kio libkdegames widgetsaddons xmlgui USE_QT= core dbus declarative gui network widgets phonon4 xml \ diff --git a/games/bovo-kde4/Makefile b/games/bovo-kde4/Makefile index 4a7391764f34..63943aee0bd3 100644 --- a/games/bovo-kde4/Makefile +++ b/games/bovo-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= ${${PORTNAME}_DESC} DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs libkdegames automoc4 USE_QT= moc_build qmake_build rcc_build uic_build USE_CXXSTD= gnu++98 diff --git a/games/bovo/Makefile b/games/bovo/Makefile index 66304ad2fbd2..de5f5f8acf4b 100644 --- a/games/bovo/Makefile +++ b/games/bovo/Makefile @@ -7,7 +7,7 @@ CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= ${${PORTNAME}_DESC} -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons crash dbusaddons \ ecm i18n kdeclarative libkdegames newstuff widgetsaddons xmlgui USE_QT= concurrent core dbus declarative gui network svg widgets xml \ diff --git a/games/bstone/Makefile b/games/bstone/Makefile index 92794ca625e9..05726f2d3bc6 100644 --- a/games/bstone/Makefile +++ b/games/bstone/Makefile @@ -12,7 +12,7 @@ COMMENT= Source port of Blake Stone LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/../LICENSE -USES= cmake:outsource compiler:c++11-lang localbase:ldflags pkgconfig +USES= cmake compiler:c++11-lang localbase:ldflags pkgconfig USE_GITHUB= yes GH_ACCOUNT= bibendovsky USE_SDL= sdl2 diff --git a/games/corsix-th/Makefile b/games/corsix-th/Makefile index b23c4909fb97..16b9473d0e55 100644 --- a/games/corsix-th/Makefile +++ b/games/corsix-th/Makefile @@ -16,7 +16,7 @@ LIB_DEPENDS= libfreetype.so:print/freetype2 RUN_DEPENDS= ${LUA_MODLIBDIR}/lfs.so:devel/luafilesystem \ ${LUA_MODLIBDIR}/lpeg.so:devel/lua-lpeg -USES= cmake compiler:c++11-lib desktop-file-utils dos2unix iconv \ +USES= cmake:insource compiler:c++11-lib desktop-file-utils dos2unix iconv \ lua pkgconfig USE_SDL= mixer2 DOS2UNIX_FILES= CMake/FindFFmpeg.cmake \ diff --git a/games/craft/Makefile b/games/craft/Makefile index de8351ac9acd..61f6bdee306f 100644 --- a/games/craft/Makefile +++ b/games/craft/Makefile @@ -22,7 +22,7 @@ SERVER_DESC= Install the craft server OPTIONS_DEFAULT= SERVER OPTIONS_SUB= yes -USES= cmake compiler:c11 +USES= cmake:insource compiler:c11 USE_XORG= x11 xi xrandr USE_GL= gl glu diff --git a/games/divide-and-succeed/Makefile b/games/divide-and-succeed/Makefile index fa54c3bd3636..ca5ab628db42 100644 --- a/games/divide-and-succeed/Makefile +++ b/games/divide-and-succeed/Makefile @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING BROKEN_powerpc64= fails to compile: Polygone.h: 'vector' was not declared in this scope -USES= cmake +USES= cmake:insource USE_SDL= sdl ttf DATADIR= ${PREFIX}/share/divideandsucceed INSTALLS_ICONS= yes diff --git a/games/doomsday/Makefile b/games/doomsday/Makefile index 61efddc2516d..c931ceb1bcd0 100644 --- a/games/doomsday/Makefile +++ b/games/doomsday/Makefile @@ -16,7 +16,7 @@ LIB_DEPENDS= libcurl.so:ftp/curl \ libfluidsynth.so:audio/fluidsynth RUN_DEPENDS= timidity:audio/timidity -USES= cmake:outsource compiler:c++11-lib gl localbase:ldflags ninja openal pkgconfig python:2.7,build qt:5 +USES= cmake compiler:c++11-lib gl localbase:ldflags ninja openal pkgconfig python:2.7,build qt:5 USE_GL= gl glu USE_LDCONFIG= yes diff --git a/games/dustrac/Makefile b/games/dustrac/Makefile index f0ebbb0592ee..753d7d009ab6 100644 --- a/games/dustrac/Makefile +++ b/games/dustrac/Makefile @@ -10,7 +10,7 @@ COMMENT= 2D top-view racing game LIB_DEPENDS= libvorbisfile.so:audio/libvorbis -USES= compiler:c++11-lib cmake:outsource openal pkgconfig qt:5 +USES= compiler:c++11-lib cmake openal pkgconfig qt:5 USE_GL= glu USE_QT= core opengl xml widgets \ buildtools_build linguisttools_build qmake_build diff --git a/games/easyrpg-player/Makefile b/games/easyrpg-player/Makefile index 49414868795a..06ce267de84f 100644 --- a/games/easyrpg-player/Makefile +++ b/games/easyrpg-player/Makefile @@ -35,7 +35,7 @@ USE_GITHUB= yes GH_ACCOUNT= EasyRPG GH_PROJECT= Player -USES= cmake compiler:c++11-lib localbase:ldflags pkgconfig +USES= cmake:insource compiler:c++11-lib localbase:ldflags pkgconfig CMAKE_ARGS= -DCMAKE_INSTALL_MANDIR=man \ -DPLAYER_AUDIO_BACKEND=SDL2_mixer USE_XORG= pixman diff --git a/games/emptyepsilon/Makefile b/games/emptyepsilon/Makefile index efcd3beeb12a..1b287c471053 100644 --- a/games/emptyepsilon/Makefile +++ b/games/emptyepsilon/Makefile @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libsfml-system.so:devel/sfml -USES= cmake:outsource compiler:c++11-lib gl +USES= cmake compiler:c++11-lib gl USE_GITHUB= yes GH_ACCOUNT= daid GH_PROJECT= EmptyEpsilon SeriousProton:sproton diff --git a/games/freecell-solver/Makefile b/games/freecell-solver/Makefile index c67a39e254e5..1d7eda2c59b3 100644 --- a/games/freecell-solver/Makefile +++ b/games/freecell-solver/Makefile @@ -24,7 +24,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}random2>=1.0.1:math/py-random2@${PY_FLAVOR} OPTIONS_DEFINE= DOCS EXAMPLES TCMALLOC TCMALLOC_DESC= Use Google's TCMalloc -USES= cmake:outsource compiler:c11 perl5 python:3.4+ shebangfix tar:xz +USES= cmake compiler:c11 perl5 python:3.4+ shebangfix tar:xz USE_PERL5= build SHEBANG_FILES= board_gen/make_pysol_freecell_board.py \ board_gen/transpose-freecell-board.py \ diff --git a/games/freesynd/Makefile b/games/freesynd/Makefile index fb1b5e73e870..6c1639243078 100644 --- a/games/freesynd/Makefile +++ b/games/freesynd/Makefile @@ -11,7 +11,7 @@ COMMENT= Reimplementation of the classic Bullfrog game Syndicate LIB_DEPENDS= libpng.so:graphics/png -USES= cmake +USES= cmake:insource USE_SDL= sdl image mixer SUB_FILES= pkg-message diff --git a/games/gcompris-qt/Makefile b/games/gcompris-qt/Makefile index aba978286da5..3ac70414b508 100644 --- a/games/gcompris-qt/Makefile +++ b/games/gcompris-qt/Makefile @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libBox2D.so:x11-toolkits/qml-box2d -USES= cmake:outsource kde:5 qt:5 tar:xz +USES= cmake kde:5 qt:5 tar:xz USE_KDE= doctools USE_QT= core declarative graphicaleffects gui multimedia network quickcontrols \ sensors svg widgets xml xmlpatterns \ diff --git a/games/gemrb/Makefile b/games/gemrb/Makefile index 3cce349c8e52..6fc558fda8f3 100644 --- a/games/gemrb/Makefile +++ b/games/gemrb/Makefile @@ -23,7 +23,7 @@ OPENGL_USE= gl=gl,glu,glew OPENGL_CMAKE_ON=-DOPENGL_BACKEND=OpenGL PLIST_SUB= PORTVERSION=${PORTVERSION} -USES= cmake:outsource openal:al,alut python:2.7 shebangfix iconv localbase +USES= cmake openal:al,alut python:2.7 shebangfix iconv localbase SHEBANG_FILES= admin/extend2da.py USE_SDL= sdl2 USE_LDCONFIG= yes diff --git a/games/granatier-kde4/Makefile b/games/granatier-kde4/Makefile index 2ba2d13228f3..8a6ffa731cc0 100644 --- a/games/granatier-kde4/Makefile +++ b/games/granatier-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= ${${PORTNAME}_DESC} DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs libkdegames automoc4 USE_QT= corelib gui xml \ moc_build qmake_build rcc_build uic_build diff --git a/games/granatier/Makefile b/games/granatier/Makefile index 0b5406b37140..eb0cdea8f9c9 100644 --- a/games/granatier/Makefile +++ b/games/granatier/Makefile @@ -7,7 +7,7 @@ CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= ${${PORTNAME}_DESC} -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= attica auth codecs config configwidgets coreaddons crash \ dbusaddons ecm guiaddons i18n iconthemes itemviews kio \ libkdegames newstuff notifyconfig service widgetsaddons xmlgui diff --git a/games/gzdoom/Makefile b/games/gzdoom/Makefile index 22390a788954..4739eecca5d2 100644 --- a/games/gzdoom/Makefile +++ b/games/gzdoom/Makefile @@ -24,7 +24,7 @@ LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \ DATADIR= ${DMDIR}/${PORTNAME} -USES= cmake:outsource gettext jpeg openal pkgconfig +USES= cmake gettext jpeg openal pkgconfig USE_GITHUB= yes GH_ACCOUNT= coelckers diff --git a/games/instead/Makefile b/games/instead/Makefile index 9e18d36c640a..b464c15957da 100644 --- a/games/instead/Makefile +++ b/games/instead/Makefile @@ -13,7 +13,7 @@ COMMENT= Simple Text Adventure, The Interpreter LICENSE= MIT LICENSE_FILE= ${WRKSRC}/COPYING -USES= cmake:outsource iconv lua:51 pkgconfig +USES= cmake iconv lua:51 pkgconfig CMAKE_ARGS= -DMANDIR=man WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} diff --git a/games/julius/Makefile b/games/julius/Makefile index 653ddd808bca..52a013a1110d 100644 --- a/games/julius/Makefile +++ b/games/julius/Makefile @@ -13,7 +13,7 @@ COMMENT= Open source re-implementation of Caesar III LICENSE= GPLv3 -USES= cmake:outsource +USES= cmake USE_GITHUB= yes GH_ACCOUNT= bvschaik diff --git a/games/jvgs/Makefile b/games/jvgs/Makefile index ff65a867a5a4..4f67d3861b92 100644 --- a/games/jvgs/Makefile +++ b/games/jvgs/Makefile @@ -14,7 +14,7 @@ COMMENT= Minimalistic platform game BUILD_DEPENDS= swig3.0:devel/swig30 LIB_DEPENDS= libfreetype.so:print/freetype2 -USES= cmake lua:51 +USES= cmake:insource lua:51 USE_SDL= sdl mixer USE_GL= gl glu diff --git a/games/kajongg-kde4/Makefile b/games/kajongg-kde4/Makefile index ad0f67e6619c..c7871c405ee4 100644 --- a/games/kajongg-kde4/Makefile +++ b/games/kajongg-kde4/Makefile @@ -14,7 +14,7 @@ EXPIRATION_DATE= 2018-12-31 RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}twisted>=0:devel/py-twisted@${PY_FLAVOR} NO_ARCH= yes -USES= cmake:outsource kde:4 python:2.7 qt:4 tar:xz shebangfix sqlite +USES= cmake kde:4 python:2.7 qt:4 tar:xz shebangfix sqlite USE_KDE= kdelibs pykde4 automoc4 USE_QT= moc_build qmake_build rcc_build uic_build CMAKE_ARGS= -DINSTALL_KAJONGG:BOOL=TRUE diff --git a/games/kanagram-kde4/Makefile b/games/kanagram-kde4/Makefile index c114112716a0..57e3291fa790 100644 --- a/games/kanagram-kde4/Makefile +++ b/games/kanagram-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= Letter order game for KDE 4 DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs libkeduvocdocument automoc4 USE_QT= xml corelib declarative gui opengl script xml \ moc_build qmake_build rcc_build uic_build diff --git a/games/kanagram/Makefile b/games/kanagram/Makefile index 00bb0a637cb7..0c599df0a083 100644 --- a/games/kanagram/Makefile +++ b/games/kanagram/Makefile @@ -7,7 +7,7 @@ CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Letter order game for KDE -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= attica auth codecs config configwidgets coreaddons crash \ doctools ecm i18n kdeclarative kio libkeduvocdocument newstuff \ package service sonnet widgetsaddons xmlgui diff --git a/games/kapman-kde4/Makefile b/games/kapman-kde4/Makefile index 1c75d18c90b5..20a7e3a78881 100644 --- a/games/kapman-kde4/Makefile +++ b/games/kapman-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= ${${PORTNAME}_DESC} DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs libkdegames automoc4 USE_QT= corelib gui xml \ moc_build qmake_build rcc_build uic_build diff --git a/games/kapman/Makefile b/games/kapman/Makefile index d91cb3a04ed0..d5560151aa30 100644 --- a/games/kapman/Makefile +++ b/games/kapman/Makefile @@ -7,7 +7,7 @@ CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= ${${PORTNAME}_DESC} -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons crash \ dbusaddons ecm i18n libkdegames notifyconfig widgetsaddons \ windowsystem xmlgui diff --git a/games/katomic-kde4/Makefile b/games/katomic-kde4/Makefile index 07a05f0064ee..2433f2e4ba60 100644 --- a/games/katomic-kde4/Makefile +++ b/games/katomic-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= ${${PORTNAME}_DESC} DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 shebangfix tar:xz +USES= cmake kde:4 qt:4 shebangfix tar:xz USE_KDE= kdelibs libkdegames automoc4 SHEBANG_FILES= katomic-levelset-upd.pl USE_QT= moc_build qmake_build rcc_build uic_build diff --git a/games/katomic/Makefile b/games/katomic/Makefile index 95ab8ce78ea0..b13f737df26c 100644 --- a/games/katomic/Makefile +++ b/games/katomic/Makefile @@ -6,7 +6,7 @@ CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= ${${PORTNAME}_DESC} -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 \ +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 \ shebangfix tar:xz USE_KDE= attica auth codecs config configwidgets coreaddons crash \ dbusaddons ecm guiaddons i18n iconthemes itemviews kio \ diff --git a/games/kblackbox-kde4/Makefile b/games/kblackbox-kde4/Makefile index 3aa05cba393c..4ca12d2cdb43 100644 --- a/games/kblackbox-kde4/Makefile +++ b/games/kblackbox-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= ${${PORTNAME}_DESC} DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs libkdegames automoc4 USE_QT= corelib gui xml \ moc_build qmake_build rcc_build uic_build diff --git a/games/kblackbox/Makefile b/games/kblackbox/Makefile index 06366ece7702..8d911636414f 100644 --- a/games/kblackbox/Makefile +++ b/games/kblackbox/Makefile @@ -7,7 +7,7 @@ CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= ${${PORTNAME}_DESC} -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= archive auth codecs config configwidgets coreaddons crash \ dbusaddons ecm guiaddons i18n iconthemes libkdegames sonnet \ textwidgets widgetsaddons xmlgui diff --git a/games/kblocks-kde4/Makefile b/games/kblocks-kde4/Makefile index f6fb89e5e9f1..35963a005e52 100644 --- a/games/kblocks-kde4/Makefile +++ b/games/kblocks-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= ${${PORTNAME}_DESC} DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs libkdegames automoc4 USE_QT= corelib gui network \ moc_build qmake_build rcc_build uic_build diff --git a/games/kblocks/Makefile b/games/kblocks/Makefile index ba3946402782..144f2fd091df 100644 --- a/games/kblocks/Makefile +++ b/games/kblocks/Makefile @@ -7,7 +7,7 @@ CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= ${${PORTNAME}_DESC} -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons crash \ dbusaddons i18n itemmodels kio libkdegames newstuff \ notifyconfig textwidgets widgetsaddons windowsystem xmlgui diff --git a/games/kbounce-kde4/Makefile b/games/kbounce-kde4/Makefile index 71b48637c837..31a020ef4786 100644 --- a/games/kbounce-kde4/Makefile +++ b/games/kbounce-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= ${${PORTNAME}_DESC} DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs libkdegames automoc4 USE_QT= moc_build qmake_build rcc_build uic_build diff --git a/games/kbounce/Makefile b/games/kbounce/Makefile index 64a9ee83c17f..f16a1dd58a0e 100644 --- a/games/kbounce/Makefile +++ b/games/kbounce/Makefile @@ -7,7 +7,7 @@ CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= ${${PORTNAME}_DESC} -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons crash \ dbusaddons ecm guiaddons i18n iconthemes jobwidgets kio \ libkdegames notifyconfig service textwidgets widgetsaddons xmlgui diff --git a/games/kbreakout-kde4/Makefile b/games/kbreakout-kde4/Makefile index a959a58fd69c..e4d35b3f8bbe 100644 --- a/games/kbreakout-kde4/Makefile +++ b/games/kbreakout-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= ${${PORTNAME}_DESC} DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs libkdegames automoc4 USE_QT= corelib gui xml \ moc_build qmake_build rcc_build uic_build diff --git a/games/kbreakout/Makefile b/games/kbreakout/Makefile index b1b6514573ef..b452121a806e 100644 --- a/games/kbreakout/Makefile +++ b/games/kbreakout/Makefile @@ -7,7 +7,7 @@ CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= ${${PORTNAME}_DESC} -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons crash \ dbusaddons ecm guiaddons i18n iconthemes jobwidgets kio libkdegames \ service widgetsaddons xmlgui diff --git a/games/kdiamond-kde4/Makefile b/games/kdiamond-kde4/Makefile index e599a84473a7..e3370f13fcf1 100644 --- a/games/kdiamond-kde4/Makefile +++ b/games/kdiamond-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= ${${PORTNAME}_DESC} DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs libkdegames automoc4 USE_QT= moc_build qmake_build rcc_build uic_build diff --git a/games/kdiamond/Makefile b/games/kdiamond/Makefile index 78a47c21caf8..65e6c16ba32c 100644 --- a/games/kdiamond/Makefile +++ b/games/kdiamond/Makefile @@ -7,7 +7,7 @@ CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= ${${PORTNAME}_DESC} -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons crash dbusaddons \ doctools ecm guiaddons i18n iconthemes libkdegames \ notifications notifyconfig widgetsaddons xmlgui diff --git a/games/kfourinline-kde4/Makefile b/games/kfourinline-kde4/Makefile index 7047a2b24fdd..d8186ce3febf 100644 --- a/games/kfourinline-kde4/Makefile +++ b/games/kfourinline-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= ${${PORTNAME}_DESC} DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs libkdegames automoc4 USE_QT= moc_build qmake_build rcc_build uic_build diff --git a/games/kfourinline/Makefile b/games/kfourinline/Makefile index 2bde983ed0ab..78bc4c64f4c5 100644 --- a/games/kfourinline/Makefile +++ b/games/kfourinline/Makefile @@ -7,7 +7,7 @@ CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= ${${PORTNAME}_DESC} -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons crash \ dbusaddons dnssd ecm i18n iconthemes itemmodels itemviews \ kdeclarative kdelibs4support kio libkdegames notifyconfig \ diff --git a/games/kgoldrunner-kde4/Makefile b/games/kgoldrunner-kde4/Makefile index 6f72c8bc9d58..3b8dbd3f434d 100644 --- a/games/kgoldrunner-kde4/Makefile +++ b/games/kgoldrunner-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= ${${PORTNAME}_DESC} DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs libkdegames automoc4 USE_QT= moc_build qmake_build rcc_build uic_build diff --git a/games/kgoldrunner/Makefile b/games/kgoldrunner/Makefile index ceb391263630..4cb2b429878f 100644 --- a/games/kgoldrunner/Makefile +++ b/games/kgoldrunner/Makefile @@ -7,7 +7,7 @@ CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= ${${PORTNAME}_DESC} -USES= cmake:outsource kde:5 qt:5 tar:xz +USES= cmake kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons \ crash dbusaddons ecm i18n kio libkdegames service \ widgetsaddons xmlgui diff --git a/games/khangman-kde4/Makefile b/games/khangman-kde4/Makefile index 2720f4005c0d..66ec1f3d5c52 100644 --- a/games/khangman-kde4/Makefile +++ b/games/khangman-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= Hangman game for KDE 4 DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs libkeduvocdocument automoc4 USE_QT= corelib declarative gui opengl script xml \ moc_build qmake_build rcc_build uic_build diff --git a/games/khangman/Makefile b/games/khangman/Makefile index d9d5f26464d3..df7e90a08496 100644 --- a/games/khangman/Makefile +++ b/games/khangman/Makefile @@ -7,7 +7,7 @@ CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Hangman game for KDE 4 -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= attica auth codecs completion config configwidgets coreaddons \ crash doctools ecm i18n kdeclarative libkeduvocdocument \ newstuff notifications package service widgetsaddons xmlgui diff --git a/games/kigo-kde4/Makefile b/games/kigo-kde4/Makefile index 6cb672661502..e39c9a6cd251 100644 --- a/games/kigo-kde4/Makefile +++ b/games/kigo-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= ${${PORTNAME}_DESC} DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs libkdegames automoc4 USE_QT= moc_build qmake_build rcc_build uic_build diff --git a/games/kigo/Makefile b/games/kigo/Makefile index e4cc6c44d2ef..ba953b6b9884 100644 --- a/games/kigo/Makefile +++ b/games/kigo/Makefile @@ -7,7 +7,7 @@ CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= ${${PORTNAME}_DESC} -USES= cmake:outsource kde:5 qt:5 tar:xz +USES= cmake kde:5 qt:5 tar:xz USE_KDE= attica auth codecs completion config configwidgets \ coreaddons crash dbusaddons ecm i18n jobwidgets kio \ libkdegames newstuff notifyconfig service sonnet textwidgets \ diff --git a/games/killbots-kde4/Makefile b/games/killbots-kde4/Makefile index bb0df4a9bf06..5d7917e91cce 100644 --- a/games/killbots-kde4/Makefile +++ b/games/killbots-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= ${${PORTNAME}_DESC} DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs libkdegames automoc4 USE_QT= corelib gui qtestlib xml \ moc_build qmake_build rcc_build uic_build diff --git a/games/killbots/Makefile b/games/killbots/Makefile index 31648ffb77c6..1e12820c2ff7 100644 --- a/games/killbots/Makefile +++ b/games/killbots/Makefile @@ -7,7 +7,7 @@ CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= ${${PORTNAME}_DESC} -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons crash \ dbusaddons ecm guiaddons i18n iconthemes itemviews kio \ libkdegames notifyconfig widgetsaddons xmlgui diff --git a/games/kiriki-kde4/Makefile b/games/kiriki-kde4/Makefile index 9cb7126a061b..269a08e9a7fc 100644 --- a/games/kiriki-kde4/Makefile +++ b/games/kiriki-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= ${${PORTNAME}_DESC} DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs libkdegames automoc4 USE_QT= moc_build qmake_build rcc_build uic_build diff --git a/games/kiriki/Makefile b/games/kiriki/Makefile index 5ad639941657..76a5bc292df4 100644 --- a/games/kiriki/Makefile +++ b/games/kiriki/Makefile @@ -7,7 +7,7 @@ CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= ${${PORTNAME}_DESC} -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons crash dbusaddons \ ecm guiaddons i18n iconthemes kio libkdegames widgetsaddons xmlgui USE_QT= core dbus declarative gui network printsupport svg widgets xml \ diff --git a/games/kjumpingcube-kde4/Makefile b/games/kjumpingcube-kde4/Makefile index 4b3db2117e1d..dd0a9ccfcee6 100644 --- a/games/kjumpingcube-kde4/Makefile +++ b/games/kjumpingcube-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= ${${PORTNAME}_DESC} DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs libkdegames automoc4 USE_QT= moc_build qmake_build rcc_build uic_build diff --git a/games/kjumpingcube/Makefile b/games/kjumpingcube/Makefile index 942f3029ce27..1ed388bad3dc 100644 --- a/games/kjumpingcube/Makefile +++ b/games/kjumpingcube/Makefile @@ -7,7 +7,7 @@ CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= ${${PORTNAME}_DESC} -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons crash \ dbusaddons ecm guiaddons i18n iconthemes itemviews jobwidgets \ kio libkdegames newstuff notifyconfig service widgetsaddons \ diff --git a/games/klickety-kde4/Makefile b/games/klickety-kde4/Makefile index 83c87202b334..481afe6c3ebd 100644 --- a/games/klickety-kde4/Makefile +++ b/games/klickety-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= ${${PORTNAME}_DESC} DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 shebangfix tar:xz +USES= cmake kde:4 qt:4 shebangfix tar:xz USE_KDE= kdelibs libkdegames automoc4 SHEBANG_FILES= klickety-2.0-inherit-ksame-highscore.pl USE_QT= corelib gui xml \ diff --git a/games/klickety/Makefile b/games/klickety/Makefile index a5e538be589e..90e785dc5e27 100644 --- a/games/klickety/Makefile +++ b/games/klickety/Makefile @@ -7,7 +7,7 @@ CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= ${${PORTNAME}_DESC} -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 \ +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 \ shebangfix tar:xz SHEBANG_FILES= klickety-2.0-inherit-ksame-highscore.pl USE_KDE= auth bookmarks codecs completion config configwidgets \ diff --git a/games/klines-kde4/Makefile b/games/klines-kde4/Makefile index 78828c1415a0..f1f7d02d49a8 100644 --- a/games/klines-kde4/Makefile +++ b/games/klines-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= ${${PORTNAME}_DESC} DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs libkdegames automoc4 USE_QT= moc_build qmake_build rcc_build uic_build diff --git a/games/klines/Makefile b/games/klines/Makefile index fcb3fa4db0b3..4e6d92bbe33c 100644 --- a/games/klines/Makefile +++ b/games/klines/Makefile @@ -7,7 +7,7 @@ CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= ${${PORTNAME}_DESC} -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons crash dbusaddons \ ecm guiaddons i18n iconthemes itemviews kio libkdegames \ newstuff service widgetsaddons xmlgui diff --git a/games/kmahjongg-kde4/Makefile b/games/kmahjongg-kde4/Makefile index fa46f721235c..660eef75b814 100644 --- a/games/kmahjongg-kde4/Makefile +++ b/games/kmahjongg-kde4/Makefile @@ -13,7 +13,7 @@ EXPIRATION_DATE= 2018-12-31 LIB_DEPENDS= libkmahjongglib.so:games/libkmahjongg-kde4 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs libkdegames automoc4 USE_QT= moc_build qmake_build rcc_build uic_build diff --git a/games/kmahjongg/Makefile b/games/kmahjongg/Makefile index cfa81e60adf7..ccf75b6d1aec 100644 --- a/games/kmahjongg/Makefile +++ b/games/kmahjongg/Makefile @@ -9,7 +9,7 @@ COMMENT= ${${PORTNAME}_DESC} LIB_DEPENDS= libKF5KMahjongglib.so:games/libkmahjongg -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons crash \ dbusaddons doctools ecm i18n kdeclarative libkdegames newstuff \ widgetsaddons xmlgui diff --git a/games/kmines-kde4/Makefile b/games/kmines-kde4/Makefile index b464a3e941bb..ad709f5aecea 100644 --- a/games/kmines-kde4/Makefile +++ b/games/kmines-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= ${${PORTNAME}_DESC} DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs libkdegames automoc4 USE_QT= moc_build qmake_build rcc_build uic_build diff --git a/games/kmines/Makefile b/games/kmines/Makefile index dac7119dc244..8126de1fdc26 100644 --- a/games/kmines/Makefile +++ b/games/kmines/Makefile @@ -7,7 +7,7 @@ CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= ${${PORTNAME}_DESC} -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons crash dbusaddons \ ecm i18n kio libkdegames notifyconfig sonnet textwidgets \ widgetsaddons xmlgui diff --git a/games/knavalbattle-kde4/Makefile b/games/knavalbattle-kde4/Makefile index b05b9f2a71cc..3375f9f2d1f6 100644 --- a/games/knavalbattle-kde4/Makefile +++ b/games/knavalbattle-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= ${${PORTNAME}_DESC} DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs libkdegames automoc4 USE_QT= corelib gui network xml \ moc_build qmake_build rcc_build uic_build diff --git a/games/knavalbattle/Makefile b/games/knavalbattle/Makefile index 8a192f35dffb..71e7f490fd55 100644 --- a/games/knavalbattle/Makefile +++ b/games/knavalbattle/Makefile @@ -7,7 +7,7 @@ CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= ${${PORTNAME}_DESC} -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons crash \ dbusaddons dnssd doctools ecm i18n libkdegames sonnet \ textwidgets widgetsaddons xmlgui diff --git a/games/knetwalk-kde4/Makefile b/games/knetwalk-kde4/Makefile index b428edd7702b..1562b3b8b093 100644 --- a/games/knetwalk-kde4/Makefile +++ b/games/knetwalk-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= ${${PORTNAME}_DESC} DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs libkdegames automoc4 USE_QT= moc_build qmake_build rcc_build uic_build diff --git a/games/knetwalk/Makefile b/games/knetwalk/Makefile index 3c8a76534bd5..2131b2e97bf2 100644 --- a/games/knetwalk/Makefile +++ b/games/knetwalk/Makefile @@ -7,7 +7,7 @@ CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= ${${PORTNAME}_DESC} -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons crash dbusaddons \ ecm guiaddons i18n iconthemes itemviews kio libkdegames \ notifyconfig sonnet textwidgets widgetsaddons xmlgui diff --git a/games/knights-kde4/Makefile b/games/knights-kde4/Makefile index 8380c51576cf..f716aeb5b91a 100644 --- a/games/knights-kde4/Makefile +++ b/games/knights-kde4/Makefile @@ -17,7 +17,7 @@ LICENSE= GPLv2 DEPRECATED= Qt4 has been EOL since december 2015 EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:bzip2 +USES= cmake kde:4 qt:4 tar:bzip2 USE_KDE= kdelibs automoc4 workspace libkdegames USE_QT= qmake_build moc_build rcc_build uic_build diff --git a/games/kolf-kde4/Makefile b/games/kolf-kde4/Makefile index 4e389e198a6b..81f5fa73826b 100644 --- a/games/kolf-kde4/Makefile +++ b/games/kolf-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= ${${PORTNAME}_DESC} DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs libkdegames automoc4 USE_QT= moc_build qmake_build rcc_build uic_build USE_LDCONFIG= yes diff --git a/games/kolf/Makefile b/games/kolf/Makefile index 9ecdabec9078..706b3ac6b93f 100644 --- a/games/kolf/Makefile +++ b/games/kolf/Makefile @@ -7,7 +7,7 @@ CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= ${${PORTNAME}_DESC} -USES= cmake:outsource compiler:c++11-lang kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang kde:5 qt:5 tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons ecm guiaddons i18n iconthemes \ itemviews jobwidgets kdelibs4support kio libkdegames \ diff --git a/games/kollision-kde4/Makefile b/games/kollision-kde4/Makefile index 657e1f9b4aac..7e4ff788469a 100644 --- a/games/kollision-kde4/Makefile +++ b/games/kollision-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= ${${PORTNAME}_DESC} DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs libkdegames automoc4 USE_QT= moc_build qmake_build rcc_build uic_build diff --git a/games/kollision/Makefile b/games/kollision/Makefile index 46fb752728f4..a6c295ee9501 100644 --- a/games/kollision/Makefile +++ b/games/kollision/Makefile @@ -7,7 +7,7 @@ CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= ${${PORTNAME}_DESC} -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons crash dbusaddons \ ecm i18n kio libkdegames newstuff notifyconfig textwidgets \ widgetsaddons xmlgui diff --git a/games/konquest-kde4/Makefile b/games/konquest-kde4/Makefile index 45b848906222..f09ea1c92848 100644 --- a/games/konquest-kde4/Makefile +++ b/games/konquest-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= ${${PORTNAME}_DESC} DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs libkdegames automoc4 USE_QT= moc_build qmake_build rcc_build uic_build diff --git a/games/konquest/Makefile b/games/konquest/Makefile index 2fa2e719c108..ee1f77a05068 100644 --- a/games/konquest/Makefile +++ b/games/konquest/Makefile @@ -7,7 +7,7 @@ CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= ${${PORTNAME}_DESC} -USES= cmake:outsource kde:5 qt:5 tar:xz +USES= cmake kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons crash \ dbusaddons ecm guiaddons i18n libkdegames widgetsaddons \ xmlgui diff --git a/games/kpat-kde4/Makefile b/games/kpat-kde4/Makefile index 69254e53bf15..f608f3f73f73 100644 --- a/games/kpat-kde4/Makefile +++ b/games/kpat-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= ${${PORTNAME}_DESC} DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 shared-mime-info tar:xz +USES= cmake kde:4 qt:4 shared-mime-info tar:xz USE_KDE= kdelibs libkdegames automoc4 USE_QT= moc_build qmake_build rcc_build uic_build diff --git a/games/kpat/Makefile b/games/kpat/Makefile index e310f516bba0..15c72fd84769 100644 --- a/games/kpat/Makefile +++ b/games/kpat/Makefile @@ -9,7 +9,7 @@ COMMENT= ${${PORTNAME}_DESC} LIB_DEPENDS= libfreecell-solver.so:games/freecell-solver -USES= cmake:outsource compiler:c++11-lang gettext kde:5 pkgconfig \ +USES= cmake compiler:c++11-lang gettext kde:5 pkgconfig \ qt:5 shared-mime-info tar:xz USE_KDE= attica auth codecs completion config configwidgets coreaddons \ crash dbusaddons ecm guiaddons i18n iconthemes itemviews \ diff --git a/games/kreversi-kde4/Makefile b/games/kreversi-kde4/Makefile index 35b75e81b805..b42412f9c378 100644 --- a/games/kreversi-kde4/Makefile +++ b/games/kreversi-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= ${${PORTNAME}_DESC} DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs libkdegames automoc4 USE_QT= moc_build qmake_build rcc_build uic_build diff --git a/games/kreversi/Makefile b/games/kreversi/Makefile index b011c187e11f..c3eac5a85547 100644 --- a/games/kreversi/Makefile +++ b/games/kreversi/Makefile @@ -7,7 +7,7 @@ CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= ${${PORTNAME}_DESC} -USES= cmake:outsource kde:5 qt:5 tar:xz +USES= cmake kde:5 qt:5 tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons ecm i18n iconthemes itemviews \ jobwidgets kdeclarative kio libkdegames package service \ diff --git a/games/kshisen-kde4/Makefile b/games/kshisen-kde4/Makefile index 64584e4ed5c5..5e6bb58f0f0a 100644 --- a/games/kshisen-kde4/Makefile +++ b/games/kshisen-kde4/Makefile @@ -13,7 +13,7 @@ EXPIRATION_DATE= 2018-12-31 LIB_DEPENDS= libkmahjongglib.so:games/libkmahjongg-kde4 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs libkdegames automoc4 USE_QT= moc_build qmake_build rcc_build uic_build diff --git a/games/kshisen/Makefile b/games/kshisen/Makefile index da151a58299e..10ce4f7423c9 100644 --- a/games/kshisen/Makefile +++ b/games/kshisen/Makefile @@ -9,7 +9,7 @@ COMMENT= ${${PORTNAME}_DESC} LIB_DEPENDS= libKF5KMahjongglib.so:games/libkmahjongg -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons crash \ dbusaddons dnssd ecm i18n kdeclarative kio libkdegames \ newstuff widgetsaddons xmlgui diff --git a/games/ksirk-kde4/Makefile b/games/ksirk-kde4/Makefile index 2cf23f6f46ab..6202faba79fd 100644 --- a/games/ksirk-kde4/Makefile +++ b/games/ksirk-kde4/Makefile @@ -13,7 +13,7 @@ EXPIRATION_DATE= 2018-12-31 LIB_DEPENDS= libqca.so:devel/qca@qt4 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs libkdegames automoc4 USE_QT= corelib gui corelib gui network qt3support svg xml \ moc_build qmake_build rcc_build uic_build diff --git a/games/ksirk/Makefile b/games/ksirk/Makefile index b93f562aa2b0..206319be61c2 100644 --- a/games/ksirk/Makefile +++ b/games/ksirk/Makefile @@ -9,7 +9,7 @@ COMMENT= ${${PORTNAME}_DESC} LIB_DEPENDS= libqca-qt5.so:devel/qca@qt5 -USES= cmake:outsource compiler:c++11-lang kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang kde:5 qt:5 tar:xz USE_KDE= attica auth codecs completion config configwidgets \ coreaddons crash i18n iconthemes kio libkdegames newstuff \ service wallet widgetsaddons xmlgui diff --git a/games/ksnakeduel-kde4/Makefile b/games/ksnakeduel-kde4/Makefile index 4de00a74cf23..471c1671bb64 100644 --- a/games/ksnakeduel-kde4/Makefile +++ b/games/ksnakeduel-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= ${${PORTNAME}_DESC} DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs libkdegames automoc4 USE_QT= moc_build qmake_build rcc_build uic_build diff --git a/games/ksnakeduel/Makefile b/games/ksnakeduel/Makefile index 8cf59e824d1a..e45dd1a87bd4 100644 --- a/games/ksnakeduel/Makefile +++ b/games/ksnakeduel/Makefile @@ -7,7 +7,7 @@ CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= ${${PORTNAME}_DESC} -USES= cmake:outsource kde:5 qt:5 tar:xz +USES= cmake kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons \ crash dbusaddons ecm guiaddons i18n libkdegames \ widgetsaddons xmlgui diff --git a/games/kspaceduel-kde4/Makefile b/games/kspaceduel-kde4/Makefile index dde575a6f58e..691e87810d09 100644 --- a/games/kspaceduel-kde4/Makefile +++ b/games/kspaceduel-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= ${${PORTNAME}_DESC} DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs libkdegames automoc4 USE_QT= moc_build qmake_build rcc_build uic_build diff --git a/games/kspaceduel/Makefile b/games/kspaceduel/Makefile index d992ab138099..59a579393fb8 100644 --- a/games/kspaceduel/Makefile +++ b/games/kspaceduel/Makefile @@ -7,7 +7,7 @@ CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= ${${PORTNAME}_DESC} -USES= cmake:outsource kde:5 qt:5 tar:xz +USES= cmake kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons \ crash dbusaddons ecm i18n libkdegames widgetsaddons xmlgui USE_QT= core dbus declarative gui network svg widgets xml \ diff --git a/games/ksquares-kde4/Makefile b/games/ksquares-kde4/Makefile index ff13c02b7584..7e63bf457655 100644 --- a/games/ksquares-kde4/Makefile +++ b/games/ksquares-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= ${${PORTNAME}_DESC} DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs libkdegames automoc4 USE_QT= moc_build qmake_build rcc_build uic_build diff --git a/games/ksquares/Makefile b/games/ksquares/Makefile index 5e5a5ef71b72..ad58bb6b50aa 100644 --- a/games/ksquares/Makefile +++ b/games/ksquares/Makefile @@ -7,7 +7,7 @@ CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= ${${PORTNAME}_DESC} -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons crash \ dbusaddons ecm guiaddons i18n iconthemes itemviews kio \ libkdegames notifyconfig widgetsaddons xmlgui diff --git a/games/ksudoku-kde4/Makefile b/games/ksudoku-kde4/Makefile index 934af00a1ccd..63d918c4a583 100644 --- a/games/ksudoku-kde4/Makefile +++ b/games/ksudoku-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= ${${PORTNAME}_DESC} DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_GL= glu USE_KDE= kdelibs libkdegames automoc4 USE_QT= corelib gui corelib gui opengl \ diff --git a/games/ksudoku/Makefile b/games/ksudoku/Makefile index f3d7248f5c51..c8cba26cdeb3 100644 --- a/games/ksudoku/Makefile +++ b/games/ksudoku/Makefile @@ -7,7 +7,7 @@ CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= ${${PORTNAME}_DESC} -USES= cmake:outsource kde:5 qt:5 tar:xz +USES= cmake kde:5 qt:5 tar:xz USE_GL= gl glu USE_KDE= archive auth codecs completion config configwidgets \ coreaddons crash ecm guiaddons i18n jobwidgets kio \ diff --git a/games/ktuberling-kde4/Makefile b/games/ktuberling-kde4/Makefile index d8c8a3869da9..c48ad6456eec 100644 --- a/games/ktuberling-kde4/Makefile +++ b/games/ktuberling-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= ${${PORTNAME}_DESC} DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs libkdegames automoc4 USE_QT= moc_build qmake_build rcc_build uic_build diff --git a/games/ktuberling/Makefile b/games/ktuberling/Makefile index f6f40c8c45bb..2a02bbc43c91 100644 --- a/games/ktuberling/Makefile +++ b/games/ktuberling/Makefile @@ -7,7 +7,7 @@ CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= ${${PORTNAME}_DESC} -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons ecm emoticons guiaddons i18n \ iconthemes init itemmodels itemviews jobwidgets \ diff --git a/games/kubrick-kde4/Makefile b/games/kubrick-kde4/Makefile index 66675c89b584..ae59b517ef2c 100644 --- a/games/kubrick-kde4/Makefile +++ b/games/kubrick-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= ${${PORTNAME}_DESC} DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_GL= glu USE_KDE= kdelibs libkdegames automoc4 USE_QT= corelib gui opengl \ diff --git a/games/kubrick/Makefile b/games/kubrick/Makefile index 0a17d96a71a6..65c85189811f 100644 --- a/games/kubrick/Makefile +++ b/games/kubrick/Makefile @@ -7,7 +7,7 @@ CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= ${${PORTNAME}_DESC} -USES= cmake:outsource kde:5 qt:5 tar:xz +USES= cmake kde:5 qt:5 tar:xz USE_GL= gl glu USE_KDE= auth codecs config configwidgets coreaddons crash ecm \ i18n kio libkdegames service widgetsaddons xmlgui diff --git a/games/libkdegames-kde4/Makefile b/games/libkdegames-kde4/Makefile index 1b2a08652678..d6c5e17215d3 100644 --- a/games/libkdegames-kde4/Makefile +++ b/games/libkdegames-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= Libraries used by KDE 4 games DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs automoc4 USE_QT= network phonon xml moc_build qmake_build rcc_build uic_build USE_LDCONFIG= yes diff --git a/games/libkdegames/Makefile b/games/libkdegames/Makefile index f0be1d0ed234..c8c14e4b4804 100644 --- a/games/libkdegames/Makefile +++ b/games/libkdegames/Makefile @@ -9,7 +9,7 @@ COMMENT= Libraries used by KDE games LIB_DEPENDS= libsndfile.so:audio/libsndfile -USES= cmake:outsource compiler:c++11-lang gettext kde:5 openal qt:5 \ +USES= cmake compiler:c++11-lang gettext kde:5 openal qt:5 \ tar:xz USE_KDE= archive attica auth bookmarks codecs completion config \ configwidgets coreaddons crash dbusaddons dnssd ecm emoticons \ diff --git a/games/libkmahjongg-kde4/Makefile b/games/libkmahjongg-kde4/Makefile index ce02bdb4ef01..6e2e908e9497 100644 --- a/games/libkmahjongg-kde4/Makefile +++ b/games/libkmahjongg-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= Library for the Mahjongg Solitaire for KDE 4 DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs libkdegames automoc4 USE_QT= moc_build qmake_build rcc_build uic_build USE_LDCONFIG= yes diff --git a/games/libkmahjongg/Makefile b/games/libkmahjongg/Makefile index 12424a2d75ee..f417350183f7 100644 --- a/games/libkmahjongg/Makefile +++ b/games/libkmahjongg/Makefile @@ -7,7 +7,7 @@ CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Library for the Mahjongg Solitaire for KDE 5 -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= completion config configwidgets coreaddons ecm i18n widgetsaddons USE_QT= core gui svg widgets \ buildtools_build qmake_build diff --git a/games/lskat-kde4/Makefile b/games/lskat-kde4/Makefile index 4a5222d65f95..b462f22beea6 100644 --- a/games/lskat-kde4/Makefile +++ b/games/lskat-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= ${${PORTNAME}_DESC} DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs libkdegames automoc4 USE_QT= corelib gui gui svg \ moc_build qmake_build rcc_build uic_build diff --git a/games/lskat/Makefile b/games/lskat/Makefile index f8c78a6c990c..9597a30a7251 100644 --- a/games/lskat/Makefile +++ b/games/lskat/Makefile @@ -7,7 +7,7 @@ CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= ${${PORTNAME}_DESC} -USES= cmake:outsource kde:5 qt:5 tar:xz +USES= cmake kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons crash ecm \ guiaddons i18n libkdegames notifyconfig widgetsaddons xmlgui USE_QT= core dbus declarative gui network svg widgets xml \ diff --git a/games/megaglest/Makefile b/games/megaglest/Makefile index e8eb2a1a587b..c94bd4f078a1 100644 --- a/games/megaglest/Makefile +++ b/games/megaglest/Makefile @@ -29,7 +29,7 @@ GH_PROJECT= megaglest-source SUB_FILES= pkg-message -USES= cmake compiler:c++11-lib display:build dos2unix jpeg lua \ +USES= cmake:insource compiler:c++11-lib display:build dos2unix jpeg lua \ openal:al,alut pkgconfig USE_GL= glew gl glu USE_SDL= sdl2 diff --git a/games/memonix/Makefile b/games/memonix/Makefile index bc88056d3f41..85da4392940f 100644 --- a/games/memonix/Makefile +++ b/games/memonix/Makefile @@ -23,7 +23,7 @@ LICENSE_PERMS_unknown= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept LICENSE_DISTFILES_unknown= memx16.tar.gz LICENSE_DISTFILES_GPLv2= ${DISTNAME}${EXTRACT_SUFX} -USES= cmake zip +USES= cmake:insource zip USE_SDL= sdl mixer image USE_GL= yes diff --git a/games/multimc/Makefile b/games/multimc/Makefile index 39eae40f7acc..d15eb4b18f58 100644 --- a/games/multimc/Makefile +++ b/games/multimc/Makefile @@ -13,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING.md RUN_DEPENDS= lwjgl>=2.9.3:games/lwjgl -USES= cmake:outsource compiler:c++14-lang qt:5 +USES= cmake compiler:c++14-lang qt:5 USE_GITHUB= yes GH_ACCOUNT= MultiMC GH_PROJECT= MultiMC5 diff --git a/games/nxengine/Makefile b/games/nxengine/Makefile index c25ee5d9ba1c..d6de72579219 100644 --- a/games/nxengine/Makefile +++ b/games/nxengine/Makefile @@ -25,7 +25,7 @@ LICENSE_DISTFILES_FREEWARE= ${DISTFILES:[2]:S/:data//} LIB_DEPENDS= libpng.so:graphics/png -USES= cmake:outsource compiler:c++11-lang +USES= cmake compiler:c++11-lang USE_SDL= mixer2 sdl2 SUB_FILES= ${PORTNAME} diff --git a/games/odamex/Makefile b/games/odamex/Makefile index 42b712684d63..390c6195114a 100644 --- a/games/odamex/Makefile +++ b/games/odamex/Makefile @@ -17,7 +17,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libpng.so:graphics/png USE_SDL= sdl mixer -USES= cmake compiler dos2unix tar:bzip2 +USES= cmake:insource compiler dos2unix tar:bzip2 DOS2UNIX_FILES= CMakeLists.txt odalaunch/CMakeLists.txt common/d_main.cpp CXXFLAGS+= ${CXXFLAGS_${CHOSEN_COMPILER_TYPE}} diff --git a/games/openage/Makefile b/games/openage/Makefile index 099a3f53057b..f2ac6c9b3455 100644 --- a/games/openage/Makefile +++ b/games/openage/Makefile @@ -31,7 +31,7 @@ RUN_DEPENDS= ${PYNUMPY} \ ${PYTHON_PKGNAMEPREFIX}pillow>0:graphics/py-pillow@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pygments>0:textproc/py-pygments@${PY_FLAVOR} -USES= cmake:outsource compiler:c++17-lang python:3.4+ qt:5 shebangfix +USES= cmake compiler:c++17-lang python:3.4+ qt:5 shebangfix SHEBANG_FILES= configure run.py buildsystem/cythonize.py USE_GITHUB= yes GH_ACCOUNT= SFTtech diff --git a/games/openclaw/Makefile b/games/openclaw/Makefile index 52c60467921f..465a420f49c6 100644 --- a/games/openclaw/Makefile +++ b/games/openclaw/Makefile @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt LIB_DEPENDS= libtinyxml.so:textproc/tinyxml -USES= cmake:outsource compiler:c++11-lib pkgconfig localbase:ldflags +USES= cmake compiler:c++11-lib pkgconfig localbase:ldflags USE_GITHUB= yes GH_ACCOUNT= pjasicek USE_SDL= gfx2 image2 mixer2 ttf2 diff --git a/games/openlierox/Makefile b/games/openlierox/Makefile index eb3121182b27..7ca6a3e06631 100644 --- a/games/openlierox/Makefile +++ b/games/openlierox/Makefile @@ -14,7 +14,7 @@ COMMENT= Extremely addictive realtime worms shoot-em-up LIB_DEPENDS= libcurl.so:ftp/curl -USES= cmake compiler:c++11-lang gnome localbase pkgconfig tar:bzip2 +USES= cmake:insource compiler:c++11-lang gnome localbase pkgconfig tar:bzip2 USE_SDL= sdl image USE_GNOME= libxml2 diff --git a/games/openmw/Makefile b/games/openmw/Makefile index 2f6c65a434c7..6896ba777d6e 100644 --- a/games/openmw/Makefile +++ b/games/openmw/Makefile @@ -23,7 +23,7 @@ LIB_DEPENDS= libavcodec.so:multimedia/ffmpeg \ USE_GITHUB= yes GH_ACCOUNT= OpenMW -USES= cmake:outsource compiler:c++14-lang openal pkgconfig qt:5 +USES= cmake compiler:c++14-lang openal pkgconfig qt:5 USE_GL= gl USE_QT= qmake_build buildtools_build core gui network opengl \ printsupport widgets diff --git a/games/openomf/Makefile b/games/openomf/Makefile index 239cf3bdb4ac..9435710322de 100644 --- a/games/openomf/Makefile +++ b/games/openomf/Makefile @@ -27,7 +27,7 @@ GH_TAGNAME= c36c421 GH_TUPLE= omf2097:libShadowDive:b2c34a6:shadow \ kode54:dumb:238f23c:libdumb -USES= cmake compiler:c++11-lang gettext openal +USES= cmake:insource compiler:c++11-lang gettext openal USE_SDL= sdl2 LLD_UNSAFE= yes diff --git a/games/openrct2/Makefile b/games/openrct2/Makefile index 839734317fd3..b03aeadc956a 100644 --- a/games/openrct2/Makefile +++ b/games/openrct2/Makefile @@ -21,7 +21,7 @@ LIB_DEPENDS= libpng.so:graphics/png \ libcurl.so:ftp/curl \ libfreetype.so:print/freetype2 -USES= compiler:c++14-lang cmake:outsource desktop-file-utils iconv localbase:ldflags pkgconfig shared-mime-info ssl +USES= compiler:c++14-lang cmake desktop-file-utils iconv localbase:ldflags pkgconfig shared-mime-info ssl USE_GITHUB= yes GH_ACCOUNT= OpenRCT2 GH_PROJECT= OpenRCT2 diff --git a/games/openspades/Makefile b/games/openspades/Makefile index 3b94f89c25b1..8f9d5cd37319 100644 --- a/games/openspades/Makefile +++ b/games/openspades/Makefile @@ -24,7 +24,7 @@ BROKEN_powerpc64= fails to compile: uses x86 assembly USE_GITHUB= yes GH_ACCOUNT= yvt -USES= cmake compiler:c++11-lib desktop-file-utils +USES= cmake:insource compiler:c++11-lib desktop-file-utils CMAKE_ARGS= -DOPENSPADES_RESOURCES=OFF \ -DOPENSPADES_INSTALL_MAN="man/man6" \ -DOPENSPADES_INSTALL_BINARY="bin" \ diff --git a/games/pairs-kde4/Makefile b/games/pairs-kde4/Makefile index 55f0e1a38b5a..fd1d4f0b1262 100644 --- a/games/pairs-kde4/Makefile +++ b/games/pairs-kde4/Makefile @@ -14,7 +14,7 @@ LICENSE= GPLv2 DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs automoc4 USE_QT= declarative opengl phonon xmlpatterns \ moc_build qmake_build rcc_build uic_build diff --git a/games/palapeli-kde4/Makefile b/games/palapeli-kde4/Makefile index 1060258059fb..eafc34bc8472 100644 --- a/games/palapeli-kde4/Makefile +++ b/games/palapeli-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= ${${PORTNAME}_DESC} DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 shared-mime-info tar:xz +USES= cmake kde:4 qt:4 shared-mime-info tar:xz USE_KDE= kdelibs libkdegames automoc4 USE_QT= corelib gui gui \ moc_build qmake_build rcc_build uic_build diff --git a/games/palapeli/Makefile b/games/palapeli/Makefile index ce5ef0a245e8..85983703af60 100644 --- a/games/palapeli/Makefile +++ b/games/palapeli/Makefile @@ -7,7 +7,7 @@ CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= ${${PORTNAME}_DESC} -USES= cmake:outsource compiler:c++11-lang kde:5 qt:5 \ +USES= cmake compiler:c++11-lang kde:5 qt:5 \ shared-mime-info tar:xz USE_KDE= archive auth codecs completion config configwidgets coreaddons \ crash i18n itemviews jobwidgets kio libkdegames notifications service \ diff --git a/games/palomino/Makefile b/games/palomino/Makefile index 148ee62b4214..0085c230172b 100644 --- a/games/palomino/Makefile +++ b/games/palomino/Makefile @@ -20,7 +20,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE_GNU_GPL_2.txt LIB_DEPENDS= libosg.so:graphics/osg -USES= alias compiler:c++11-lang cmake:noninja gl lua:51 tar:xz +USES= alias compiler:c++11-lang cmake:insource,noninja gl lua:51 tar:xz USE_CXXSTD= gnu++98 USE_GL= gl glu diff --git a/games/picmi-kde4/Makefile b/games/picmi-kde4/Makefile index e0e84369e6b5..46d7c62c70ab 100644 --- a/games/picmi-kde4/Makefile +++ b/games/picmi-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= ${${PORTNAME}_DESC} DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs libkdegames automoc4 USE_QT= moc_build qmake_build rcc_build uic_build \ svg xml diff --git a/games/picmi/Makefile b/games/picmi/Makefile index 03c0ad080fde..bf016cb35115 100644 --- a/games/picmi/Makefile +++ b/games/picmi/Makefile @@ -7,7 +7,7 @@ CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= ${${PORTNAME}_DESC} -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons crash \ dbusaddons doctools ecm i18n jobwidgets kdeclarative kio \ libkdegames newstuff service widgetsaddons xmlgui diff --git a/games/py-fife/Makefile b/games/py-fife/Makefile index 22be9d7c8c63..0c8876304190 100644 --- a/games/py-fife/Makefile +++ b/games/py-fife/Makefile @@ -19,7 +19,7 @@ LIB_DEPENDS= libvorbisfile.so:audio/libvorbis \ BROKEN_powerpc64= fails to compile: fifePYTHON_wrap.cxx: relocation truncated to fit -USES= openal:al pkgconfig cmake:outsource +USES= openal:al pkgconfig cmake USE_GL= gl USE_SDL= sdl2 ttf2 image2 USE_XORG= xcursor diff --git a/games/spring/Makefile b/games/spring/Makefile index 2cbff5488613..6fa916bc6910 100644 --- a/games/spring/Makefile +++ b/games/spring/Makefile @@ -33,7 +33,7 @@ USE_LDCONFIG= yes LLD_UNSAFE= yes DOS2UNIX_GLOB= *.h *.hpp *.cpp -USES= cmake compiler:c++11-lib dos2unix openal:al tar:lzma +USES= cmake:insource compiler:c++11-lib dos2unix openal:al tar:lzma USES+= desktop-file-utils shared-mime-info CMAKE_ARGS= -DDATADIR:STRING="share/${PORTNAME}" \ -DAI_TYPES:STRING="NATIVE" \ diff --git a/games/stepmania-devel/Makefile b/games/stepmania-devel/Makefile index 92ce3730ad03..65b913b5224b 100644 --- a/games/stepmania-devel/Makefile +++ b/games/stepmania-devel/Makefile @@ -24,7 +24,7 @@ BROKEN_powerpc64= fails to compile: cc1plus: unrecognized command line option "- USE_GITHUB= yes -USES= cmake:outsource iconv jpeg perl5 pkgconfig shebangfix +USES= cmake:insource iconv jpeg perl5 pkgconfig shebangfix SHEBANG_FILES= Utils/*.pl extern/zlib/zlib2ansi USE_XORG= x11 xrandr xtst USE_GL= glew diff --git a/games/stratagus/Makefile b/games/stratagus/Makefile index 9a9e2ec7bb73..42684c2203dc 100644 --- a/games/stratagus/Makefile +++ b/games/stratagus/Makefile @@ -19,7 +19,7 @@ LIB_DEPENDS= libpng.so:graphics/png \ USE_GITHUB= yes GH_ACCOUNT= Wargus -USES= cmake:outsource compiler:c++11-lang gl lua:51 pkgconfig sqlite +USES= cmake compiler:c++11-lang gl lua:51 pkgconfig sqlite USE_GL= gl glu USE_SDL= sdl CMAKE_ARGS= -DGAMEDIR:STRING="bin" \ diff --git a/games/stuntrally/Makefile b/games/stuntrally/Makefile index 767d1c4e0b21..e910e665b9a7 100644 --- a/games/stuntrally/Makefile +++ b/games/stuntrally/Makefile @@ -20,7 +20,7 @@ LIB_DEPENDS= libboost_thread.so:devel/boost-libs USE_GITHUB= yes GH_TUPLE= stuntrally:tracks:${PORTVERSION}:tracks/data/tracks -USES= compiler:c++11-lib cmake:outsource dos2unix pkgconfig +USES= compiler:c++11-lib cmake dos2unix pkgconfig USE_CXXSTD= gnu++11 DOS2UNIX_FILES= source/ogre/BaseApp_Create.cpp CMAKE_ARGS= -DSHARE_INSTALL="${DATADIR_REL}" \ diff --git a/games/supertux2/Makefile b/games/supertux2/Makefile index ba5051f73793..9b7a14efebc2 100644 --- a/games/supertux2/Makefile +++ b/games/supertux2/Makefile @@ -18,7 +18,7 @@ LIB_DEPENDS= libphysfs.so:devel/physfs \ LLD_UNSAFE= yes USE_SDL= sdl2 image2 USE_GL= glew -USES= cmake:outsource compiler:c++11-lib dos2unix iconv \ +USES= cmake compiler:c++11-lib dos2unix iconv \ openal:al pkgconfig tar:bzip2 # Unhide std::to_string() to fix build with GCC (see ports/193528 for details) CFLAGS+= -D_GLIBCXX_USE_C99 diff --git a/games/traingame/Makefile b/games/traingame/Makefile index 4d84a28fbe92..2f2cc9a9a253 100644 --- a/games/traingame/Makefile +++ b/games/traingame/Makefile @@ -20,7 +20,7 @@ USE_GITHUB= yes GH_ACCOUNT= nickg GH_TAGNAME= cb6513e -USES= cmake compiler:c++11-lib dos2unix pkgconfig +USES= cmake:insource compiler:c++11-lib dos2unix pkgconfig DOS2UNIX_GLOB= *.mtl *.obj USE_CXXSTD= c++11 USE_SDL= sdl image diff --git a/games/trenchbroom/Makefile b/games/trenchbroom/Makefile index b7a94e29b2b0..366d886cc961 100644 --- a/games/trenchbroom/Makefile +++ b/games/trenchbroom/Makefile @@ -18,7 +18,7 @@ GH_ACCOUNT= kduske GH_PROJECT= TrenchBroom GH_TAGNAME= ed46601 -USES= cmake compiler:c++11-lib pkgconfig +USES= cmake:insource compiler:c++11-lib pkgconfig USE_GL= glew USE_WX= 3.0+ CMAKE_ARGS= -DAPP_BUILD_CHANNEL:STRING="Beta for ${OPSYS}/${ARCH}" diff --git a/games/voxelands/Makefile b/games/voxelands/Makefile index 86592481d9c7..c3bfe6b864bf 100644 --- a/games/voxelands/Makefile +++ b/games/voxelands/Makefile @@ -18,7 +18,7 @@ BROKEN_powerpc64= fails to link: sibling call optimization does not allow automa LIB_DEPENDS= libIrrlicht.so:x11-toolkits/irrlicht \ libfreetype.so:print/freetype2 -USES= cmake tar:bzip2 +USES= cmake:insource tar:bzip2 LLD_UNSAFE= yes WRKSRC= ${WRKDIR}/${PORTNAME} diff --git a/games/wesnoth/Makefile b/games/wesnoth/Makefile index 1e1758b33d84..b49a9c1a7fee 100644 --- a/games/wesnoth/Makefile +++ b/games/wesnoth/Makefile @@ -26,7 +26,7 @@ LDFLAGS+= -L${LOCALBASE}/lib -lboost_system PORTSCOUT= limitw:1,even -USES= cmake:outsource compiler:c++11-lang cpe pkgconfig \ +USES= cmake compiler:c++11-lang cpe pkgconfig \ python:2.7,run readline:port shebangfix ssl tar:bzip2 USE_SDL= image2 mixer2 ttf2 USE_LDCONFIG= yes diff --git a/games/widelands/Makefile b/games/widelands/Makefile index 75b7e1cd969c..c68d38a283ad 100644 --- a/games/widelands/Makefile +++ b/games/widelands/Makefile @@ -19,7 +19,7 @@ LIB_DEPENDS= libpng.so:graphics/png \ libicuuc.so:devel/icu \ libboost_regex.so:devel/boost-libs -USES= cmake:outsource compiler:c++11-lib gettext \ +USES= cmake compiler:c++11-lib gettext \ tar:bzip2 python:build CMAKE_ARGS= -DWL_INSTALL_BASEDIR="${PREFIX}" \ -DWL_INSTALL_DATADIR="${DATADIR}" \ diff --git a/games/wxlauncher/Makefile b/games/wxlauncher/Makefile index f9253d946729..a496831e7753 100644 --- a/games/wxlauncher/Makefile +++ b/games/wxlauncher/Makefile @@ -20,7 +20,7 @@ USE_GITHUB= yes GH_ACCOUNT= scp-fs2open GH_PROJECT= wxLauncher -USES= cmake:outsource openal pkgconfig python:2.7,build +USES= cmake openal pkgconfig python:2.7,build USE_SDL= sdl2 CMAKE_ARGS+= -DRESOURCES_PATH:STRING="${DATADIR}" diff --git a/games/wyrmgus/Makefile b/games/wyrmgus/Makefile index 4e7db67ef09f..0c6ae7b8c848 100644 --- a/games/wyrmgus/Makefile +++ b/games/wyrmgus/Makefile @@ -22,7 +22,7 @@ USE_GITHUB= yes GH_ACCOUNT= Andrettin GH_PROJECT= Wyrmgus -USES= compiler:c++11-lib cmake:outsource lua:51 pkgconfig sqlite +USES= compiler:c++11-lib cmake lua:51 pkgconfig sqlite USE_SDL= sdl CMAKE_ARGS= -DGAMEDIR:STRING="bin" \ -DTOLUA++_APP:STRING="tolua++-${LUA_VER}" \ diff --git a/games/zdoom/Makefile b/games/zdoom/Makefile index b9cae79339b6..caac4f3c0e16 100644 --- a/games/zdoom/Makefile +++ b/games/zdoom/Makefile @@ -28,7 +28,7 @@ PORTSCOUT= limit:^.+\.[1-9]{1,3}[1-8]?$$ DATADIR= ${DMDIR}/${PORTNAME} -USES= cmake:outsource gettext jpeg openal pkgconfig +USES= cmake gettext jpeg openal pkgconfig USE_GNOME= atk cairo gdkpixbuf2 gtk20 pango USE_SDL= sdl2 CMAKE_ARGS= -DNO_FMOD:BOOL=ON diff --git a/graphics/ampasCTL/Makefile b/graphics/ampasCTL/Makefile index 87ff127387b2..b88612018818 100644 --- a/graphics/ampasCTL/Makefile +++ b/graphics/ampasCTL/Makefile @@ -19,7 +19,7 @@ LIB_DEPENDS= libImath.so:graphics/ilmbase \ libtiff.so:graphics/tiff \ libAcesContainer.so:graphics/ampasACES-container -USES= compiler:c++11-lang cmake:outsource pathfix pkgconfig +USES= compiler:c++11-lang cmake pathfix pkgconfig USE_LDCONFIG= yes USE_GITHUB= yes diff --git a/graphics/appleseed/Makefile b/graphics/appleseed/Makefile index 85631e5c3fd3..58bcd4e69664 100644 --- a/graphics/appleseed/Makefile +++ b/graphics/appleseed/Makefile @@ -26,7 +26,7 @@ GH_ACCOUNT= ${PORTNAME}hq ONLY_FOR_ARCHS= i386 amd64 ONLY_FOR_ARCHS_REASON= not ported to it yet -USES= cmake:outsource compiler:env +USES= cmake compiler:env LDFLAGS+= -lboost_atomic CMAKE_ARGS= -DUSE_STATIC_BOOST:BOOL=OFF -DUSE_STATIC_OIIO:BOOL=OFF \ diff --git a/graphics/apvlv/Makefile b/graphics/apvlv/Makefile index 39ac3fdac748..0edc352f9d1b 100644 --- a/graphics/apvlv/Makefile +++ b/graphics/apvlv/Makefile @@ -18,7 +18,7 @@ BROKEN= fails to build LIB_DEPENDS= libpoppler-glib.so:graphics/poppler-glib USE_GNOME= gtk20 -USES= cmake pkgconfig +USES= cmake:insource pkgconfig USE_GITHUB= yes GH_ACCOUNT= naihe2010 CMAKE_ARGS+= -DSYSCONFDIR=${PREFIX}/etc \ diff --git a/graphics/aqsis/Makefile b/graphics/aqsis/Makefile index bdca2969c0ce..0e2c9c1a06ab 100644 --- a/graphics/aqsis/Makefile +++ b/graphics/aqsis/Makefile @@ -29,7 +29,7 @@ LDFLAGS+= -lpthread # Boost.Thread 1.67+ LDFLAGS+= -L${LOCALBASE}/lib USE_LDCONFIG= yes -USES= cmake:outsource compiler:c++11-lib desktop-file-utils \ +USES= cmake compiler:c++11-lib desktop-file-utils \ qt:4 shared-mime-info shebangfix USE_CXXSTD= gnu++11 SHEBANG_FILES= examples/*/*/*.sh \ diff --git a/graphics/aseprite/Makefile b/graphics/aseprite/Makefile index ca0db9b430d0..07062f6e55a3 100644 --- a/graphics/aseprite/Makefile +++ b/graphics/aseprite/Makefile @@ -35,7 +35,7 @@ LIB_DEPENDS= liballeg.so:devel/allegro \ libtinyxml.so:textproc/tinyxml \ libzstd.so:archivers/zstd -USES= cmake:outsource compiler:c++11-lib iconv:wchar_t jpeg localbase:ldflags pkgconfig ssl +USES= cmake compiler:c++11-lib iconv:wchar_t jpeg localbase:ldflags pkgconfig ssl USE_GITHUB= yes GH_TUPLE= aseprite:libarchive:c51dbfc:libarchive/third_party/libarchive GH_TUPLE+= aseprite:clip:964a64a:clip/src/clip diff --git a/graphics/blender/Makefile b/graphics/blender/Makefile index c167b8eb8abd..82ef37868d0e 100644 --- a/graphics/blender/Makefile +++ b/graphics/blender/Makefile @@ -25,7 +25,7 @@ RUN_DEPENDS= ${PYNUMPY} # are set. We will pull boost in just to be on the safe side. # USES=compiler is needed to support gcc built archs -USES= cmake:outsource compiler:c++14-lang desktop-file-utils \ +USES= cmake compiler:c++14-lang desktop-file-utils \ jpeg python:3.5 shebangfix USE_XORG= x11 xext xfixes xmu xrender USE_GL= gl glu glew diff --git a/graphics/cloudcompare/Makefile b/graphics/cloudcompare/Makefile index 548fd3d793d1..8433b3c3a3f3 100644 --- a/graphics/cloudcompare/Makefile +++ b/graphics/cloudcompare/Makefile @@ -15,7 +15,7 @@ LICENSE_COMB= multi BROKEN_aarch64= fails to compile: mmintrin.h:47:5: use of undeclared identifier '__builtin_ia32_emms'; did you mean '__builtin_isless'? -USES= cmake:outsource localbase:ldflags qt:5 +USES= cmake localbase:ldflags qt:5 USE_GITHUB= yes GH_ACCOUNT= CloudCompare GH_PROJECT= ${GH_ACCOUNT} @@ -59,7 +59,7 @@ PLUGINS_CMAKE_BOOL= INSTALL_QANIMATION_PLUGIN INSTALL_QBLUR_PLUGIN INSTALL_QBROO INSTALL_QSRA_PLUGIN INSTALL_QSSAO_PLUGIN # plugins requiring rare external libs are left out, TODO maybe add some of them? PLUGINS_CMAKE_ON= -DEIGEN_ROOT_DIR:BOOL=${LOCALBASE}/include/eigen3 PLUGINS_CXXFLAGS= -Wno-narrowing -PLUGINS_CXXFLAGS+= -DEIGEN_DONT_PARALLELIZE # OpenMP is broken in cmake, see bug#223678 +PLUGINS_CXXFLAGS+= -DEIGEN_DONT_PARALLELIZE # OpenMP is broken in cmake: see bug#223678 PLUGINS_USE= XORG=ice,sm,x11,xext,xt GL=gl,glu PLUGINS_LIB_DEPENDS= libboost_system.so:devel/boost-libs \ libexpat.so:textproc/expat2 \ diff --git a/graphics/converseen/Makefile b/graphics/converseen/Makefile index a38ee9bce894..fc360361326b 100644 --- a/graphics/converseen/Makefile +++ b/graphics/converseen/Makefile @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libMagick++-6.so:graphics/ImageMagick6 -USES= cmake:outsource compiler:c++11-lang qt:5 tar:bzip2 +USES= cmake compiler:c++11-lang qt:5 tar:bzip2 USE_QT= core gui network widgets \ buildtools_build linguisttools_build qmake_build diff --git a/graphics/darktable/Makefile b/graphics/darktable/Makefile index feb996824467..dfd85e669912 100644 --- a/graphics/darktable/Makefile +++ b/graphics/darktable/Makefile @@ -28,7 +28,7 @@ LIB_DEPENDS= libcurl.so:ftp/curl \ ONLY_FOR_ARCHS= amd64 ONLY_FOR_ARCHS_REASON= uses SSE instructions and 64-bit address space -USES= cmake:outsource compiler:c++11-lib desktop-file-utils \ +USES= cmake compiler:c++11-lib desktop-file-utils \ jpeg pkgconfig sqlite tar:xz USE_GL= glu USE_GNOME= cairo gtk30 intltool librsvg2 libxml2 diff --git a/graphics/dcmtk/Makefile b/graphics/dcmtk/Makefile index 0431d32b2f46..b98f6aee409e 100644 --- a/graphics/dcmtk/Makefile +++ b/graphics/dcmtk/Makefile @@ -16,7 +16,7 @@ LIB_DEPENDS= libicuuc.so:devel/icu \ libpng16.so:graphics/png \ libtiff.so:graphics/tiff -USES= compiler:c++11-lang cmake:outsource gnome jpeg ssl +USES= compiler:c++11-lang cmake gnome jpeg ssl USE_GITHUB= yes GH_ACCOUNT= ${PORTNAME:tu} USE_GNOME= libxml2 diff --git a/graphics/digikam-kde4/Makefile.common b/graphics/digikam-kde4/Makefile.common index 62366d251928..b9ced1f50f06 100644 --- a/graphics/digikam-kde4/Makefile.common +++ b/graphics/digikam-kde4/Makefile.common @@ -117,7 +117,7 @@ LICENSE?= GPLv2 USES+= qt:4 tar:bzip2 .if !defined(NO_BUILD) -USES+= cmake:noninja kde:4 +USES+= cmake:insource,noninja kde:4 USE_KDE+= automoc4 kdelibs USE_QT+= qmake_build moc_build rcc_build uic_build diff --git a/graphics/digikam/Makefile b/graphics/digikam/Makefile index f28670c81904..9d788f5b22c6 100644 --- a/graphics/digikam/Makefile +++ b/graphics/digikam/Makefile @@ -30,7 +30,7 @@ LIB_DEPENDS= libKF5KGeoMap.so:astro/libkgeomap \ libpng.so:graphics/png \ libtiff.so:graphics/tiff -USES= cmake:outsource compiler:c++11-lib eigen:3 jpeg kde:5 pkgconfig \ +USES= cmake compiler:c++11-lib eigen:3 jpeg kde:5 pkgconfig \ qt:5 shebangfix tar:xz USE_GNOME= glib20 libxml2 libxslt USE_KDE= archive auth bookmarks calendarcore codecs completion config \ diff --git a/graphics/drawpile/Makefile b/graphics/drawpile/Makefile index a5e930665f4c..77f843941a01 100644 --- a/graphics/drawpile/Makefile +++ b/graphics/drawpile/Makefile @@ -15,7 +15,7 @@ LIB_DEPENDS= libgif.so:graphics/giflib \ libminiupnpc.so:net/miniupnpc \ libsodium.so:security/libsodium -USES= cmake:outsource desktop-file-utils kde:5 pkgconfig qt:5 shared-mime-info +USES= cmake 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 diff --git a/graphics/dspdfviewer/Makefile b/graphics/dspdfviewer/Makefile index 7a1433cdcf26..e7e550602542 100644 --- a/graphics/dspdfviewer/Makefile +++ b/graphics/dspdfviewer/Makefile @@ -19,7 +19,7 @@ BUILD_WRKSRC= ${WRKSRC}/build CONFIGURE_WRKSRC= ${WRKSRC}/build INSTALL_WRKSRC= ${WRKSRC}/build -USES= cmake pkgconfig qt:5 +USES= cmake:insource pkgconfig qt:5 USE_QT= buildtools_build core gui qmake_build linguisttools widgets xml CMAKE_ARGS= -DPOPPLER_LIBRARIES=${LOCALBASE}/lib/libpoppler-qt5.so -DBuildTests=OFF USE_LDCONFIG= yes diff --git a/graphics/exiv2/Makefile b/graphics/exiv2/Makefile index c0f11c86c8ba..202e808982e6 100644 --- a/graphics/exiv2/Makefile +++ b/graphics/exiv2/Makefile @@ -17,7 +17,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libexpat.so:textproc/expat2 -USES= cmake:outsource compiler:c++11-lang cpe gettext iconv pathfix localbase:ldflags +USES= cmake compiler:c++11-lang cpe gettext iconv pathfix localbase:ldflags USE_LDCONFIG= yes LDFLAGS+= -lintl diff --git a/graphics/freeglut/Makefile b/graphics/freeglut/Makefile index 5b6e94471706..dab2fde5caac 100644 --- a/graphics/freeglut/Makefile +++ b/graphics/freeglut/Makefile @@ -13,7 +13,7 @@ COMMENT= open source implementation of the GLUT library LICENSE= MIT LICENSE_FILE= ${WRKSRC}/COPYING -USES= cmake pathfix +USES= cmake:insource pathfix USE_LDCONFIG= yes USE_XORG= ice x11 xi xrandr USE_GL= gl glu diff --git a/graphics/frei0r/Makefile b/graphics/frei0r/Makefile index 2b6db927e9cb..e25d19c3f912 100644 --- a/graphics/frei0r/Makefile +++ b/graphics/frei0r/Makefile @@ -15,7 +15,7 @@ COMMENT?= Minimalistic plugin API for video effects LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING.txt -USES= cmake:outsource pkgconfig +USES= cmake pkgconfig .if defined(BUILDING_FREI0R_OPENCV) && defined(BUILDING_FREI0R_GAVL) IGNORE= cannot build OpenCV and gavl plugins simultaneously diff --git a/graphics/glfw/Makefile b/graphics/glfw/Makefile index ef623481efc4..731c2fce0452 100644 --- a/graphics/glfw/Makefile +++ b/graphics/glfw/Makefile @@ -13,7 +13,7 @@ COMMENT= Portable framework for OpenGL development LICENSE= ZLIB LICENSE_FILE= ${WRKSRC}/COPYING.txt -USES= cmake localbase zip +USES= cmake:insource localbase zip USE_GL= glu USE_LDCONFIG= yes CMAKE_ON= BUILD_SHARED_LIBS diff --git a/graphics/gmic-qt/Makefile b/graphics/gmic-qt/Makefile index c9c43d07f127..c5f69c4c6dea 100644 --- a/graphics/gmic-qt/Makefile +++ b/graphics/gmic-qt/Makefile @@ -22,7 +22,7 @@ LIB_DEPENDS= libcurl.so:ftp/curl \ libfftw3.so:math/fftw3 \ libpng.so:graphics/png -USES= cmake:outsource compiler:c++14-lang pkgconfig qt:5 +USES= cmake compiler:c++14-lang pkgconfig qt:5 USE_QT= core gui network widgets \ buildtools_build linguisttools_build qmake_build USE_XORG= ice sm x11 xext diff --git a/graphics/gmic/Makefile b/graphics/gmic/Makefile index 80dc8255fdf5..9e6b9d777b8e 100644 --- a/graphics/gmic/Makefile +++ b/graphics/gmic/Makefile @@ -28,7 +28,7 @@ LIB_DEPENDS= libfftw3.so:math/fftw3 \ PORTSCOUT= limit:[0-9]\..* # not v.220 and similar -USES= cmake:outsource compiler:c++11-lang jpeg pkgconfig +USES= cmake compiler:c++11-lang jpeg pkgconfig USE_LDCONFIG= yes CMAKE_OFF= BUILD_LIB_STATIC diff --git a/graphics/gmt5/Makefile b/graphics/gmt5/Makefile index 625994d50abb..f34c3bb4edd9 100644 --- a/graphics/gmt5/Makefile +++ b/graphics/gmt5/Makefile @@ -32,7 +32,7 @@ BUILD_DEPENDS= ${LOCALBASE}/share/dcw-gmt/dcw-gmt.nc:graphics/gmt5-dcw \ WRKSRC= ${WRKDIR}/gmt-${PORTVERSION} -USES= shebangfix cmake:outsource +USES= shebangfix cmake SHEBANG_GLOB= *.sh *.in SHEBANG_FILES= share/tools/ncdeflate src/img/img2google src/gmtswitch diff --git a/graphics/gwenview-kde4/Makefile b/graphics/gwenview-kde4/Makefile index 6058dc90f6a5..88ec5721f919 100644 --- a/graphics/gwenview-kde4/Makefile +++ b/graphics/gwenview-kde4/Makefile @@ -14,7 +14,7 @@ EXPIRATION_DATE= 2018-12-31 LIB_DEPENDS= libexiv2.so:graphics/exiv2 \ libpng.so:graphics/png -USES= cmake:outsource jpeg kde:4 pkgconfig qt:4 tar:xz +USES= cmake jpeg kde:4 pkgconfig qt:4 tar:xz USE_KDE= kactivities kdelibs baloo kfilemetadata \ libkdcraw libkipi libkonq automoc4 soprano USE_QT= corelib gui opengl qmake_build moc_build uic_build rcc_build diff --git a/graphics/gwenview/Makefile b/graphics/gwenview/Makefile index 273626d7a543..4a957e2e66ed 100644 --- a/graphics/gwenview/Makefile +++ b/graphics/gwenview/Makefile @@ -13,7 +13,7 @@ LIB_DEPENDS= libexiv2.so:graphics/exiv2 \ liblcms2.so:graphics/lcms2 \ libpng.so:graphics/png -USES= compiler:c++11-lang cmake:outsource gettext jpeg pkgconfig \ +USES= compiler:c++11-lang cmake gettext jpeg pkgconfig \ kde:5 qt:5 tar:xz USE_KDE= activities auth baloo bookmarks codecs completion config \ configwidgets coreaddons ecm emoticons filemetadata i18n \ diff --git a/graphics/instant-meshes/Makefile b/graphics/instant-meshes/Makefile index 7bfd56300560..50490fab1e3d 100644 --- a/graphics/instant-meshes/Makefile +++ b/graphics/instant-meshes/Makefile @@ -17,7 +17,7 @@ LIB_DEPENDS= libglfw.so:graphics/glfw \ libtbb.so:devel/tbb RUN_DEPENDS= zenity:x11/zenity -USES= cmake:outsource compiler:c++14-lang eigen:3 localbase:ldflags pkgconfig +USES= cmake compiler:c++14-lang eigen:3 localbase:ldflags pkgconfig USE_GITHUB= yes GH_ACCOUNT= wjakob GH_TUPLE= wjakob:nanogui:2a61f03:nanogui/ext/nanogui \ diff --git a/graphics/jpeg-turbo/Makefile b/graphics/jpeg-turbo/Makefile index a27b25c9fd6d..b34444869734 100644 --- a/graphics/jpeg-turbo/Makefile +++ b/graphics/jpeg-turbo/Makefile @@ -20,7 +20,7 @@ LICENSE_FILE_IJG= ${WRKSRC}/README.ijg LICENSE_FILE_ZLIB= ${WRKSRC}/LICENSE.md LICENSE_PERMS_IJG= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept -USES= cmake:outsource cpe +USES= cmake cpe USE_LDCONFIG= yes CMAKE_ON= WITH_JPEG8 CPE_VENDOR= d.r.commander diff --git a/graphics/kamera-kde4/Makefile b/graphics/kamera-kde4/Makefile index aab2c9cb44bb..90e487d8c095 100644 --- a/graphics/kamera-kde4/Makefile +++ b/graphics/kamera-kde4/Makefile @@ -13,7 +13,7 @@ EXPIRATION_DATE= 2018-12-31 LIB_DEPENDS= libgphoto2.so:graphics/libgphoto2 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs automoc4 USE_QT= moc_build qmake_build rcc_build uic_build diff --git a/graphics/kamera/Makefile b/graphics/kamera/Makefile index 5c2eeb7a78f6..e1591209628b 100644 --- a/graphics/kamera/Makefile +++ b/graphics/kamera/Makefile @@ -9,7 +9,7 @@ COMMENT= Digital camera manager for KDE LIB_DEPENDS= libgphoto2.so:graphics/libgphoto2 -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons doctools ecm i18n \ kio service widgetsaddons xmlgui USE_QT= core dbus gui widgets xml \ diff --git a/graphics/kcolorchooser-kde4/Makefile b/graphics/kcolorchooser-kde4/Makefile index 3b49337ee380..cfe677375cb4 100644 --- a/graphics/kcolorchooser-kde4/Makefile +++ b/graphics/kcolorchooser-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= KDE 4 application to select colors from the screen or from a palette DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs automoc4 USE_QT= moc_build qmake_build rcc_build uic_build diff --git a/graphics/kcolorchooser/Makefile b/graphics/kcolorchooser/Makefile index ab9df295da45..cffdd25e3d20 100644 --- a/graphics/kcolorchooser/Makefile +++ b/graphics/kcolorchooser/Makefile @@ -7,7 +7,7 @@ CATEGORIES= graphics kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE application to select colors from the screen or from a palette -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons ecm i18n \ widgetsaddons xmlgui USE_QT= core dbus gui widgets xml \ diff --git a/graphics/kdegraphics-mobipocket-kde4/Makefile b/graphics/kdegraphics-mobipocket-kde4/Makefile index 20e911a66c46..ab176feacdc7 100644 --- a/graphics/kdegraphics-mobipocket-kde4/Makefile +++ b/graphics/kdegraphics-mobipocket-kde4/Makefile @@ -12,7 +12,7 @@ COMMENT= Mobipocket plugins for Strigi indexing and thumbnails DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs automoc4 strigi USE_QT= corelib gui qmake_build moc_build uic_build rcc_build USE_LDCONFIG= yes diff --git a/graphics/kdegraphics-mobipocket/Makefile b/graphics/kdegraphics-mobipocket/Makefile index 48b80bcff482..15529273f754 100644 --- a/graphics/kdegraphics-mobipocket/Makefile +++ b/graphics/kdegraphics-mobipocket/Makefile @@ -7,7 +7,7 @@ CATEGORIES= graphics kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Mobipocket plugins for Strigi indexing and thumbnails -USES= cmake:outsource compiler:c++11-lang kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang kde:5 qt:5 tar:xz USE_KDE= completion config coreaddons ecm jobwidgets kio service \ widgetsaddons USE_QT= core gui network widgets \ diff --git a/graphics/kdegraphics-strigi-analyzer-kde4/Makefile b/graphics/kdegraphics-strigi-analyzer-kde4/Makefile index 89c8544341ab..afef78d85fc5 100644 --- a/graphics/kdegraphics-strigi-analyzer-kde4/Makefile +++ b/graphics/kdegraphics-strigi-analyzer-kde4/Makefile @@ -14,7 +14,7 @@ EXPIRATION_DATE= 2018-12-31 LIB_DEPENDS= libtiff.so:graphics/tiff -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs automoc4 strigi USE_QT= moc_build qmake_build rcc_build uic_build diff --git a/graphics/kdegraphics-svgpart-kde4/Makefile b/graphics/kdegraphics-svgpart-kde4/Makefile index 3acfd90def69..9db94586f138 100644 --- a/graphics/kdegraphics-svgpart-kde4/Makefile +++ b/graphics/kdegraphics-svgpart-kde4/Makefile @@ -13,7 +13,7 @@ COMMENT= SVG KPart DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs automoc4 USE_QT= moc_build qmake_build rcc_build uic_build diff --git a/graphics/kdegraphics-svgpart/Makefile b/graphics/kdegraphics-svgpart/Makefile index 36d1035710e0..9d83f9b8713b 100644 --- a/graphics/kdegraphics-svgpart/Makefile +++ b/graphics/kdegraphics-svgpart/Makefile @@ -8,7 +8,7 @@ PKGNAMEPREFIX= kdegraphics- MAINTAINER= kde@FreeBSD.org COMMENT= SVG KPart -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons ecm \ i18n jobwidgets kio parts service sonnet textwidgets \ widgetsaddons xmlgui diff --git a/graphics/kdegraphics-thumbnailers-kde4/Makefile b/graphics/kdegraphics-thumbnailers-kde4/Makefile index e8ec63883f0e..d828dd53088f 100644 --- a/graphics/kdegraphics-thumbnailers-kde4/Makefile +++ b/graphics/kdegraphics-thumbnailers-kde4/Makefile @@ -12,7 +12,7 @@ COMMENT= Thumbnailers for various graphics file formats DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 pkgconfig qt:4 tar:xz +USES= cmake kde:4 pkgconfig qt:4 tar:xz USE_KDE= kdelibs libkdcraw libkexiv2 automoc4 USE_QT= gui qmake_build moc_build uic_build rcc_build diff --git a/graphics/kdegraphics-thumbnailers/Makefile b/graphics/kdegraphics-thumbnailers/Makefile index d4f41e57dc3f..db1faba6595a 100644 --- a/graphics/kdegraphics-thumbnailers/Makefile +++ b/graphics/kdegraphics-thumbnailers/Makefile @@ -7,7 +7,7 @@ CATEGORIES= graphics kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Thumbnailers for various graphics file formats -USES= cmake:outsource compiler:c++11-lang kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang kde:5 qt:5 tar:xz USE_KDE= completion config coreaddons ecm jobwidgets libkdcraw \ libkexiv2 kio service widgetsaddons USE_QT= core gui network widgets \ diff --git a/graphics/kdiagram/Makefile b/graphics/kdiagram/Makefile index a6199bbfbef7..23c73288ce45 100644 --- a/graphics/kdiagram/Makefile +++ b/graphics/kdiagram/Makefile @@ -13,7 +13,7 @@ COMMENT= Library to create business diagrams LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/LICENSE.GPL.txt -USES= cmake:outsource compiler:c++11-lang kde:5 qt:5 tar:xz +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 diff --git a/graphics/kf5-kimageformats/Makefile b/graphics/kf5-kimageformats/Makefile index fbba105cf158..a5e07995b632 100644 --- a/graphics/kf5-kimageformats/Makefile +++ b/graphics/kf5-kimageformats/Makefile @@ -9,7 +9,7 @@ COMMENT= KF5 library providing support for additional image formats LIB_DEPENDS= libHalf.so:graphics/ilmbase -USES= cmake:outsource compiler:c++11-lib kde:5 pkgconfig qt:5 tar:xz +USES= cmake compiler:c++11-lib kde:5 pkgconfig qt:5 tar:xz USE_KDE= archive ecm USE_QT= buildtools_build core gui printsupport qmake_build widgets diff --git a/graphics/kf5-kplotting/Makefile b/graphics/kf5-kplotting/Makefile index b190ecb4b87c..2dbba57fb3cb 100644 --- a/graphics/kf5-kplotting/Makefile +++ b/graphics/kf5-kplotting/Makefile @@ -7,7 +7,7 @@ CATEGORIES= graphics kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 lightweight plotting framework -USES= cmake:outsource compiler:c++11-lib kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib kde:5 qt:5 tar:xz USE_KDE= ecm USE_QT= buildtools_build core gui qmake_build testlib widgets diff --git a/graphics/kf5-prison/Makefile b/graphics/kf5-prison/Makefile index e03cfce0b738..a7526b1f59bd 100644 --- a/graphics/kf5-prison/Makefile +++ b/graphics/kf5-prison/Makefile @@ -10,7 +10,7 @@ COMMENT= API to produce barcodes LIB_DEPENDS= libdmtx.so:graphics/libdmtx \ libqrencode.so:graphics/libqrencode -USES= cmake:outsource compiler:c++11-lang kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang kde:5 qt:5 tar:xz USE_KDE= ecm USE_QT= buildtools_build core gui qmake_build testlib widgets diff --git a/graphics/kgraphviewer/Makefile b/graphics/kgraphviewer/Makefile index 81d31545efb1..6aee97ed77e9 100644 --- a/graphics/kgraphviewer/Makefile +++ b/graphics/kgraphviewer/Makefile @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libgvc.so:graphics/graphviz -USES= cmake:outsource desktop-file-utils kde:5 qt:5 tar:xz pkgconfig +USES= cmake desktop-file-utils kde:5 qt:5 tar:xz pkgconfig USE_KDE= auth codecs completion config configwidgets \ coreaddons i18n iconthemes jobwidgets kio parts service \ sonnet textwidgets widgetsaddons xmlgui \ diff --git a/graphics/kimagemapeditor/Makefile b/graphics/kimagemapeditor/Makefile index 3848ab702025..28e265e6e662 100644 --- a/graphics/kimagemapeditor/Makefile +++ b/graphics/kimagemapeditor/Makefile @@ -8,7 +8,7 @@ PKGNAMESUFFIX= # hack: uses kde:4 but we don't want the pkgname suffix MAINTAINER= kde@FreeBSD.org COMMENT= KDE generator of HTML image maps -USES= cmake:outsource kde:5 qt:5 tar:xz +USES= cmake kde:5 qt:5 tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash guiaddons i18n iconthemes itemviews \ jobwidgets js kdelibs4support khtml kio notifications \ diff --git a/graphics/kipiplugins/Makefile b/graphics/kipiplugins/Makefile index 9cc65280ffd7..e86ccb012197 100644 --- a/graphics/kipiplugins/Makefile +++ b/graphics/kipiplugins/Makefile @@ -10,7 +10,7 @@ DIST_SUBDIR= KDE/digikam/${PORTVERSION} MAINTAINER= kde@FreeBSD.org COMMENT= Plugins for digikam -USES= cmake:outsource compiler:c++11-lib gettext kde:5 pkgconfig \ +USES= cmake compiler:c++11-lib gettext kde:5 pkgconfig \ qt:5 tar:xz USE_KDE= archive auth bookmarks codecs completion config configwidgets \ coreaddons ecm i18n itemviews jobwidgets kio libkipi service \ diff --git a/graphics/klatexformula/Makefile b/graphics/klatexformula/Makefile index ee0f9fef855c..79d67a8aef49 100644 --- a/graphics/klatexformula/Makefile +++ b/graphics/klatexformula/Makefile @@ -15,7 +15,7 @@ EXPIRATION_DATE= 2019-03-15 BUILD_DEPENDS= help2man:misc/help2man -USES= cmake:outsource desktop-file-utils ghostscript:run \ +USES= cmake desktop-file-utils ghostscript:run \ qt:5 shared-mime-info tar:bzip2 localbase USE_QT= core dbus gui sql svg widgets x11extras xml \ buildtools_build designer_build linguisttools_build \ diff --git a/graphics/kolourpaint-kde4/Makefile b/graphics/kolourpaint-kde4/Makefile index b23721c780f7..b467cc455226 100644 --- a/graphics/kolourpaint-kde4/Makefile +++ b/graphics/kolourpaint-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= KDE 4 paint program DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs automoc4 qimageblitz USE_QT= moc_build qmake_build rcc_build uic_build USE_LDCONFIG= yes diff --git a/graphics/kolourpaint/Makefile b/graphics/kolourpaint/Makefile index 3c30550c117f..ffacd494bbbb 100644 --- a/graphics/kolourpaint/Makefile +++ b/graphics/kolourpaint/Makefile @@ -7,7 +7,7 @@ CATEGORIES= graphics kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE paint program -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash ecm emoticons guiaddons i18n iconthemes init \ itemmodels itemviews jobwidgets kdelibs4support kio libkexiv2 \ diff --git a/graphics/kphotoalbum-kde4/Makefile b/graphics/kphotoalbum-kde4/Makefile index 5cfe6218f9bb..3be2cd23dc4c 100644 --- a/graphics/kphotoalbum-kde4/Makefile +++ b/graphics/kphotoalbum-kde4/Makefile @@ -19,7 +19,7 @@ LIB_DEPENDS= libexiv2.so:graphics/exiv2 SHEBANG_FILES= script/open-raw.pl script/kpa-backup.sh -USES= cmake:outsource jpeg kde:4 pkgconfig qt:4 shebangfix tar:bzip2 +USES= cmake jpeg kde:4 pkgconfig qt:4 shebangfix tar:bzip2 USE_KDE= kdelibs libkdcraw libkipi automoc4 USE_QT= phonon sql \ qmake_build moc_build rcc_build uic_build diff --git a/graphics/kphotoalbum/Makefile b/graphics/kphotoalbum/Makefile index 394a78aa5b5d..07b497ba4c0e 100644 --- a/graphics/kphotoalbum/Makefile +++ b/graphics/kphotoalbum/Makefile @@ -14,7 +14,7 @@ LIB_DEPENDS= libexiv2.so:graphics/exiv2 \ libKF5KGeoMap.so:astro/libkgeomap \ libKF5Kipi.so:graphics/libkipi -USES= cmake:outsource jpeg kde:5 pkgconfig qt:5 shebangfix tar:xz +USES= cmake jpeg kde:5 pkgconfig qt:5 shebangfix tar:xz USE_KDE= archive auth codecs completion config \ configwidgets coreaddons ecm i18n \ iconthemes jobwidgets kio marble service \ diff --git a/graphics/kqtquickcharts-kde4/Makefile b/graphics/kqtquickcharts-kde4/Makefile index 41bf44bba133..5c65af35c3e6 100644 --- a/graphics/kqtquickcharts-kde4/Makefile +++ b/graphics/kqtquickcharts-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= QtQuick plugin to render interactive charts DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs automoc4 USE_QT= moc_build qmake_build rcc_build uic_build diff --git a/graphics/krita/Makefile b/graphics/krita/Makefile index 0ee9f891b6c2..ce55948b4037 100644 --- a/graphics/krita/Makefile +++ b/graphics/krita/Makefile @@ -31,7 +31,7 @@ LIB_DEPENDS= libImath.so:graphics/ilmbase \ libxcb.so:x11/libxcb \ libxcb-util.so:x11/xcb-util -USES= cmake:outsource compiler:c++11-lib desktop-file-utils \ +USES= cmake compiler:c++11-lib desktop-file-utils \ eigen:3 gettext jpeg kde:5 pkgconfig python:3.4+ qt:5 \ shared-mime-info USE_KDE= archive completion config coreaddons crash guiaddons i18n \ diff --git a/graphics/ksaneplugin-kde4/Makefile b/graphics/ksaneplugin-kde4/Makefile index eed108aa62e1..203f3e654716 100644 --- a/graphics/ksaneplugin-kde4/Makefile +++ b/graphics/ksaneplugin-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= KDE 4 plugin for scanning through libksane DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs libksane automoc4 USE_QT= moc_build qmake_build rcc_build uic_build diff --git a/graphics/ksnapshot-kde4/Makefile b/graphics/ksnapshot-kde4/Makefile index 78bb9c63ef60..0bd761d05ebf 100644 --- a/graphics/ksnapshot-kde4/Makefile +++ b/graphics/ksnapshot-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= KDE 4 screen capture program DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs libkipi automoc4 USE_QT= moc_build qmake_build rcc_build uic_build USE_XORG= x11 xext xfixes diff --git a/graphics/libkdcraw-kde4/Makefile b/graphics/libkdcraw-kde4/Makefile index e3196f96d577..2b77997977dc 100644 --- a/graphics/libkdcraw-kde4/Makefile +++ b/graphics/libkdcraw-kde4/Makefile @@ -19,7 +19,7 @@ LIB_DEPENDS= liblcms.so:graphics/lcms \ CMAKE_ARGS+= -DWITH_OpenMP:BOOL=False \ -DENABLE_RAWSPEED=True -USES= cmake:outsource jpeg kde:4 pkgconfig qt:4 tar:xz +USES= cmake jpeg kde:4 pkgconfig qt:4 tar:xz USE_KDE= automoc4 kdelibs USE_QT= corelib gui moc_build qmake_build rcc_build uic_build USE_LDCONFIG= yes diff --git a/graphics/libkdcraw/Makefile b/graphics/libkdcraw/Makefile index 15de95892a09..b5c617d89dc2 100644 --- a/graphics/libkdcraw/Makefile +++ b/graphics/libkdcraw/Makefile @@ -15,7 +15,7 @@ LIB_DEPENDS= libjasper.so:graphics/jasper \ CMAKE_ARGS+= -DWITH_OpenMP:BOOL=False \ -DENABLE_RAWSPEED=True -USES= cmake:outsource compiler:c++11-lang jpeg kde:5 pkgconfig qt:5 tar:xz +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 diff --git a/graphics/libkexiv2-kde4/Makefile b/graphics/libkexiv2-kde4/Makefile index 872afd1b630b..ee75c7c12f87 100644 --- a/graphics/libkexiv2-kde4/Makefile +++ b/graphics/libkexiv2-kde4/Makefile @@ -13,7 +13,7 @@ EXPIRATION_DATE= 2018-12-31 LIB_DEPENDS= libexiv2.so:graphics/exiv2 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= automoc4 kdelibs USE_QT= corelib gui xml \ moc_build qmake_build rcc_build uic_build diff --git a/graphics/libkexiv2/Makefile b/graphics/libkexiv2/Makefile index 8bff742ab4eb..81d0b5d9deb8 100644 --- a/graphics/libkexiv2/Makefile +++ b/graphics/libkexiv2/Makefile @@ -9,7 +9,7 @@ COMMENT= Exiv2 library interface for KDE LIB_DEPENDS= libexiv2.so:graphics/exiv2 -USES= cmake:outsource compiler:c++11-lang kde:5 pkgconfig qt:5 tar:xz +USES= cmake compiler:c++11-lang kde:5 pkgconfig qt:5 tar:xz USE_KDE= ecm USE_QT= core gui \ buildtools_build qmake_build diff --git a/graphics/libkipi-kde4/Makefile b/graphics/libkipi-kde4/Makefile index c4e9760ac924..59f9c35b91b8 100644 --- a/graphics/libkipi-kde4/Makefile +++ b/graphics/libkipi-kde4/Makefile @@ -12,7 +12,7 @@ COMMENT= KDE Image Plugin Interface DEPRECATED= Qt4 has been EOL since december 2015 EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= automoc4 kdelibs USE_QT= gui moc_build qmake_build rcc_build uic_build USE_LDCONFIG= yes diff --git a/graphics/libkipi/Makefile b/graphics/libkipi/Makefile index 4864c9dda866..4a4e161bae60 100644 --- a/graphics/libkipi/Makefile +++ b/graphics/libkipi/Makefile @@ -7,7 +7,7 @@ CATEGORIES= graphics kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE Image Plugin Interface -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons ecm i18n \ libkdcraw libkexiv2 service widgetsaddons xmlgui USE_QT= core dbus gui widgets xml \ diff --git a/graphics/libksane-kde4/Makefile b/graphics/libksane-kde4/Makefile index 0391046f015e..50854d04aff5 100644 --- a/graphics/libksane-kde4/Makefile +++ b/graphics/libksane-kde4/Makefile @@ -13,7 +13,7 @@ EXPIRATION_DATE= 2018-12-31 LIB_DEPENDS= libsane.so:graphics/sane-backends -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs automoc4 USE_QT= moc_build qmake_build rcc_build uic_build USE_LDCONFIG= yes diff --git a/graphics/libksane/Makefile b/graphics/libksane/Makefile index 07c418d82c9c..468fa09365e8 100644 --- a/graphics/libksane/Makefile +++ b/graphics/libksane/Makefile @@ -9,7 +9,7 @@ COMMENT= SANE library interface for KDE LIB_DEPENDS= libsane.so:graphics/sane-backends -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= config ecm i18n sonnet textwidgets wallet widgetsaddons USE_QT= core gui testlib widgets \ buildtools_build qmake_build diff --git a/graphics/libkscreen/Makefile b/graphics/libkscreen/Makefile index 75fbb166b5ac..b803bd7a639d 100644 --- a/graphics/libkscreen/Makefile +++ b/graphics/libkscreen/Makefile @@ -18,7 +18,7 @@ LIB_DEPENDS= libqjson.so:devel/qjson@qt4 \ libxcb-image.so:x11/xcb-util-image \ libxcb-render-util.so:x11/xcb-util-renderutil -USES= cmake:outsource kde:4 pkgconfig qt:4 tar:xz +USES= cmake kde:4 pkgconfig qt:4 tar:xz USE_KDE= kdelibs automoc4 USE_QT= corelib dbus gui script \ moc_build qmake_build rcc_build uic_build diff --git a/graphics/libpillowfight/Makefile b/graphics/libpillowfight/Makefile index 67b7c0fbfbc9..7e843abdad4b 100644 --- a/graphics/libpillowfight/Makefile +++ b/graphics/libpillowfight/Makefile @@ -14,7 +14,7 @@ BUILD_DEPENDS= gmake:devel/gmake TEST_DEPENDS= gmake:devel/gmake \ tox:devel/py-tox@${PY_FLAVOR} -USES= cmake:outsource +USES= cmake USE_GITLAB= yes GL_SITE= https://gitlab.gnome.org/World GL_ACCOUNT= OpenPaperwork diff --git a/graphics/lprof-devel/Makefile b/graphics/lprof-devel/Makefile index 1990601edbc9..007489876e4e 100644 --- a/graphics/lprof-devel/Makefile +++ b/graphics/lprof-devel/Makefile @@ -19,7 +19,7 @@ LIB_DEPENDS= liblcms.so:graphics/lcms \ libtiff.so:graphics/tiff \ libvigraimpex.so:graphics/vigra -USES= cmake compiler:c++11-lang desktop-file-utils jpeg qt:4 tar:bzip2 +USES= cmake:insource compiler:c++11-lang desktop-file-utils jpeg qt:4 tar:bzip2 USE_XORG= x11 xext sm ice xxf86vm USE_QT= corelib gui qt3support svg assistantclient \ linguisttools_build qmake_build moc_build uic_build rcc_build diff --git a/graphics/luminance-qt5/Makefile b/graphics/luminance-qt5/Makefile index aba6faa6ed18..d8f1114f893f 100644 --- a/graphics/luminance-qt5/Makefile +++ b/graphics/luminance-qt5/Makefile @@ -22,7 +22,7 @@ LIB_DEPENDS= libfftw3f.so:math/fftw3-float \ libraw_r.so:graphics/libraw \ libboost_system.so:devel/boost-libs -USES= cmake:outsource jpeg pkgconfig qt:5 tar:bzip2 +USES= cmake jpeg pkgconfig qt:5 tar:bzip2 USE_QT= concurrent gui printsupport sql webkit xml \ buildtools_build linguist_build qmake_build \ imageformats_run diff --git a/graphics/lximage-qt/Makefile b/graphics/lximage-qt/Makefile index 9f97ebd8de02..7082d1aaddb6 100644 --- a/graphics/lximage-qt/Makefile +++ b/graphics/lximage-qt/Makefile @@ -16,7 +16,7 @@ LIB_DEPENDS= libexif.so:graphics/libexif \ libmenu-cache.so:x11/menu-cache \ libfm.so:x11/libfm -USES= cmake:outsource compiler:c++11-lib desktop-file-utils gettext-runtime \ +USES= cmake compiler:c++11-lib desktop-file-utils gettext-runtime \ localbase:ldflags lxqt pkgconfig qt:5 tar:xz USE_GNOME= glib20 USE_QT= buildtools_build qmake_build core dbus gui linguisttools \ diff --git a/graphics/lximageqt-l10n/Makefile b/graphics/lximageqt-l10n/Makefile index ee6261411bcc..e4d57dd48698 100644 --- a/graphics/lximageqt-l10n/Makefile +++ b/graphics/lximageqt-l10n/Makefile @@ -13,7 +13,7 @@ COMMENT= Translations of lximage-qt LICENSE= LGPL21+ -USES= cmake:outsource lxqt pkgconfig qt:5 tar:xz +USES= cmake lxqt pkgconfig qt:5 tar:xz USE_QT= buildtools_build qmake_build linguisttools USE_LXQT= buildtools diff --git a/graphics/mapcache/Makefile b/graphics/mapcache/Makefile index 78eecd88b9cd..b50b770d9a3a 100644 --- a/graphics/mapcache/Makefile +++ b/graphics/mapcache/Makefile @@ -21,7 +21,7 @@ LIB_DEPENDS= libpng.so:graphics/png \ USE_GITHUB= yes GH_ACCOUNT= mapserver -USES= cmake:outsource jpeg localbase +USES= cmake jpeg localbase USE_LDCONFIG= yes CMAKE_ARGS+= -DWITH_OGR=1 -DWITH_PIXMAN=1 -DWITH_BERKELEY_DB=0 diff --git a/graphics/mapserver/Makefile b/graphics/mapserver/Makefile index dd3777cb969b..bd2bcde3b681 100644 --- a/graphics/mapserver/Makefile +++ b/graphics/mapserver/Makefile @@ -20,7 +20,7 @@ LIB_DEPENDS= libgd.so:graphics/gd \ libfreetype.so:print/freetype2 \ libprotobuf-c.so:devel/protobuf-c -USES= cpe cmake:outsource jpeg +USES= cpe cmake jpeg CPE_VENDOR= umn USE_GNOME= libxml2 LDFLAGS+= -L${LOCALBASE} -pthread diff --git a/graphics/ogre3d/Makefile b/graphics/ogre3d/Makefile index be60ad03fcee..fc50c31e4a83 100644 --- a/graphics/ogre3d/Makefile +++ b/graphics/ogre3d/Makefile @@ -19,7 +19,7 @@ LIB_DEPENDS= libzzip.so:devel/zziplib \ libfreeimage.so:graphics/freeimage USE_LDCONFIG= yes -USES= tar:bzip2 cmake:outsource pkgconfig compiler:c++11-lib +USES= tar:bzip2 cmake pkgconfig compiler:c++11-lib USE_SDL= sdl USE_XORG= xaw xrandr WRKSRC= ${WRKDIR}/sinbad-ogre-dd30349ea667 diff --git a/graphics/okular-kde4/Makefile b/graphics/okular-kde4/Makefile index a58c3ad57254..3147579bdc1c 100644 --- a/graphics/okular-kde4/Makefile +++ b/graphics/okular-kde4/Makefile @@ -21,7 +21,7 @@ LIB_DEPENDS= libdjvulibre.so:graphics/djvulibre \ libepub.so:textproc/ebook-tools \ libqmobipocket.so:graphics/kdegraphics-mobipocket-kde4 -USES= cmake:outsource jpeg kde:4 pkgconfig qt:4 tar:xz +USES= cmake jpeg kde:4 pkgconfig qt:4 tar:xz USE_KDE= kdelibs automoc4 qimageblitz kactivities \ libkexiv2 USE_QT= corelib declarative gui opengl xml \ diff --git a/graphics/okular/Makefile b/graphics/okular/Makefile index d3577d650788..feab00a2d589 100644 --- a/graphics/okular/Makefile +++ b/graphics/okular/Makefile @@ -23,7 +23,7 @@ LIB_DEPENDS= libchm.so:misc/chmlib \ libtiff.so:graphics/tiff \ libzip.so:archivers/libzip -USES= cmake:outsource compiler:c++11-lib desktop-file-utils \ +USES= cmake compiler:c++11-lib desktop-file-utils \ gettext jpeg kde:5 pkgconfig qt:5 tar:xz USE_KDE= activities archive auth bookmarks codecs completion config \ configwidgets coreaddons dbusaddons ecm emoticons i18n \ diff --git a/graphics/open3d/Makefile b/graphics/open3d/Makefile index 182c4f188535..3a76627b792d 100644 --- a/graphics/open3d/Makefile +++ b/graphics/open3d/Makefile @@ -16,7 +16,7 @@ LIB_DEPENDS= libglfw.so:graphics/glfw \ libjsoncpp.so:devel/jsoncpp \ libpng16.so:graphics/png -USES= cmake:outsource compiler:c++14-lang eigen:3 jpeg localbase:ldflags pkgconfig +USES= cmake compiler:c++14-lang eigen:3 jpeg localbase:ldflags pkgconfig USE_GITHUB= yes GH_ACCOUNT= IntelVCL USE_GL= gl glew glu diff --git a/graphics/opencollada/Makefile b/graphics/opencollada/Makefile index 5a74a2df59d9..de0fd8197723 100644 --- a/graphics/opencollada/Makefile +++ b/graphics/opencollada/Makefile @@ -15,7 +15,7 @@ BROKEN_sparc64= cannot build: runaway process LIB_DEPENDS= libpcre.so:devel/pcre -USES= cmake:outsource compiler:c++11-lib dos2unix iconv localbase gnome pkgconfig +USES= cmake compiler:c++11-lib dos2unix iconv localbase gnome pkgconfig USE_GNOME= libxml2 USE_GITHUB= yes diff --git a/graphics/opencolorio/Makefile b/graphics/opencolorio/Makefile index 944b60ab4c70..7015c88a8b01 100644 --- a/graphics/opencolorio/Makefile +++ b/graphics/opencolorio/Makefile @@ -12,7 +12,7 @@ COMMENT?= Complete color management solution LICENSE= BSD3CLAUSE -USES= alias cmake:outsource compiler:c++11-lang pkgconfig shebangfix +USES= alias cmake compiler:c++11-lang pkgconfig shebangfix USE_GITHUB= yes GH_ACCOUNT= imageworks diff --git a/graphics/opencv/Makefile b/graphics/opencv/Makefile index 3ed26810f13c..151dcc9a38f5 100644 --- a/graphics/opencv/Makefile +++ b/graphics/opencv/Makefile @@ -22,7 +22,7 @@ LIB_DEPENDS= libprotobuf.so:devel/protobuf \ libtesseract.so:graphics/tesseract .endif -USES= cmake:outsource compiler:c++14-lang localbase:ldflags pkgconfig +USES= cmake compiler:c++14-lang localbase:ldflags pkgconfig USE_GITHUB= yes USE_LDCONFIG= yes diff --git a/graphics/opengv/Makefile b/graphics/opengv/Makefile index b726751dd4ca..e3623e1c24cb 100644 --- a/graphics/opengv/Makefile +++ b/graphics/opengv/Makefile @@ -11,7 +11,7 @@ COMMENT= Collection of methods for solving geometric vision problems LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/License.txt -USES= cmake:outsource compiler:c++11-lib eigen:3 +USES= cmake compiler:c++11-lib eigen:3 USE_GITHUB= yes GH_ACCOUNT= laurentkneip GH_TAGNAME= 306a54e diff --git a/graphics/openimageio/Makefile b/graphics/openimageio/Makefile index 51f350ac382b..1aa1bab69a05 100644 --- a/graphics/openimageio/Makefile +++ b/graphics/openimageio/Makefile @@ -20,7 +20,7 @@ LIB_DEPENDS= libboost_thread.so:devel/boost-libs \ libwebp.so:graphics/webp \ libhdf5.so:science/hdf5 -USES= cmake:outsource jpeg compiler:c++11-lib +USES= cmake jpeg compiler:c++11-lib USE_GITHUB= yes GH_ACCOUNT= OpenImageIO GH_PROJECT= oiio diff --git a/graphics/openorienteering-mapper/Makefile b/graphics/openorienteering-mapper/Makefile index 7797d6f27c4f..75d7dd1af035 100644 --- a/graphics/openorienteering-mapper/Makefile +++ b/graphics/openorienteering-mapper/Makefile @@ -16,7 +16,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libpolyclipping.so:graphics/polyclipping \ libproj.so:graphics/proj -USES= cmake:outsource,noninja compiler:c++14-lang \ +USES= cmake:noninja compiler:c++14-lang \ desktop-file-utils gmake qt:5 shared-mime-info USE_QT= buildtools_build help qmake_build core gui \ location network printsupport sensors widgets diff --git a/graphics/openshadinglanguage/Makefile b/graphics/openshadinglanguage/Makefile index 52f80788d9a9..525e2142fe72 100644 --- a/graphics/openshadinglanguage/Makefile +++ b/graphics/openshadinglanguage/Makefile @@ -21,7 +21,7 @@ LIB_DEPENDS= libboost_thread.so:devel/boost-libs \ libpugixml.so:textproc/pugixml RUN_DEPENDS= llvm-config60:devel/llvm60 -USES= bison cmake:outsource compiler:c++11-lang ncurses python:build +USES= bison cmake compiler:c++11-lang ncurses python:build USE_LDCONFIG= yes USE_GITHUB= yes diff --git a/graphics/opensubdiv/Makefile b/graphics/opensubdiv/Makefile index 90935bca7ba9..9dbb779ee62e 100644 --- a/graphics/opensubdiv/Makefile +++ b/graphics/opensubdiv/Makefile @@ -13,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt BUILD_DEPENDS= glfw>2.7.0:graphics/glfw -USES= cmake:outsource +USES= cmake USE_GITHUB= yes GH_ACCOUNT= PixarAnimationStudios diff --git a/graphics/osg-devel/Makefile b/graphics/osg-devel/Makefile index 3f10dc527cda..8caf143b9827 100644 --- a/graphics/osg-devel/Makefile +++ b/graphics/osg-devel/Makefile @@ -23,7 +23,7 @@ LIB_DEPENDS= libpng.so:graphics/png \ CONFLICTS= osg -USES= alias cmake:outsource jpeg gl pkgconfig zip +USES= alias cmake jpeg gl pkgconfig zip USE_GL= gl glu USE_XORG= x11 USE_LDCONFIG= yes diff --git a/graphics/osg/Makefile b/graphics/osg/Makefile index a42ecca9c117..eb00ea025dc9 100644 --- a/graphics/osg/Makefile +++ b/graphics/osg/Makefile @@ -24,7 +24,7 @@ GH_PROJECT= OpenSceneGraph CONFLICTS= osg-devel -USES= alias cmake:outsource compiler:c++11-lang gl jpeg pkgconfig +USES= alias cmake compiler:c++11-lang gl jpeg pkgconfig USE_GL= gl glu USE_XORG= x11 USE_LDCONFIG= yes diff --git a/graphics/partio/Makefile b/graphics/partio/Makefile index 24d22c925798..122787aca761 100644 --- a/graphics/partio/Makefile +++ b/graphics/partio/Makefile @@ -12,7 +12,7 @@ LICENSE= BSD3CLAUSE BUILD_DEPENDS= swig3.0:devel/swig30 -USES= cmake:outsource gl python shebangfix +USES= cmake gl python shebangfix SHEBANG_FILES= src/tools/partedit.py src/tools/partjson.py USE_GL= gl glu glut USE_LDCONFIG= yes diff --git a/graphics/pcl-pointclouds/Makefile b/graphics/pcl-pointclouds/Makefile index 76e7d9ef156c..5bacc94f0755 100644 --- a/graphics/pcl-pointclouds/Makefile +++ b/graphics/pcl-pointclouds/Makefile @@ -23,7 +23,7 @@ LIB_DEPENDS= libboost_system.so:devel/boost-libs \ libpcap.so:net/libpcap \ libtiff.so:graphics/tiff -USES= cmake:outsource eigen:3 jpeg python +USES= cmake eigen:3 jpeg python USE_GITHUB= yes GH_ACCOUNT= PointCloudLibrary USE_XORG= x11 xext xt ice sm diff --git a/graphics/pfstools/Makefile b/graphics/pfstools/Makefile index 99dd75e38886..36ca7443b010 100644 --- a/graphics/pfstools/Makefile +++ b/graphics/pfstools/Makefile @@ -19,7 +19,7 @@ CONFLICTS= pfstmo-1.* pfscalibration-1.* LDFLAGS+= -lthr -USES= cmake:outsource tar:tgz dos2unix jpeg perl5 +USES= cmake tar:tgz dos2unix jpeg perl5 USE_PERL5= run USE_LDCONFIG= yes diff --git a/graphics/photoqt/Makefile b/graphics/photoqt/Makefile index 78b9a3a94322..391c5512ed65 100644 --- a/graphics/photoqt/Makefile +++ b/graphics/photoqt/Makefile @@ -11,7 +11,7 @@ COMMENT= Simple, powerful and good looking QT5 image viewer LICENSE= GPLv2 -USES= cmake:outsource compiler:c++11-lib desktop-file-utils \ +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 \ diff --git a/graphics/piglit/Makefile b/graphics/piglit/Makefile index 5a09f016a7c0..4ab7f94e4652 100644 --- a/graphics/piglit/Makefile +++ b/graphics/piglit/Makefile @@ -30,7 +30,7 @@ GH_ACCOUNT= dumbbell GH_PROJECT= piglit GH_TAGNAME= a0db4427446ab50882a721ae3084fa26cc9e751a -USES= cmake:outsource compiler:c11 pkgconfig python:2.7 shebangfix +USES= cmake compiler:c11 pkgconfig python:2.7 shebangfix USE_GL= egl gbm gl glu USE_XORG= x11 xcb xext xrender SHEBANG_FILES= piglit diff --git a/graphics/pngwriter/Makefile b/graphics/pngwriter/Makefile index 6348d7007393..3530a18a6f40 100644 --- a/graphics/pngwriter/Makefile +++ b/graphics/pngwriter/Makefile @@ -19,7 +19,7 @@ OPTIONS_DEFINE= DOCS PORTDOCS= CHANGES EXAMPLES README PNGwriterQuickReference.pdf -USES= cmake:outsource compiler:c++11-lang +USES= cmake compiler:c++11-lang CMAKE_ON= BUILD_SHARED_LIBS PNGwriter_USE_FREETYPE USE_GITHUB= yes USE_LDCONFIG= yes diff --git a/graphics/polyclipping/Makefile b/graphics/polyclipping/Makefile index e6248d246eb2..b9f937f30829 100644 --- a/graphics/polyclipping/Makefile +++ b/graphics/polyclipping/Makefile @@ -13,7 +13,7 @@ COMMENT= Polygon and line clipping and offsetting library LICENSE= BSL LICENSE_FILE= ${WRKSRC}/License.txt -USES= cmake:outsource zip +USES= cmake zip USE_LDCONFIG= yes NO_WRKSUBDIR= yes diff --git a/graphics/poppler/Makefile b/graphics/poppler/Makefile index f676cdbfd2dd..ad84d746f8b2 100644 --- a/graphics/poppler/Makefile +++ b/graphics/poppler/Makefile @@ -21,7 +21,7 @@ LIB_DEPENDS= libnspr4.so:devel/nspr \ libfontconfig.so:x11-fonts/fontconfig RUN_DEPENDS= poppler-data>0:graphics/poppler-data -USES= compiler:c++11-lang cpe cmake gnome jpeg libtool \ +USES= compiler:c++11-lang cpe cmake:insource gnome jpeg libtool \ localbase pathfix pkgconfig tar:xz CPE_VENDOR= freedesktop USE_GNOME= cairo libxml2 diff --git a/graphics/prison/Makefile b/graphics/prison/Makefile index d3c7a7395133..7c8f9bb11d93 100644 --- a/graphics/prison/Makefile +++ b/graphics/prison/Makefile @@ -20,7 +20,7 @@ EXPIRATION_DATE= 2019-03-15 LIB_DEPENDS= libdmtx.so:graphics/libdmtx \ libqrencode.so:graphics/libqrencode -USES= cmake:outsource qt:4 tar:xz +USES= cmake qt:4 tar:xz USE_QT= corelib gui qmake_build moc_build rcc_build uic_build USE_LDCONFIG= yes diff --git a/graphics/ptex/Makefile b/graphics/ptex/Makefile index 662dd1da9306..7d919c3448ef 100644 --- a/graphics/ptex/Makefile +++ b/graphics/ptex/Makefile @@ -10,7 +10,7 @@ COMMENT= Per face texture library LICENSE= BSD3CLAUSE -USES= cmake +USES= cmake:insource USE_LDCONFIG= yes USE_GITHUB= yes diff --git a/graphics/py-open3d-python/Makefile b/graphics/py-open3d-python/Makefile index 258eafa64403..97d90664a1f7 100644 --- a/graphics/py-open3d-python/Makefile +++ b/graphics/py-open3d-python/Makefile @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/../LICENSE LIB_DEPENDS= libOpen3D.so:graphics/open3d -USES= cmake:outsource eigen:3 fortran localbase:ldflags pkgconfig python +USES= cmake eigen:3 fortran localbase:ldflags pkgconfig python USE_GITHUB= yes GH_ACCOUNT= IntelVCL GH_PROJECT= Open3D diff --git a/graphics/radiance/Makefile b/graphics/radiance/Makefile index 3e8c05628f2d..05284136eaaa 100644 --- a/graphics/radiance/Makefile +++ b/graphics/radiance/Makefile @@ -19,7 +19,7 @@ LIB_DEPENDS= libfftw3.so:math/fftw3 \ librtmidi.so:audio/rtmidi \ libsamplerate.so:audio/libsamplerate -USES= cmake:outsource compiler:c++14-lang gl localbase:ldflags qt:5 +USES= cmake compiler:c++14-lang gl localbase:ldflags qt:5 USE_GITHUB= yes GH_ACCOUNT= zbanks GH_TAGNAME= 2b947cf diff --git a/graphics/rawtherapee/Makefile b/graphics/rawtherapee/Makefile index ab2699031d42..a5dca921f19d 100644 --- a/graphics/rawtherapee/Makefile +++ b/graphics/rawtherapee/Makefile @@ -27,7 +27,7 @@ LIB_DEPENDS= \ libsigc-2.0.so:devel/libsigc++20 \ libtiff.so:graphics/tiff -USES= cmake:outsource desktop-file-utils gnome dos2unix \ +USES= cmake desktop-file-utils gnome dos2unix \ jpeg localbase:ldflags pkgconfig tar:xz DOS2UNIX_REGEX= .*\.(cc|h) LDFLAGS+= -Wl,--as-needed # fontconfig, freetype, gettext, libX11 diff --git a/graphics/reactphysics3d/Makefile b/graphics/reactphysics3d/Makefile index 51114e5eb41b..4c1521c9c845 100644 --- a/graphics/reactphysics3d/Makefile +++ b/graphics/reactphysics3d/Makefile @@ -11,7 +11,7 @@ COMMENT= C++ physics engine library in 3D LICENSE= ZLIB LICENSE_FILE= ${WRKSRC}/LICENSE -USES= cmake:outsource +USES= cmake USE_GITHUB= yes GH_ACCOUNT= DanielChappuis GH_TAGNAME= f3be5384997da7ddeccc526036985a80de660bae # branch 'fix37' diff --git a/graphics/showimage/Makefile b/graphics/showimage/Makefile index e1f3d31b5e47..c3237161082c 100644 --- a/graphics/showimage/Makefile +++ b/graphics/showimage/Makefile @@ -13,7 +13,7 @@ COMMENT= Simple KDE based image viewer LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/COPYING -USES= cmake:outsource kde:5 qt:5 tar:bzip2 +USES= cmake kde:5 qt:5 tar:bzip2 USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons ecm i18n itemviews jobwidgets kio service solid \ widgetsaddons xmlgui diff --git a/graphics/simpleviewer/Makefile b/graphics/simpleviewer/Makefile index 52b8169e672b..80dfb7802bbd 100644 --- a/graphics/simpleviewer/Makefile +++ b/graphics/simpleviewer/Makefile @@ -25,7 +25,7 @@ LIB_DEPENDS= libIlmImf.so:graphics/openexr \ libtiff.so:graphics/tiff \ libwebp.so:graphics/webp -USES= cmake compiler:c++11-lang jpeg pkgconfig tar:bzip2 +USES= cmake:insource compiler:c++11-lang jpeg pkgconfig tar:bzip2 USE_GL= glu USE_XORG= ice sm x11 xcursor xext xinerama xrandr xxf86vm diff --git a/graphics/skanlite-kde4/Makefile b/graphics/skanlite-kde4/Makefile index 8d4e4b6f13fd..2d79eb353e9d 100644 --- a/graphics/skanlite-kde4/Makefile +++ b/graphics/skanlite-kde4/Makefile @@ -19,7 +19,7 @@ LICENSE_FILE= ${WRKSRC}/src/COPYING LIB_DEPENDS= libksane.so:graphics/libksane-kde4 -USES= cmake:outsource gettext kde:4 qt:4 tar:xz +USES= cmake gettext kde:4 qt:4 tar:xz USE_KDE= kdelibs automoc4 USE_QT= qmake_build moc_build rcc_build uic_build diff --git a/graphics/skanlite/Makefile b/graphics/skanlite/Makefile index 47b3feb13741..8ca903aa9d50 100644 --- a/graphics/skanlite/Makefile +++ b/graphics/skanlite/Makefile @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/src/COPYING LIB_DEPENDS= libKF5Sane.so:graphics/libksane \ libpng.so:graphics/png -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= ecm auth config configwidgets codecs completion \ coreaddons doctools i18n jobwidgets kio \ service widgetsaddons xmlgui diff --git a/graphics/spectacle/Makefile b/graphics/spectacle/Makefile index 973f3d9e4e81..e8bc5f221811 100644 --- a/graphics/spectacle/Makefile +++ b/graphics/spectacle/Makefile @@ -11,7 +11,7 @@ LIB_DEPENDS= libxcb-cursor.so:x11/xcb-util-cursor \ libxcb-image.so:x11/xcb-util-image \ libxcb-util.so:x11/xcb-util -USES= cmake:outsource compiler:c++11-lang gettext kde:5 pkgconfig qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 pkgconfig qt:5 tar:xz USE_KDE= attica auth codecs completion config configwidgets coreaddons \ dbusaddons doctools ecm i18n jobwidgets kdeclarative kio \ libkipi newstuff notifications package service widgetsaddons \ diff --git a/graphics/tulip/Makefile b/graphics/tulip/Makefile index 77d175e01fd2..65da4210cd0f 100644 --- a/graphics/tulip/Makefile +++ b/graphics/tulip/Makefile @@ -22,7 +22,7 @@ BROKEN_powerpc64= fails to link: libOGDF.so: undefined reference to CoinPackedVe WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} -USES= cmake:outsource,noninja compiler:c++11-lib dos2unix jpeg python \ +USES= cmake:noninja compiler:c++11-lib dos2unix jpeg python \ shebangfix SHEBANG_FILES= tulip-config.in DOS2UNIX_FILES= software/tulip/src/main.cpp diff --git a/graphics/vigra/Makefile b/graphics/vigra/Makefile index 1e046b2b4548..0b3395b52006 100644 --- a/graphics/vigra/Makefile +++ b/graphics/vigra/Makefile @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt LIB_DEPENDS= libHalf.so:graphics/ilmbase \ libsz.so:science/szip -USES= cmake:outsource compiler:c++14-lang python:2.7,run shebangfix +USES= cmake compiler:c++14-lang python:2.7,run shebangfix USE_GITHUB= yes GH_ACCOUNT= ukoethe GH_TAGNAME= 8acd73a diff --git a/graphics/vulkan-loader/Makefile b/graphics/vulkan-loader/Makefile index 7f87c5b27e66..c2580d10cf50 100644 --- a/graphics/vulkan-loader/Makefile +++ b/graphics/vulkan-loader/Makefile @@ -13,7 +13,7 @@ LICENSE= APACHE20 BUILD_DEPENDS= ${LOCALBASE}/include/vulkan/vulkan.h:devel/vulkan-headers -USES= cmake:outsource compiler:c++11-lib pkgconfig python:3.4+,build +USES= cmake compiler:c++11-lib pkgconfig python:3.4+,build USE_LDCONFIG= yes USE_GITHUB= yes diff --git a/graphics/vv/Makefile b/graphics/vv/Makefile index 0b5592a8c455..46c7ffabd5dc 100644 --- a/graphics/vv/Makefile +++ b/graphics/vv/Makefile @@ -23,7 +23,7 @@ LIB_DEPENDS= libexpat.so:textproc/expat2 \ libtiff.so:graphics/tiff \ libvtkIOSQL-8.1.so:math/vtk8 -USES= cmake:outsource compiler:c++11-lang jpeg qt:5 +USES= cmake compiler:c++11-lang jpeg qt:5 USE_GITHUB= yes GH_ACCOUNT= open-vv USE_QT= core designer gui network sql widgets xml buildtools_build qmake_build diff --git a/graphics/waffle/Makefile b/graphics/waffle/Makefile index 38678c55c368..f9a5cec76e84 100644 --- a/graphics/waffle/Makefile +++ b/graphics/waffle/Makefile @@ -12,7 +12,7 @@ COMMENT= Library that allows to defer selection of an OpenGL API until runtime LICENSE= BSD2CLAUSE -USES= cmake:outsource compiler:c11 localbase pathfix pkgconfig tar:xz +USES= cmake compiler:c11 localbase pathfix pkgconfig tar:xz USE_GL= egl gl USE_LDCONFIG= yes USE_XORG= x11 xcb diff --git a/graphics/waylandpp/Makefile b/graphics/waylandpp/Makefile index 671e5048bd10..99e5fd10eafb 100644 --- a/graphics/waylandpp/Makefile +++ b/graphics/waylandpp/Makefile @@ -13,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libwayland-egl.so:graphics/wayland -USES= cmake:outsource localbase pkgconfig +USES= cmake localbase pkgconfig USE_GITHUB= yes GH_ACCOUNT= NilsBrause USE_GL= egl diff --git a/graphics/xcftools/Makefile b/graphics/xcftools/Makefile index 3ecc6fda755c..52dbbbe80ec6 100644 --- a/graphics/xcftools/Makefile +++ b/graphics/xcftools/Makefile @@ -18,7 +18,7 @@ GH_ACCOUNT= j-jorge GH_TAGNAME= d72ba82 # option NLS (for gettext) is wrong as this port allways needs NLS: -USES= libtool cmake:noninja gmake iconv pkgconfig perl5 gettext +USES= libtool cmake:insource,noninja gmake iconv pkgconfig perl5 gettext USE_PERL5= build run GNU_CONFIGURE= yes USE_LDCONFIG= yes diff --git a/graphics/xpdf4/Makefile b/graphics/xpdf4/Makefile index a40838b9e2e0..4543cad35acc 100644 --- a/graphics/xpdf4/Makefile +++ b/graphics/xpdf4/Makefile @@ -26,7 +26,7 @@ CONFLICTS_INSTALL= xpdf MANPREFIX= ${PREFIX}/share/xpdf SUB_FILES= xpdf-man.conf -USES= compiler:c++11-lang cmake:outsource localbase:ldflags +USES= compiler:c++11-lang cmake localbase:ldflags CMAKE_ARGS+= -DOPI_SUPPORT:BOOL=ON -DCMAKE_DISABLE_FIND_PACKAGE_Qt4:BOOL=ON \ -DUSE_LCMS:BOOL=OFF -DSYSTEM_XPDFRC=${PREFIX}/etc/xpdfrc diff --git a/graphics/yafaray/Makefile b/graphics/yafaray/Makefile index 5317fce06e80..b487b6592a8c 100644 --- a/graphics/yafaray/Makefile +++ b/graphics/yafaray/Makefile @@ -28,7 +28,7 @@ LIB_DEPENDS= libboost_system.so:devel/boost-libs \ libpng16.so:graphics/png \ libtiff.so:graphics/tiff -USES= cmake:outsource gnome jpeg +USES= cmake gnome jpeg USE_GITHUB= yes GH_ACCOUNT= YafaRay GH_PROJECT= Core diff --git a/graphics/yagf/Makefile b/graphics/yagf/Makefile index a8c0df817ab0..d11fe1388447 100644 --- a/graphics/yagf/Makefile +++ b/graphics/yagf/Makefile @@ -24,7 +24,7 @@ OPTIONS_DEFINE=TESSERACT TESSERACT_DESC= Tesseract OCR engine TESSERACT_RUN_DEPENDS= tesseract:graphics/tesseract -USES= cmake desktop-file-utils pkgconfig qt:4 +USES= cmake:insource desktop-file-utils pkgconfig qt:4 USE_LDCONFIG= yes INSTALLS_ICONS= yes USE_QT= corelib gui imageformats linguist_build \ diff --git a/irc/anope/Makefile b/irc/anope/Makefile index 38b93e146661..f524e0f78fd9 100644 --- a/irc/anope/Makefile +++ b/irc/anope/Makefile @@ -11,7 +11,7 @@ COMMENT= Set of IRC services for IRC networks LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/docs/COPYING -USES= cmake:outsource localbase:ldflags shebangfix +USES= cmake localbase:ldflags shebangfix USE_GITHUB= yes USE_RC_SUBR= anope diff --git a/irc/konversation/Makefile b/irc/konversation/Makefile index 6194bacb3d12..06d7d3fcca88 100644 --- a/irc/konversation/Makefile +++ b/irc/konversation/Makefile @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libqca-qt5.so:devel/qca@qt5 -USES= cmake:outsource desktop-file-utils gettext kde:5 python:run qt:5 shebangfix tar:xz +USES= cmake desktop-file-utils gettext kde:5 python:run qt:5 shebangfix tar:xz USE_KDE= archive auth bookmarks codecs completion config \ configwidgets coreaddons crash dbusaddons doctools ecm \ emoticons globalaccel i18n iconthemes idletime itemviews \ diff --git a/irc/minbif/Makefile b/irc/minbif/Makefile index 2401c0724434..9b7e028cdd9c 100644 --- a/irc/minbif/Makefile +++ b/irc/minbif/Makefile @@ -14,7 +14,7 @@ LICENSE= GPLv2 LIB_DEPENDS= libpurple.so:net-im/libpurple -USES= cmake pkgconfig +USES= cmake:insource pkgconfig USE_GNOME= glib20 USE_RC_SUBR= ${PORTNAME} diff --git a/irc/quassel/Makefile b/irc/quassel/Makefile index 1101ae5489ac..efd98efaa01e 100644 --- a/irc/quassel/Makefile +++ b/irc/quassel/Makefile @@ -13,7 +13,7 @@ COMMENT?= Qt 5 based distributed IRC client (client and monolithic binary) LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING -USES= cmake:outsource compiler:c++11-lib cpe pkgconfig qt:5 tar:bzip2 +USES= cmake compiler:c++11-lib cpe pkgconfig qt:5 tar:bzip2 CPE_VENDOR= quassel-irc CPE_PRODUCT= quassel_irc diff --git a/irc/weechat/Makefile b/irc/weechat/Makefile index b63b1a3721bd..ac9fd2bdbd88 100644 --- a/irc/weechat/Makefile +++ b/irc/weechat/Makefile @@ -16,7 +16,7 @@ LIB_DEPENDS+= libcurl.so:ftp/curl \ libgcrypt.so:security/libgcrypt \ libgpg-error.so:security/libgpg-error -USES= cmake:outsource,noninja ncurses libtool tar:xz +USES= cmake:noninja ncurses libtool tar:xz USE_LDCONFIG= yes CMAKE_ARGS+= -DENABLE_GUILE=no \ diff --git a/japanese/kiten-kde4/Makefile b/japanese/kiten-kde4/Makefile index 4d5fdf2075e2..77784397d9c1 100644 --- a/japanese/kiten-kde4/Makefile +++ b/japanese/kiten-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= Japanese reference/study tool for KDE 4 DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs automoc4 USE_QT= corelib moc_build qmake_build rcc_build uic_build USE_LDCONFIG= yes diff --git a/japanese/kiten/Makefile b/japanese/kiten/Makefile index 77e21d29f99b..fdbcf802b737 100644 --- a/japanese/kiten/Makefile +++ b/japanese/kiten/Makefile @@ -7,7 +7,7 @@ CATEGORIES= japanese kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Japanese reference/study tool for KDE -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth archive codecs completion config configwidgets coreaddons \ crash doctools ecm i18n jobwidgets js khtml kio parts service \ sonnet textwidgets widgetsaddons xmlgui diff --git a/lang/chaiscript/Makefile b/lang/chaiscript/Makefile index 82994f679478..d86e04d1e571 100644 --- a/lang/chaiscript/Makefile +++ b/lang/chaiscript/Makefile @@ -12,7 +12,7 @@ COMMENT= Embedded scripting language designed for C++ LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -USES= cmake:outsource localbase:ldflags readline +USES= cmake localbase:ldflags readline USE_GITHUB= yes USE_LDCONFIG= ${PREFIX}/lib/chaiscript diff --git a/lang/cling/Makefile b/lang/cling/Makefile index aa5c920a664c..a0a65db3d85d 100644 --- a/lang/cling/Makefile +++ b/lang/cling/Makefile @@ -30,7 +30,7 @@ LLVM_RELEASE= 5.0.0 LLVM_SUFFIX= 50_cern-root LLVM_PREFIX= ${PREFIX}/llvm${LLVM_SUFFIX} -USES= cmake:outsource compiler:c11 compiler:c++11-lib cpe \ +USES= cmake compiler:c11 compiler:c++11-lib cpe \ libedit ncurses python:build shebangfix tar:bzip2 USE_GNOME= libxml2 USE_LDCONFIG= ${LLVM_PREFIX}/lib diff --git a/lang/gravity/Makefile b/lang/gravity/Makefile index e2b42a8509e8..d4529e004caf 100644 --- a/lang/gravity/Makefile +++ b/lang/gravity/Makefile @@ -11,7 +11,7 @@ COMMENT= Embeddable programming language LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -USES= cmake:outsource +USES= cmake USE_GITHUB= yes GH_ACCOUNT= marcobambini diff --git a/lang/io-devel/Makefile b/lang/io-devel/Makefile index 21c072ad2d03..d412862d580d 100644 --- a/lang/io-devel/Makefile +++ b/lang/io-devel/Makefile @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt CONFLICTS= io-[0-9]* -USES= cmake:outsource,noninja compiler:c11 +USES= cmake:noninja compiler:c11 USE_LDCONFIG= yes diff --git a/lang/io/Makefile b/lang/io/Makefile index 4611a6b4d790..d975cc4199ed 100644 --- a/lang/io/Makefile +++ b/lang/io/Makefile @@ -17,7 +17,7 @@ BROKEN_armv6= fails to compile: ucontext.h: expected parameter declarator BROKEN_armv7= fails to compile: Coro.c:392:2: no member named 'arm_r0' in 'mcontext_t' BROKEN_powerpc64= fails to build: unrecognized command line option -msse2 -USES= cmake:outsource,noninja compiler:c11 ssl +USES= cmake:noninja compiler:c11 ssl USE_GITHUB= yes GH_ACCOUNT= stevedekorte diff --git a/lang/kf5-kross/Makefile b/lang/kf5-kross/Makefile index eb092a1f0b5e..fe33cf197801 100644 --- a/lang/kf5-kross/Makefile +++ b/lang/kf5-kross/Makefile @@ -7,7 +7,7 @@ CATEGORIES= lang kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 multi-language application scripting -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons doctools ecm i18n iconthemes itemviews \ jobwidgets kio parts service solid sonnet textwidgets \ diff --git a/lang/kross-interpreters/Makefile b/lang/kross-interpreters/Makefile index 5330c4c01146..5a0b51f2d93c 100644 --- a/lang/kross-interpreters/Makefile +++ b/lang/kross-interpreters/Makefile @@ -7,7 +7,7 @@ CATEGORIES= lang kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Language interpreters to enable in-process scripting with Kross -USES= cmake:outsource gettext kde:5 python:2.7 qt:5 tar:xz +USES= cmake gettext kde:5 python:2.7 qt:5 tar:xz USE_KDE= ecm kross USE_QT= core gui script widgets xml \ buildtools_build qmake_build diff --git a/lang/kturtle-kde4/Makefile b/lang/kturtle-kde4/Makefile index 8b31a496c0bd..70a4bf0bf724 100644 --- a/lang/kturtle-kde4/Makefile +++ b/lang/kturtle-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= Educational programming environment for KDE 4 DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs automoc4 USE_QT= corelib gui xml moc_build qmake_build rcc_build uic_build diff --git a/lang/kturtle/Makefile b/lang/kturtle/Makefile index da0b6c96c77e..a7d4fdebf134 100644 --- a/lang/kturtle/Makefile +++ b/lang/kturtle/Makefile @@ -7,7 +7,7 @@ CATEGORIES= lang kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Educational programming environment for KDE -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= attica auth codecs config configwidgets coreaddons crash ecm \ emoticons i18n init itemmodels kdelibs4support kio newstuff \ service sonnet textwidgets widgetsaddons xmlgui diff --git a/lang/ldc/Makefile b/lang/ldc/Makefile index 2f825ada2649..1b9a7bec6f9f 100644 --- a/lang/ldc/Makefile +++ b/lang/ldc/Makefile @@ -19,7 +19,7 @@ BROKEN_armv6= fails to compile: Error: undefined identifier _jmp_buf, did you m BROKEN_armv7= fails to compile: Error: undefined identifier _jmp_buf, did you mean alias jmp_buf? BROKEN_powerpc64= fails to compile: cc1plus: error: unrecognized command line option "-std=c++11" -USES= cmake +USES= cmake:insource USE_GITHUB= yes GH_ACCOUNT= ldc-developers GH_PROJECT= ldc diff --git a/lang/neko/Makefile b/lang/neko/Makefile index d90c2019f550..5eea28fea90c 100644 --- a/lang/neko/Makefile +++ b/lang/neko/Makefile @@ -19,7 +19,7 @@ LIB_DEPENDS= libgc-threaded.so:devel/boehm-gc-threaded \ libmbedtls.so:security/mbedtls libmbedcrypto.so:security/mbedtls libmbedx509.so:security/mbedtls \ libfontconfig.so:x11-fonts/fontconfig libfreetype.so:print/freetype2 -USES= cmake:outsource mysql pkgconfig sqlite:3 +USES= cmake mysql pkgconfig sqlite:3 USE_GITHUB= yes GH_ACCOUNT= HaxeFoundation USE_LDCONFIG= ${PREFIX}/lib ${PREFIX}/lib/neko diff --git a/lang/nyan/Makefile b/lang/nyan/Makefile index e5ce285ab401..835cab0bfa0a 100644 --- a/lang/nyan/Makefile +++ b/lang/nyan/Makefile @@ -12,7 +12,7 @@ COMMENT= Data description language designed for openage LICENSE= LGPL3 LICENSE_FILE= ${WRKSRC}/legal/LGPLv3 -USES= cmake:outsource compiler:c++17-lang +USES= cmake compiler:c++17-lang USE_GITHUB= yes GH_ACCOUNT= SFTtech GH_TAGNAME= 3c263e2 diff --git a/lang/opencoarrays/Makefile b/lang/opencoarrays/Makefile index 51f3b62c0784..e760e683ce0d 100644 --- a/lang/opencoarrays/Makefile +++ b/lang/opencoarrays/Makefile @@ -17,7 +17,7 @@ BROKEN_aarch64= fails to build: Can't open module file 'ieee_arithmetic.mod' fo BUILD_DEPENDS= bash:shells/bash RUN_DEPENDS= bash:shells/bash -USES= cmake:outsource fortran +USES= cmake fortran USE_CSTD= gnu99 USE_GITHUB= yes GH_ACCOUNT= sourceryinstitute diff --git a/lang/pocl/Makefile b/lang/pocl/Makefile index 6088fb00ca98..d40779b6754e 100644 --- a/lang/pocl/Makefile +++ b/lang/pocl/Makefile @@ -24,7 +24,7 @@ RUN_DEPENDS= llvm${LLVM_VERSION}>=0:devel/llvm${LLVM_VERSION} LLVM_VERSION= ${MESA_LLVM_VER:U40} -USES= cmake:outsource localbase:ldflags ncurses pkgconfig +USES= cmake localbase:ldflags ncurses pkgconfig USE_CXXSTD= gnu++11 USE_LDCONFIG= yes diff --git a/mail/geary/Makefile b/mail/geary/Makefile index 841d4bf5252d..c2edc47e6aaa 100644 --- a/mail/geary/Makefile +++ b/mail/geary/Makefile @@ -28,7 +28,7 @@ LIB_DEPENDS= libgmime-2.6.so:mail/gmime26 \ libsoup-2.4.so:devel/libsoup \ libenchant.so:textproc/enchant -USES= cmake:outsource compiler:c11 desktop-file-utils gettext gnome libtool \ +USES= cmake compiler:c11 desktop-file-utils gettext gnome libtool \ localbase:ldflags pkgconfig shebangfix sqlite tar:xz USE_GNOME= cairo gnomedocutils gnomeprefix gtk30 intlhack introspection SHEBANG_FILES= desktop/geary-attach diff --git a/mail/libcmime/Makefile b/mail/libcmime/Makefile index 686d93fd919a..28b9d3c44f4c 100644 --- a/mail/libcmime/Makefile +++ b/mail/libcmime/Makefile @@ -13,7 +13,7 @@ COMMENT= Lightweight C mime library LICENSE= MIT LICENSE_FILE= ${WRKSRC}/COPYING -USES= bison cmake:noninja pkgconfig +USES= bison cmake:insource,noninja pkgconfig USE_LDCONFIG= yes CMAKE_ARGS= --no-warn-unused-cli diff --git a/mail/libvmime/Makefile b/mail/libvmime/Makefile index 157cca34b785..6ca5aa9d94f3 100644 --- a/mail/libvmime/Makefile +++ b/mail/libvmime/Makefile @@ -20,7 +20,7 @@ USE_GITHUB= yes GH_ACCOUNT= kisli GH_PROJECT= vmime -USES= cmake:outsource,noninja compiler:c++11-lib iconv pkgconfig +USES= cmake:noninja compiler:c++11-lib iconv pkgconfig USE_LDCONFIG= yes CMAKE_ARGS= -DLIB_SUFFIX:STRING="" \ diff --git a/mail/rmilter/Makefile b/mail/rmilter/Makefile index 56c435537a70..997ba916ef0d 100644 --- a/mail/rmilter/Makefile +++ b/mail/rmilter/Makefile @@ -18,7 +18,7 @@ NOT_FOR_ARCHS_REASON= fails to compile: error: Unsupported word size USE_GITHUB= yes GH_ACCOUNT= vstakhov -USES= cmake:outsource bison pkgconfig ssl +USES= cmake bison pkgconfig ssl USE_GNOME= glib20 USERS= _rmilter diff --git a/mail/rspamd-devel/Makefile b/mail/rspamd-devel/Makefile index b9d043768418..c582296fbe29 100644 --- a/mail/rspamd-devel/Makefile +++ b/mail/rspamd-devel/Makefile @@ -19,7 +19,7 @@ LIB_DEPENDS= libpcre.so:devel/pcre \ BUILD_DEPENDS= ragel:devel/ragel RUN_DEPENDS= ca_root_nss>=3.*:security/ca_root_nss -USES= cmake:outsource pkgconfig perl5 \ +USES= cmake pkgconfig perl5 \ compiler:c11 sqlite ssl USE_LDCONFIG= yes USE_PERL5= build run diff --git a/mail/rspamd/Makefile b/mail/rspamd/Makefile index 252516b7d622..ab00725530d1 100644 --- a/mail/rspamd/Makefile +++ b/mail/rspamd/Makefile @@ -18,7 +18,7 @@ LIB_DEPENDS= libpcre.so:devel/pcre \ BUILD_DEPENDS= ragel:devel/ragel RUN_DEPENDS= ca_root_nss>=3.*:security/ca_root_nss -USES= cmake:outsource compiler:c11 gnome perl5 pkgconfig \ +USES= cmake compiler:c11 gnome perl5 pkgconfig \ sqlite ssl USE_LDCONFIG= yes USE_PERL5= build run diff --git a/math/SCIP/Makefile b/math/SCIP/Makefile index c9bc9cd4f680..3b451f357302 100644 --- a/math/SCIP/Makefile +++ b/math/SCIP/Makefile @@ -22,7 +22,7 @@ LIB_DEPENDS= libgmp.so:math/gmp \ CONFLICTS_BUILD= Ipopt -USES= compiler:c11 cmake:outsource readline tar:tgz +USES= compiler:c11 cmake readline tar:tgz EXTRACT_CMD= gtar USE_LDCONFIG= yes PLIST_SUB= SHL4=${DISTVERSION}.0 SHL2=${DISTVERSION:R} diff --git a/math/SoPlex/Makefile b/math/SoPlex/Makefile index 181402018949..a4bd2c88b007 100644 --- a/math/SoPlex/Makefile +++ b/math/SoPlex/Makefile @@ -18,7 +18,7 @@ LICENSE_PERMS= dist-mirror pkg-mirror auto-accept LIB_DEPENDS= libgmp.so:math/gmp -USES= cmake:outsource compiler:c++11-lang tar:tgz +USES= cmake compiler:c++11-lang tar:tgz USE_LDCONFIG= yes PLIST_SUB= SHL4=${DISTVERSION}.0 SHL2=${DISTVERSION:R} diff --git a/math/ambit/Makefile b/math/ambit/Makefile index 282ae586dca5..eb711b63115d 100644 --- a/math/ambit/Makefile +++ b/math/ambit/Makefile @@ -17,7 +17,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libhdf5.so:science/hdf5 \ libsz.so:science/szip -USES= cmake:outsource compiler:c++11-lang +USES= cmake compiler:c++11-lang USE_GCC= yes USE_GITHUB= yes GH_ACCOUNT= jturney diff --git a/math/analitza-kde4/Makefile b/math/analitza-kde4/Makefile index c3acf5e86a14..07eb45ebe4d3 100644 --- a/math/analitza-kde4/Makefile +++ b/math/analitza-kde4/Makefile @@ -16,7 +16,7 @@ LICENSE_FILE_GPLv2= ${WRKSRC}/COPYING DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource ncurses kde:4 qt:4 readline tar:xz +USES= cmake ncurses kde:4 qt:4 readline tar:xz USE_KDE= kdelibs automoc4 USE_QT= corelib dbus gui opengl svg xml \ moc_build qmake_build rcc_build uic_build diff --git a/math/analitza/Makefile b/math/analitza/Makefile index 908b026e1f6b..09bdefd0e439 100644 --- a/math/analitza/Makefile +++ b/math/analitza/Makefile @@ -12,7 +12,7 @@ LICENSE_COMB= multi LICENSE_FILE_GFDL= ${WRKSRC}/COPYING.DOC LICENSE_FILE_GPLv2= ${WRKSRC}/COPYING -USES= cmake:outsource compiler:c++11-lang gl kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gl kde:5 qt:5 tar:xz USE_GL= glu USE_KDE= ecm USE_QT= core declarative gui network opengl printsupport svg widgets xml \ diff --git a/math/aspcud/Makefile b/math/aspcud/Makefile index 72be5b0c29d7..f15030a9d98a 100644 --- a/math/aspcud/Makefile +++ b/math/aspcud/Makefile @@ -18,7 +18,7 @@ RUN_DEPENDS= gringo:math/gringo \ clasp:math/clasp \ bash:shells/bash -USES= compiler:c++11-lang cmake:outsource python:run +USES= compiler:c++11-lang cmake python:run USE_GITHUB= yes GH_ACCOUNT= potassco diff --git a/math/blaze/Makefile b/math/blaze/Makefile index 7febbfcfb423..82fb509483cb 100644 --- a/math/blaze/Makefile +++ b/math/blaze/Makefile @@ -19,7 +19,7 @@ RUN_DEPENDS= boost-libs>0:devel/boost-libs \ openblas>0:math/openblas \ openmp>0:devel/openmp -USES= cmake:outsource compiler:c++14-lang fortran localbase:ldflags +USES= cmake compiler:c++14-lang fortran localbase:ldflags NO_ARCH= yes BB_ACCOUNT= ${PORTNAME}-lib diff --git a/math/blazeiterative/Makefile b/math/blazeiterative/Makefile index 199be82a2ac6..ae9a008846d7 100644 --- a/math/blazeiterative/Makefile +++ b/math/blazeiterative/Makefile @@ -16,7 +16,7 @@ BUILD_DEPENDS= blaze>0:math/blaze \ openmp>0:devel/openmp RUN_DEPENDS= blaze>0:math/blaze -USES= cmake:outsource compiler:c++14-lang fortran localbase:ldflags +USES= cmake compiler:c++14-lang fortran localbase:ldflags USE_GITHUB= yes GH_ACCOUNT= tjolsen GH_PROJECT= BlazeIterative diff --git a/math/cadabra2/Makefile b/math/cadabra2/Makefile index 9bfadd79b70a..b8246dec17dd 100644 --- a/math/cadabra2/Makefile +++ b/math/cadabra2/Makefile @@ -23,7 +23,7 @@ LIB_DEPENDS= ${PY_BOOST} \ RUN_DEPENDS= ${PYTHON_SITELIBDIR}/sympy/__init__.py:math/py-sympy@${PY_FLAVOR} \ ${PYTHON_SITELIBDIR}/matplotlib/__init__.py:math/py-matplotlib@${PY_FLAVOR} -USES= compiler:c++14-lang cmake:outsource dos2unix gettext-runtime gnome localbase:ldflags pkgconfig python:3.4+ sqlite # USES=python picks random python versions +USES= compiler:c++14-lang cmake dos2unix gettext-runtime gnome localbase:ldflags pkgconfig python:3.4+ sqlite # USES=python picks random python versions USE_GITHUB= yes GH_ACCOUNT= kpeeters DOS2UNIX_FILES= cmake/version.cmake diff --git a/math/cantor-kde4/Makefile b/math/cantor-kde4/Makefile index 3a97128413b2..c7acfc80855c 100644 --- a/math/cantor-kde4/Makefile +++ b/math/cantor-kde4/Makefile @@ -15,7 +15,7 @@ LIB_DEPENDS= libspectre.so:print/libspectre \ libqalculate.so:math/libqalculate \ libanalitza.so:math/analitza-kde4 -USES= cmake:outsource kde:4 pkgconfig python:2.7 qt:4 tar:xz +USES= cmake kde:4 pkgconfig python:2.7 qt:4 tar:xz USE_KDE= kdelibs automoc4 USE_QT= corelib qtestlib_build xml xmlpatterns \ moc_build qmake_build rcc_build uic_build diff --git a/math/cantor/Makefile b/math/cantor/Makefile index da703e811f18..f6040cc3cdb7 100644 --- a/math/cantor/Makefile +++ b/math/cantor/Makefile @@ -14,7 +14,7 @@ LIB_DEPENDS= libAnalitza.so:math/analitza \ BUILD_DEPENDS= ${LOCALBASE}/share/xsl/docbook/html/docbook.xsl:textproc/docbook-xsl \ docbook-xml>0:textproc/docbook-xml -USES= cmake:outsource compiler:c++11-lang gettext kde:5 pkgconfig \ +USES= cmake compiler:c++11-lang gettext kde:5 pkgconfig \ python:3.4+ qt:5 tar:xz USE_KDE= attica auth archive bookmarks codecs completion config \ configwidgets coreaddons crash ecm emoticons i18n iconthemes \ diff --git a/math/ceres-solver/Makefile b/math/ceres-solver/Makefile index 05bd5958103e..cde3523c6bd5 100644 --- a/math/ceres-solver/Makefile +++ b/math/ceres-solver/Makefile @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libglog.so:devel/glog RUN_DEPENDS:= ${BUILD_DEPENDS:Meigen*} -USES= cmake:outsource compiler:${OPENMP}c++11-lib eigen:3 localbase shebangfix +USES= cmake compiler:${OPENMP}c++11-lib eigen:3 localbase shebangfix USE_GITHUB= yes USE_LDCONFIG= yes SHEBANG_FILES= examples/slam/pose_graph_*/plot_results.py \ diff --git a/math/clasp/Makefile b/math/clasp/Makefile index e909f4542222..207cacd2c8e3 100644 --- a/math/clasp/Makefile +++ b/math/clasp/Makefile @@ -12,7 +12,7 @@ COMMENT= Answer set solver for (extended) normal logic programs BROKEN_sparc64= Fails to build: internal compiler error -USES= cmake:outsource +USES= cmake PLIST_FILES= bin/${PORTNAME} diff --git a/math/cminpack/Makefile b/math/cminpack/Makefile index fa29227a98c1..a4ae635450fa 100644 --- a/math/cminpack/Makefile +++ b/math/cminpack/Makefile @@ -10,7 +10,7 @@ COMMENT= Solving nonlinear equations and nonlinear least squares problems LICENSE_FILE= ${WRKSRC}/CopyrightMINPACK.txt -USES= cmake:outsource +USES= cmake USE_GITHUB= yes GH_ACCOUNT= devernay diff --git a/math/combblas/Makefile b/math/combblas/Makefile index f5472e8849fb..ceec02d455b5 100644 --- a/math/combblas/Makefile +++ b/math/combblas/Makefile @@ -17,7 +17,7 @@ LIB_DEPENDS= libmpi.so:net/mpich \ libomp.so:devel/openmp RUN_DEPENDS= ${LOCALBASE}/lib/gcc${GCC_DEFAULT}/libgcc_s.so.1:lang/gcc${GCC_DEFAULT} # because of the link flags induced by mpich -USES= cmake:outsource compiler:c++14-lang localbase:ldflags tar:tgz +USES= cmake compiler:c++14-lang localbase:ldflags tar:tgz USE_LDCONFIG= yes CMAKE_ON= BUILD_SHARED_LIBS diff --git a/math/cryptominisat/Makefile b/math/cryptominisat/Makefile index 0ed97c8e32d8..d6086e938e25 100644 --- a/math/cryptominisat/Makefile +++ b/math/cryptominisat/Makefile @@ -15,7 +15,7 @@ LICENSE_FILE_MIT= ${WRKSRC}/LICENSE.txt LIB_DEPENDS= libboost_program_options.so:devel/boost-libs -USES= cmake:outsource compiler:c++11-lib +USES= cmake compiler:c++11-lib USE_LDCONFIG= yes USE_GITHUB= yes diff --git a/math/dbcsr/Makefile b/math/dbcsr/Makefile index a6b8829bb452..be16debf3390 100644 --- a/math/dbcsr/Makefile +++ b/math/dbcsr/Makefile @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= fypp:devel/py-fypp@${PY_FLAVOR} -USES= blaslapack:openblas cmake:outsource,noninja fortran python:build +USES= blaslapack:openblas cmake:noninja fortran python:build USE_GITHUB= yes GH_ACCOUNT= cp2k USE_LDCONFIG= yes diff --git a/math/deal.ii/Makefile b/math/deal.ii/Makefile index 4ff91ae81db0..5a4d2055dba1 100644 --- a/math/deal.ii/Makefile +++ b/math/deal.ii/Makefile @@ -18,7 +18,7 @@ LIB_DEPENDS= libgoto2.so:math/gotoblas \ libmetis.so:math/metis \ libtbb.so:devel/tbb -USES= cmake:outsource compiler:c++17-lang localbase:ldflags +USES= cmake compiler:c++17-lang localbase:ldflags USE_GITHUB= yes GH_ACCOUNT= ${PORTNAME:tl:S/.//} GH_PROJECT= ${PORTNAME:tl:S/.//} diff --git a/math/eigen3/Makefile b/math/eigen3/Makefile index b9b938c4311d..0e686c4f9b60 100644 --- a/math/eigen3/Makefile +++ b/math/eigen3/Makefile @@ -16,7 +16,7 @@ LICENSE_FILE_LGPL21= ${WRKSRC}/COPYING.LGPL LICENSE_FILE_MPL20= ${WRKSRC}/COPYING.MPL2 CMAKE_ARGS= -DPKGCONFIG_INSTALL_DIR:PATH="${PREFIX}/libdata/pkgconfig" -USES= cmake:outsource tar:bzip2 +USES= cmake tar:bzip2 NO_BUILD= yes NO_ARCH= yes diff --git a/math/fcl/Makefile b/math/fcl/Makefile index 0a30cc65d355..5afa5d5b010c 100644 --- a/math/fcl/Makefile +++ b/math/fcl/Makefile @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libccd.so:math/libccd -USES= cmake:outsource compiler:c++11-lang eigen:3 +USES= cmake compiler:c++11-lang eigen:3 USE_GITHUB= yes GH_ACCOUNT= flexible-collision-library USE_LDCONFIG= yes diff --git a/math/flann/Makefile b/math/flann/Makefile index 5dddb2240d2f..c39253c018aa 100644 --- a/math/flann/Makefile +++ b/math/flann/Makefile @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libhdf5.so:science/hdf5 \ libsz.so:science/szip -USES= cmake:outsource +USES= cmake USE_GITHUB= yes GH_ACCOUNT= mariusmuja USE_LDCONFIG= yes diff --git a/math/flint2/Makefile b/math/flint2/Makefile index 6d99c412299b..488414e51fd7 100644 --- a/math/flint2/Makefile +++ b/math/flint2/Makefile @@ -23,7 +23,7 @@ BROKEN_mips64= fails to compile: invokes x86 assembler LIB_DEPENDS= libgmp.so:math/gmp \ libmpfr.so:math/mpfr -USES= cmake:outsource +USES= cmake GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-static USE_GITHUB= yes diff --git a/math/g2o/Makefile b/math/g2o/Makefile index a8a89825fc10..648ff11939ef 100644 --- a/math/g2o/Makefile +++ b/math/g2o/Makefile @@ -15,7 +15,7 @@ LICENSE_COMB= dual LIB_DEPENDS= libcxsparse.so:math/suitesparse \ libQGLViewer-qt5.so:graphics/libQGLViewer -USES= cmake:outsource eigen:3 qt:5 +USES= cmake eigen:3 qt:5 USE_GITHUB= yes GH_ACCOUNT= RainerKuemmerle USE_GL= gl glu diff --git a/math/gau2grid/Makefile b/math/gau2grid/Makefile index da1e9ed8d278..dc9b670b0c77 100644 --- a/math/gau2grid/Makefile +++ b/math/gau2grid/Makefile @@ -20,7 +20,7 @@ ONLY_FOR_ARCHS_REASON= BUG: ValueError: descr is not a valid dtype descriptor: ' BUILD_DEPENDS= ${PYNUMPY} -USES= cmake:outsource compiler:c11 python:build # C code build depends on python to generate some headers +USES= cmake compiler:c11 python:build # C code build depends on python to generate some headers USE_GITHUB= yes GH_ACCOUNT= dgasmith USE_LDCONFIG= yes diff --git a/math/geogram/Makefile b/math/geogram/Makefile index 887b0e73afec..8921a207a3bb 100644 --- a/math/geogram/Makefile +++ b/math/geogram/Makefile @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/doc/devkit/license.dox LIB_DEPENDS= libglfw.so:graphics/glfw -USES= cmake:outsource gl localbase:ldflags +USES= cmake gl localbase:ldflags USE_XORG= x11 xcursor xi xinerama xrandr xxf86vm USE_GL= gl glu USE_LDCONFIG= yes diff --git a/math/glm/Makefile b/math/glm/Makefile index 7eb6cf5802b5..b373ab63f89b 100644 --- a/math/glm/Makefile +++ b/math/glm/Makefile @@ -13,7 +13,7 @@ COMMENT= C++ mathematics library for software based on the OpenGL GLSL LICENSE= MIT LICENSE_FILE= ${WRKSRC}/copying.txt -USES= cmake:outsource compiler:c++11-lang pkgconfig +USES= cmake compiler:c++11-lang pkgconfig USE_GITHUB= yes GH_ACCOUNT= g-truc diff --git a/math/hipmcl/Makefile b/math/hipmcl/Makefile index 903a06a1a9fa..15ab16657cd9 100644 --- a/math/hipmcl/Makefile +++ b/math/hipmcl/Makefile @@ -16,7 +16,7 @@ LIB_DEPENDS= libCombBLAS.so:math/combblas \ libomp.so:devel/openmp RUN_DEPENDS= ${LOCALBASE}/lib/gcc${GCC_DEFAULT}/libgcc_s.so.1:lang/gcc${GCC_DEFAULT} # because of the link flags induced by mpich -USES= cmake:outsource compiler:c++14-lang dos2unix localbase:ldflags +USES= cmake compiler:c++14-lang dos2unix localbase:ldflags DOS2UNIX_FILES= CMakeLists.txt BB_ACCOUNT= azadcse diff --git a/math/ignition-math/Makefile b/math/ignition-math/Makefile index a198296fb150..16bb76eb93c5 100644 --- a/math/ignition-math/Makefile +++ b/math/ignition-math/Makefile @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= ignition-cmake==2:devel/ignition-cmake -USES= compiler:c++17-lang cmake:outsource eigen:3 +USES= compiler:c++17-lang cmake eigen:3 USE_LDCONFIG= yes CMAKE_OFF= BUILD_TESTING diff --git a/math/kalgebra-kde4/Makefile b/math/kalgebra-kde4/Makefile index 2184b4376118..d1f5dd39c176 100644 --- a/math/kalgebra-kde4/Makefile +++ b/math/kalgebra-kde4/Makefile @@ -15,7 +15,7 @@ LIB_DEPENDS= libanalitza.so:math/analitza-kde4 CMAKE_ARGS= -DBUILD_mobile:BOOL=FALSE -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_GL= glu USE_KDE= kdelibs libkeduvocdocument automoc4 USE_QT= corelib declarative gui opengl \ diff --git a/math/kalgebra/Makefile b/math/kalgebra/Makefile index 9f7ed229ce83..2daaa07b2d35 100644 --- a/math/kalgebra/Makefile +++ b/math/kalgebra/Makefile @@ -12,7 +12,7 @@ BUILD_DEPENDS= ${LOCALBASE}/share/xsl/docbook/html/docbook.xsl:textproc/docbook- docbook-xml>0:textproc/docbook-xml CMAKE_ARGS= -DBUILD_mobile:BOOL=FALSE -USES= cmake:outsource gettext kde:5 qt:5 tar:xz +USES= cmake gettext kde:5 qt:5 tar:xz USE_GL= glu USE_KDE= auth codecs config configwidgets coreaddons doctools ecm i18n \ kio service widgetsaddons xmlgui diff --git a/math/kbruch-kde4/Makefile b/math/kbruch-kde4/Makefile index 7fa235d28887..842ae927016e 100644 --- a/math/kbruch-kde4/Makefile +++ b/math/kbruch-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= KDE 4 application to exercise fractions DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs automoc4 USE_QT= moc_build qmake_build rcc_build uic_build diff --git a/math/kbruch/Makefile b/math/kbruch/Makefile index ec2e9cb147a7..762abd124277 100644 --- a/math/kbruch/Makefile +++ b/math/kbruch/Makefile @@ -10,7 +10,7 @@ COMMENT= KDE 4 application to exercise fractions BUILD_DEPENDS= ${LOCALBASE}/share/xsl/docbook/html/docbook.xsl:textproc/docbook-xsl \ docbook-xml>0:textproc/docbook-xml -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth config crash codecs configwidgets coreaddons doctools ecm \ i18n widgetsaddons xmlgui USE_QT= core dbus gui xml widgets \ diff --git a/math/kcalc-kde4/Makefile b/math/kcalc-kde4/Makefile index 40f4d96600fe..528cb70caa5c 100644 --- a/math/kcalc-kde4/Makefile +++ b/math/kcalc-kde4/Makefile @@ -14,7 +14,7 @@ EXPIRATION_DATE= 2018-12-31 LIB_DEPENDS= libgmp.so:math/gmp \ libmpfr.so:math/mpfr -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= automoc4 kdelibs USE_QT= xml qmake_build moc_build rcc_build uic_build diff --git a/math/kcalc/Makefile b/math/kcalc/Makefile index 570e0c0b71ee..e434be11dddd 100644 --- a/math/kcalc/Makefile +++ b/math/kcalc/Makefile @@ -12,7 +12,7 @@ LIB_DEPENDS= libgmp.so:math/gmp \ BUILD_DEPENDS= ${LOCALBASE}/share/xsl/docbook/html/docbook.xsl:textproc/docbook-xsl \ docbook-xml>0:textproc/docbook-xml -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs coreaddons ecm config configwidgets doctools \ guiaddons i18n init notifications widgetsaddons xmlgui USE_QT= core dbus gui widgets xml \ diff --git a/math/kig-kde4/Makefile b/math/kig-kde4/Makefile index c1a4b61f0294..fb246a30c5ac 100644 --- a/math/kig-kde4/Makefile +++ b/math/kig-kde4/Makefile @@ -13,7 +13,7 @@ EXPIRATION_DATE= 2018-12-31 LIB_DEPENDS= ${PY_BOOST} -USES= cmake:outsource compiler:c++11-lib kde:4 python:2.7,run \ +USES= cmake compiler:c++11-lib kde:4 python:2.7,run \ qt:4 shebangfix tar:xz USE_KDE= kdelibs soprano automoc4 USE_QT= corelib dbus gui network svg xml \ diff --git a/math/kig/Makefile b/math/kig/Makefile index 9013792d1421..0dcf4c035015 100644 --- a/math/kig/Makefile +++ b/math/kig/Makefile @@ -9,7 +9,7 @@ COMMENT= KDE interactive geometry application LIB_DEPENDS= ${PY_BOOST} -USES= cmake:outsource gettext compiler:c++11-lib kde:5 \ +USES= cmake gettext compiler:c++11-lib kde:5 \ python:2.7,run qt:5 shebangfix tar:xz USE_KDE= archive auth codecs completion config configwidgets coreaddons \ crash doctools ecm emoticons i18n iconthemes init itemmodels \ diff --git a/math/kmplot-kde4/Makefile b/math/kmplot-kde4/Makefile index b442372d26f9..6b6cc093cbd3 100644 --- a/math/kmplot-kde4/Makefile +++ b/math/kmplot-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= Mathematical function plotter for KDE 4 DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs automoc4 USE_QT= xml moc_build qmake_build rcc_build uic_build diff --git a/math/kmplot/Makefile b/math/kmplot/Makefile index 406ecedadab3..6bba23b121b1 100644 --- a/math/kmplot/Makefile +++ b/math/kmplot/Makefile @@ -7,7 +7,7 @@ CATEGORIES= math kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Mathematical function plotter for KDE -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons ecm emoticons guiaddons i18n \ iconthemes init itemmodels itemviews jobwidgets \ diff --git a/math/labplot/Makefile b/math/labplot/Makefile index 8f735f9777f1..1f2303a5236d 100644 --- a/math/labplot/Makefile +++ b/math/labplot/Makefile @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libgsl.so:math/gsl -USES= bison cmake:outsource desktop-file-utils kde:5 qt:5 shared-mime-info tar:xz +USES= bison cmake desktop-file-utils kde:5 qt:5 shared-mime-info tar:xz USE_KDE= archive auth bookmarks codecs completion config configwidgets \ coreaddons crash ecm_build guiaddons i18n iconthemes itemviews \ jobwidgets kdelibs4support kio newstuff notifications parts \ diff --git a/math/lean/Makefile b/math/lean/Makefile index dc17efaa564d..d24589219a48 100644 --- a/math/lean/Makefile +++ b/math/lean/Makefile @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/../LICENSE LIB_DEPENDS= libgmp.so:math/gmp -USES= cmake:outsource +USES= cmake USE_GITHUB= yes GH_ACCOUNT= leanprover USE_LDCONFIG= yes diff --git a/math/lemon/Makefile b/math/lemon/Makefile index a96d9f0bcb34..df7b33a42285 100644 --- a/math/lemon/Makefile +++ b/math/lemon/Makefile @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libCbc.so:math/coinmp \ libglpk.so:math/glpk -USES= cmake:outsource +USES= cmake USE_LDCONFIG= yes CMAKE_ON= BUILD_SHARED_LIBS diff --git a/math/libccd/Makefile b/math/libccd/Makefile index 0e606c0bacfd..5878991734fd 100644 --- a/math/libccd/Makefile +++ b/math/libccd/Makefile @@ -11,7 +11,7 @@ COMMENT= Library for collision detection between two convex shapes LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/BSD-LICENSE -USES= cmake:outsource +USES= cmake USE_GITHUB= yes GH_ACCOUNT= danfis USE_LDCONFIG= yes diff --git a/math/liborigin/Makefile b/math/liborigin/Makefile index 6ac6776f2e8b..caa746dab38d 100644 --- a/math/liborigin/Makefile +++ b/math/liborigin/Makefile @@ -13,7 +13,7 @@ COMMENT= Library and utility for reading OriginLab project files LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING # GPLv3 -USES= compiler:c++11-lang cmake:outsource pathfix +USES= compiler:c++11-lang cmake pathfix CMAKE_ARGS= -DLIB_SUFFIX="" USE_LDCONFIG= yes diff --git a/math/libpgmath/Makefile b/math/libpgmath/Makefile index 4381d632c016..da0cae4e7842 100644 --- a/math/libpgmath/Makefile +++ b/math/libpgmath/Makefile @@ -18,7 +18,7 @@ IGNORE_FreeBSD_11= not supported on older than 12.0, no cpuid bit support BUILD_DEPENDS= llvm60>=0:devel/llvm60 RUN_DEPENDS= llvm60>=0:devel/llvm60 -USES= cmake:outsource compiler:c++11-lib +USES= cmake compiler:c++11-lib USE_LDCONFIG= yes USE_GITHUB= yes diff --git a/math/libpoly/Makefile b/math/libpoly/Makefile index 7e4f6f75a8b7..f974abd119ba 100644 --- a/math/libpoly/Makefile +++ b/math/libpoly/Makefile @@ -13,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/LICENCE LIB_DEPENDS= libgmp.so:math/gmp -USES= cmake:outsource +USES= cmake USE_GITHUB= yes GH_ACCOUNT= SRI-CSL USE_LDCONFIG= yes diff --git a/math/mathgl/Makefile b/math/mathgl/Makefile index ba100f86d5ce..3bd39ae96628 100644 --- a/math/mathgl/Makefile +++ b/math/mathgl/Makefile @@ -20,7 +20,7 @@ LIB_DEPENDS= libgif.so:graphics/giflib \ libpng.so:graphics/png \ libsz.so:science/szip -USES= cmake:outsource jpeg gettext-runtime python:2.7 +USES= cmake jpeg gettext-runtime python:2.7 USE_GL= gl glu glut USE_XORG= xi xmu USE_LDCONFIG= yes diff --git a/math/mfem/Makefile b/math/mfem/Makefile index e3688c38b283..8ca8f1d98a32 100644 --- a/math/mfem/Makefile +++ b/math/mfem/Makefile @@ -11,7 +11,7 @@ COMMENT= Lightweight, general, scalable C++ library for finite element methods LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/LICENSE -USES= cmake:outsource +USES= cmake USE_GITHUB= yes USE_LDCONFIG= yes diff --git a/math/mkl-dnn/Makefile b/math/mkl-dnn/Makefile index 9fad01a6d301..07d539777d90 100644 --- a/math/mkl-dnn/Makefile +++ b/math/mkl-dnn/Makefile @@ -15,7 +15,7 @@ BROKEN_i386= error: shift count >= width of type (and other errors), see https:/ TEST_DEPENDS= bash:shells/bash -USES= cmake:outsource +USES= cmake USE_GITHUB= yes GH_ACCOUNT= intel USE_LDCONFIG= yes diff --git a/math/mlpack/Makefile b/math/mlpack/Makefile index d9d4af0e3abf..eea72e080d94 100644 --- a/math/mlpack/Makefile +++ b/math/mlpack/Makefile @@ -16,7 +16,7 @@ LIB_DEPENDS= libboost_program_options.so:devel/boost-libs \ libboost_serialization.so:devel/boost-libs \ libarmadillo.so:math/armadillo -USES= cmake:outsource compiler:c++14-lang +USES= cmake compiler:c++14-lang CMAKE_ARGS+= -DBUILD_TESTS:BOOL=false -DBUILD_CLI_EXECUTABLES=false -DBUILD_PYTHON_BINDINGS=false USE_LDCONFIG= yes diff --git a/math/moab/Makefile b/math/moab/Makefile index a16eca56ac8c..66508fae631a 100644 --- a/math/moab/Makefile +++ b/math/moab/Makefile @@ -16,7 +16,7 @@ LIB_DEPENDS= libhdf5.so:science/hdf5 \ libnetcdf.so:science/netcdf \ libopenblas.so:math/openblas -USES= cmake:outsource,noninja eigen:3 fortran +USES= cmake:noninja eigen:3 fortran USE_LDCONFIG= yes CMAKE_ARGS= -DBLAS_LIBRARIES:STRING=${LOCALBASE}/lib/libopenblas.so -DLAPACK_LIBRARIES:STRING=${LOCALBASE}/lib/libopenblas.so diff --git a/math/mppp/Makefile b/math/mppp/Makefile index d1f71589f01a..8f046011677b 100644 --- a/math/mppp/Makefile +++ b/math/mppp/Makefile @@ -18,7 +18,7 @@ BUILD_DEPENDS= ${LOCALBASE}/include/gmp.h:math/gmp \ RUN_DEPENDS= ${LOCALBASE}/include/gmp.h:math/gmp \ ${LOCALBASE}/include/mpfr.h:math/mpfr -USES= cmake:outsource +USES= cmake USE_GITHUB= yes GH_ACCOUNT= bluescarni NO_BUILD= yes diff --git a/math/nanoflann/Makefile b/math/nanoflann/Makefile index 04915215c284..47ffaf0a7588 100644 --- a/math/nanoflann/Makefile +++ b/math/nanoflann/Makefile @@ -11,7 +11,7 @@ COMMENT= Header-only library for Nearest Neighbor (NN) search with KD-trees LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/COPYING -USES= cmake:outsource +USES= cmake USE_GITHUB= yes GH_ACCOUNT= jlblancoc diff --git a/math/octomap/Makefile b/math/octomap/Makefile index 0c65fd594812..5433032becfc 100644 --- a/math/octomap/Makefile +++ b/math/octomap/Makefile @@ -15,7 +15,7 @@ LICENSE_FILE_GPLv2= ${WRKSRC}/octovis/LICENSE.txt BUILD_DEPENDS= libQGLViewer>0:graphics/libQGLViewer # otherwise it doesn't build, see https://github.com/OctoMap/octomap/issues/225 -USES= cmake:outsource localbase:ldflags +USES= cmake localbase:ldflags USE_GITHUB= yes GH_ACCOUNT= OctoMap USE_LDCONFIG= yes diff --git a/math/openmesh/Makefile b/math/openmesh/Makefile index 15ef8f075374..fe8ec1d4f8ea 100644 --- a/math/openmesh/Makefile +++ b/math/openmesh/Makefile @@ -12,7 +12,7 @@ COMMENT= Generic data structure for manipulating polygonal meshes LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -USES= cmake:outsource dos2unix gl qt:5 +USES= cmake dos2unix gl qt:5 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 diff --git a/math/osqp/Makefile b/math/osqp/Makefile index 339281be3b61..4fc65b117375 100644 --- a/math/osqp/Makefile +++ b/math/osqp/Makefile @@ -11,7 +11,7 @@ COMMENT= Operator Splitting QP Solver LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE -USES= cmake:outsource +USES= cmake USE_GITHUB= yes GH_ACCOUNT= oxfordcontrol GH_TUPLE= oxfordcontrol:qdldl:7ab0fca:q/lin_sys/direct/qdldl/qdldl_sources diff --git a/math/pantheon-calculator/Makefile b/math/pantheon-calculator/Makefile index 2e2f2aaca702..34616412ec5d 100644 --- a/math/pantheon-calculator/Makefile +++ b/math/pantheon-calculator/Makefile @@ -19,7 +19,7 @@ BUILD_DEPENDS= valac:lang/vala LIB_DEPENDS= libgranite.so:x11-toolkits/granite \ libgee-0.8.so:devel/libgee -USES= cmake:outsource pkgconfig gettext tar:xz +USES= cmake pkgconfig gettext tar:xz USE_GNOME= glib20 gtk30 cairo gdkpixbuf2 intltool GLIB_SCHEMAS= org.pantheon.calculator.gschema.xml diff --git a/math/parmetis/Makefile b/math/parmetis/Makefile index c90a15e767ca..8d5f74c8b74a 100644 --- a/math/parmetis/Makefile +++ b/math/parmetis/Makefile @@ -16,7 +16,7 @@ LICENSE_NAME= University of Minnesota METIS License LICENSE_FILE= ${WRKSRC}/LICENSE.txt LICENSE_PERMS= auto-accept -USES= cmake:noninja gmake +USES= cmake:insource,noninja gmake USE_LDCONFIG= ${PREFIX}/lib/parmetis OPTIONS_DEFINE= OPENMPI DOCS STATIC diff --git a/math/pdal/Makefile b/math/pdal/Makefile index 68543241a603..929863e8c039 100644 --- a/math/pdal/Makefile +++ b/math/pdal/Makefile @@ -21,7 +21,7 @@ LIB_DEPENDS= libgdal.so:graphics/gdal \ liblaszip.so:archivers/laszip \ libjsoncpp.so:devel/jsoncpp -USES= cmake:outsource compiler:c++11-lib pathfix pkgconfig +USES= cmake compiler:c++11-lib pathfix pkgconfig USE_LDCONFIG= yes USE_GITHUB= yes GH_ACCOUNT= ${PORTNAME:tu} diff --git a/math/petiga/Makefile b/math/petiga/Makefile index 1eb68b98e973..d91d4b94efc5 100644 --- a/math/petiga/Makefile +++ b/math/petiga/Makefile @@ -23,7 +23,7 @@ BB_COMMIT= e2a59b1ba054 WRKSRC= ${WRKDIR}/${BB_ACCOUNT}-${BB_PROJECT}-${BB_COMMIT} -USES= cmake:outsource compiler:c++14-lang fortran +USES= cmake compiler:c++14-lang fortran USE_XORG= x11 USE_LDCONFIG= yes diff --git a/math/piranha/Makefile b/math/piranha/Makefile index 70bcc90fe566..0acd0a7cea88 100644 --- a/math/piranha/Makefile +++ b/math/piranha/Makefile @@ -18,7 +18,7 @@ LICENSE_FILE_LGPL3= ${WRKSRC}/COPYING.lgpl3 BUILD_DEPENDS= ${HEADER_DEPENDS} RUN_DEPENDS= ${HEADER_DEPENDS} -USES= cmake:outsource compiler:c++14-lang +USES= cmake compiler:c++14-lang USE_GITHUB= yes GH_ACCOUNT= bluescarni NO_BUILD= yes diff --git a/math/plplot/Makefile b/math/plplot/Makefile index d2359084d26b..f73ed3365ed8 100644 --- a/math/plplot/Makefile +++ b/math/plplot/Makefile @@ -21,7 +21,7 @@ LIB_DEPENDS= libLASi.so:devel/lasi \ RUN_DEPENDS= bash:shells/bash \ ${FREEFONT_DIR}/FreeMono.ttf:x11-fonts/freefont-ttf -USES= compiler:c11 cmake:outsource gettext-runtime ghostscript gnome \ +USES= compiler:c11 cmake gettext-runtime ghostscript gnome \ localbase perl5 pathfix pkgconfig USE_GNOME= cairo pango USE_PERL5= build diff --git a/math/py-libpoly/Makefile b/math/py-libpoly/Makefile index 537d19a1d277..76dd7cf04219 100644 --- a/math/py-libpoly/Makefile +++ b/math/py-libpoly/Makefile @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/LICENCE LIB_DEPENDS= libpoly.so:math/libpoly -USES= cmake:outsource localbase:ldflags python:2.7 +USES= cmake localbase:ldflags python:2.7 USE_GITHUB= yes GH_ACCOUNT= SRI-CSL USE_LDCONFIG= yes diff --git a/math/py-piranha/Makefile b/math/py-piranha/Makefile index ceb4c984b298..08282643fd3c 100644 --- a/math/py-piranha/Makefile +++ b/math/py-piranha/Makefile @@ -21,7 +21,7 @@ LIB_DEPENDS= libboost_iostreams.so:devel/boost-libs \ libmpfr.so:math/mpfr \ ${PY_BOOST} -USES= cmake:outsource compiler:c++14-lang python +USES= cmake compiler:c++14-lang python USE_GITHUB= yes GH_ACCOUNT= bluescarni USE_PYTHON= flavors diff --git a/math/qposases/Makefile b/math/qposases/Makefile index c56bbf1e3f6f..e6a8c2262294 100644 --- a/math/qposases/Makefile +++ b/math/qposases/Makefile @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libopenblas.so:math/openblas -USES= cmake:outsource fortran tar:tgz +USES= cmake fortran tar:tgz USE_LDCONFIG= yes CMAKE_ON= BUILD_SHARED_LIBS diff --git a/math/qtoctave/Makefile b/math/qtoctave/Makefile index 89ecba46bba0..ab7a8552a2f5 100644 --- a/math/qtoctave/Makefile +++ b/math/qtoctave/Makefile @@ -17,7 +17,7 @@ RUN_DEPENDS= octave:math/octave USE_QT= designer gui network script svg xml \ qmake_build moc_build rcc_build uic_build \ linguisttools_build -USES= cmake qt:4 +USES= cmake:insource qt:4 CMAKE_ARGS+= -DWITH_UseRPMTools:Bool=Off post-patch: diff --git a/math/rocs-kde4/Makefile b/math/rocs-kde4/Makefile index 5671f7da6efd..9e65b29815b7 100644 --- a/math/rocs-kde4/Makefile +++ b/math/rocs-kde4/Makefile @@ -13,7 +13,7 @@ EXPIRATION_DATE= 2018-12-31 LIB_DEPENDS= libboost_thread.so:devel/boost-libs -USES= cmake:outsource grantlee:4 kde:4 qt:4 tar:xz +USES= cmake grantlee:4 kde:4 qt:4 tar:xz USE_KDE= kdelibs automoc4 USE_QT= gui qtestlib script scripttools webkit xml \ moc_build qmake_build rcc_build uic_build diff --git a/math/rocs/Makefile b/math/rocs/Makefile index 6f667badc5cf..69693028ab73 100644 --- a/math/rocs/Makefile +++ b/math/rocs/Makefile @@ -9,7 +9,7 @@ COMMENT= KDE Graph theory IDE LIB_DEPENDS= libboost_thread.so:devel/boost-libs -USES= cmake:outsource compiler:c++11-lang gettext grantlee:5 kde:5 \ +USES= cmake compiler:c++11-lang gettext grantlee:5 kde:5 \ qt:5 tar:xz USE_KDE= archive auth codecs completion config configwidgets coreaddons \ crash doctools ecm i18n itemviews jobwidgets kdeclarative \ diff --git a/math/scalapack/Makefile b/math/scalapack/Makefile index 6c6d277ffab8..6e979dce3b65 100644 --- a/math/scalapack/Makefile +++ b/math/scalapack/Makefile @@ -19,7 +19,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE CONFLICTS= elmer-mathlibs-1* USE_LDCONFIG= yes -USES= cmake fortran pathfix +USES= cmake:insource fortran pathfix CMAKE_ARGS_ST= -DBUILD_STATIC_LIBS:BOOL=ON CMAKE_ARGS_SH= -DBUILD_SHARED_LIBS:BOOL=ON CMAKE_ARGS= ${CMAKE_ARGS_ST} diff --git a/math/sleef/Makefile b/math/sleef/Makefile index d31b66bad53b..2cf1f214d3d7 100644 --- a/math/sleef/Makefile +++ b/math/sleef/Makefile @@ -13,7 +13,7 @@ COMMENT= SIMD Library for Evaluating Elementary Functions, vectorized libm LICENSE= BSL LICENSE_FILE= ${WRKSRC}/LICENSE.txt -USES= cmake:outsource compiler:c11 +USES= cmake compiler:c11 USE_LDCONFIG= yes USE_GITHUB= yes diff --git a/math/speedcrunch/Makefile b/math/speedcrunch/Makefile index 3abb2a848335..b47e39eb9c80 100644 --- a/math/speedcrunch/Makefile +++ b/math/speedcrunch/Makefile @@ -13,7 +13,7 @@ COMMENT= Keyboard-oriented desktop scientific calculator LICENSE= GPLv2+ -USES= cmake:outsource qt:5 +USES= cmake qt:5 BB_ACCOUNT= heldercorreia BB_PROJECT= ${PORTNAME} diff --git a/math/stp/Makefile b/math/stp/Makefile index 4603fa6685b6..f4b0e4515a44 100644 --- a/math/stp/Makefile +++ b/math/stp/Makefile @@ -19,7 +19,7 @@ LIB_DEPENDS= libboost_program_options.so:devel/boost-libs \ libminisat.so:math/minisat \ libcryptominisat5.so:math/cryptominisat -USES= bison:build compiler:c++11-lang cmake:outsource perl5 python +USES= bison:build compiler:c++11-lang cmake perl5 python USE_GITHUB= yes USE_PERL5= build USE_LDCONFIG= yes diff --git a/math/sundials/Makefile b/math/sundials/Makefile index 04ab5b26b54d..c471900bc481 100644 --- a/math/sundials/Makefile +++ b/math/sundials/Makefile @@ -12,7 +12,7 @@ COMMENT= SUite of Nonlinear and DIfferential/ALgebraic Equation Solvers LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -USES= cmake:outsource,noninja python:build # ninja doesn't support fortran +USES= cmake:noninja python:build # ninja doesn't support fortran USE_LDCONFIG= yes CMAKE_ARGS= -DPTHREAD_ENABLE:BOOL=ON \ diff --git a/math/superlu/Makefile b/math/superlu/Makefile index 3e72072c1f1e..6c9bd5e26924 100644 --- a/math/superlu/Makefile +++ b/math/superlu/Makefile @@ -16,7 +16,7 @@ COMMENT= Library of routines for performing sparse factorization LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/License.txt -USES= cmake:outsource fortran +USES= cmake fortran USE_LDCONFIG= yes WRKSRC= ${WRKDIR}/SuperLU_${PORTVERSION} diff --git a/math/viennacl/Makefile b/math/viennacl/Makefile index 0960b924b53f..fab578c25965 100644 --- a/math/viennacl/Makefile +++ b/math/viennacl/Makefile @@ -18,6 +18,6 @@ BUILD_DEPENDS= ${LOCALBASE}/include/CL/opencl.h:devel/opencl LIB_DEPENDS= libOpenCL.so:devel/ocl-icd RUN_DEPENDS= ${LOCALBASE}/include/CL/opencl.h:devel/opencl -USES= cmake:outsource compiler:openmp localbase +USES= cmake compiler:openmp localbase .include <bsd.port.mk> diff --git a/math/vtk6/Makefile b/math/vtk6/Makefile index 1850a7a73ff1..5b0cc08dd3e4 100644 --- a/math/vtk6/Makefile +++ b/math/vtk6/Makefile @@ -26,7 +26,7 @@ LIB_DEPENDS= libtiff.so:graphics/tiff \ CONFLICTS= vtk5 vtk8 USE_LDCONFIG= ${PREFIX}/lib/vtk-${VTK_SHORT_VER} USE_XORG= xt sm ice x11 xext -USES= alias cmake:outsource jpeg +USES= alias cmake jpeg CXXFLAGS+= -I${LOCALBASE}/include VTK_SHORT_VER= ${PORTVERSION:R} diff --git a/math/vtk8/Makefile b/math/vtk8/Makefile index 6652122bbc96..60d502974b0a 100644 --- a/math/vtk8/Makefile +++ b/math/vtk8/Makefile @@ -20,7 +20,7 @@ LIB_DEPENDS= libtiff.so:graphics/tiff \ CONFLICTS= vtk5 vtk6 -USES= alias cmake:outsource compiler:c++11-lang gl jpeg localbase +USES= alias cmake compiler:c++11-lang gl jpeg localbase USE_LDCONFIG= ${PREFIX}/lib/vtk-${VTK_SHORT_VER} USE_XORG= ice x11 xt xext sm diff --git a/math/xlife++/Makefile b/math/xlife++/Makefile index ce2f668da5ec..6a9068c47afa 100644 --- a/math/xlife++/Makefile +++ b/math/xlife++/Makefile @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt BROKEN_aarch64= fails to compile: BlasUtil.h:63:63: no type named 'ReturnType' in 'Eigen::ScalarBinaryOpTraits<__attribute__ -USES= cmake:outsource eigen:3 fortran tar:tbz +USES= cmake eigen:3 fortran tar:tbz USE_LDCONFIG= yes CMAKE_OFF= XLIFEPP_ENABLE_ARPACK # should be ON, but it fails to build. Reported to their bugs ML. diff --git a/math/yacas/Makefile b/math/yacas/Makefile index 7349dccc62e0..d8d8ffe6755a 100644 --- a/math/yacas/Makefile +++ b/math/yacas/Makefile @@ -28,7 +28,7 @@ PORTDOCS= * TEST_TARGET= test -USES= cmake:outsource compiler:c++11-lib +USES= cmake compiler:c++11-lib USE_LDCONFIG= yes USE_GITHUB= yes GH_ACCOUNT= grzegorzmazur diff --git a/misc/artikulate/Makefile b/misc/artikulate/Makefile index d233a48e370f..0a94779650ab 100644 --- a/misc/artikulate/Makefile +++ b/misc/artikulate/Makefile @@ -10,7 +10,7 @@ COMMENT= Pronunciation trainer for KDE LIB_DEPENDS= libboost_thread.so:devel/boost-libs \ libQt5GStreamer-1.0.so:multimedia/gstreamer1-qt@qt5 -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= archive attica auth codecs config configwidgets coreaddons \ crash doctools ecm i18n kdeclarative newstuff service \ widgetsaddons xmlgui diff --git a/misc/bibletime/Makefile b/misc/bibletime/Makefile index 6c15a5f6ab69..b9dda2a12138 100644 --- a/misc/bibletime/Makefile +++ b/misc/bibletime/Makefile @@ -15,7 +15,7 @@ BROKEN_powerpc64= fails to compile: btosismorphsegmentation.cpp.o: undefined ref LIB_DEPENDS= libclucene-core.so:textproc/clucene \ libsword.so:misc/sword -USES= cmake:outsource qt:5 tar:xz ssl +USES= cmake qt:5 tar:xz ssl USE_QT= buildtools core dbus gui linguist_build network script svg \ webkit xml qmake_build .include <bsd.port.mk> diff --git a/misc/console-bridge/Makefile b/misc/console-bridge/Makefile index 067a6035a228..b5f8874d781d 100644 --- a/misc/console-bridge/Makefile +++ b/misc/console-bridge/Makefile @@ -10,7 +10,7 @@ COMMENT= Package for logging that seamlessly pipes into rosconsole LICENSE= BSD3CLAUSE -USES= cmake:outsource compiler:c++11-lang +USES= cmake compiler:c++11-lang USE_GITHUB= yes GH_ACCOUNT= ros GH_PROJECT= ${PORTNAME:S/-/_/} diff --git a/misc/ignition-fuel-tools/Makefile b/misc/ignition-fuel-tools/Makefile index 95551c1f27eb..9e4668101460 100644 --- a/misc/ignition-fuel-tools/Makefile +++ b/misc/ignition-fuel-tools/Makefile @@ -20,7 +20,7 @@ LIB_DEPENDS= libcurl.so:ftp/curl \ libyaml.so:textproc/libyaml \ libzip.so:archivers/libzip -USES= cmake:outsource compiler:c++17-lang pkgconfig +USES= cmake compiler:c++17-lang pkgconfig USE_LDCONFIG= yes CMAKE_OFF= BUILD_TESTING diff --git a/misc/kde-thumbnailer-chm/Makefile b/misc/kde-thumbnailer-chm/Makefile index 8380e94f4ca9..21c79e830c2e 100644 --- a/misc/kde-thumbnailer-chm/Makefile +++ b/misc/kde-thumbnailer-chm/Makefile @@ -13,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libchm.so:misc/chmlib -USES= cmake:outsource kde:5 qt:5 +USES= cmake kde:5 qt:5 USE_KDE= ecm_build kio USE_QT= buildtools_build qmake_build gui diff --git a/misc/kde-thumbnailer-epub-kde4/Makefile b/misc/kde-thumbnailer-epub-kde4/Makefile index a1efdf9d4886..0b84f4248881 100644 --- a/misc/kde-thumbnailer-epub-kde4/Makefile +++ b/misc/kde-thumbnailer-epub-kde4/Makefile @@ -16,7 +16,7 @@ EXPIRATION_DATE= 2018-12-31 PORTSCOUT= limit:^1\.0 -USES= cmake:outsource kde:4 qt:4 +USES= cmake kde:4 qt:4 USE_KDE= kdelibs automoc4 USE_QT= moc_build qmake_build rcc_build uic_build WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} diff --git a/misc/kde-thumbnailer-epub/Makefile b/misc/kde-thumbnailer-epub/Makefile index 4a32f8029fdb..0a165f6c33a8 100644 --- a/misc/kde-thumbnailer-epub/Makefile +++ b/misc/kde-thumbnailer-epub/Makefile @@ -11,7 +11,7 @@ COMMENT= KDE thumbnail generator for ePub files LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING -USES= cmake:outsource kde:5 qt:5 +USES= cmake kde:5 qt:5 USE_KDE= archive ecm_build kio USE_QT= buildtools_build qmake_build gui xmlpatterns diff --git a/misc/kde-thumbnailer-fb2-kde4/Makefile b/misc/kde-thumbnailer-fb2-kde4/Makefile index df4d44d3467c..3c5756300fb6 100644 --- a/misc/kde-thumbnailer-fb2-kde4/Makefile +++ b/misc/kde-thumbnailer-fb2-kde4/Makefile @@ -14,7 +14,7 @@ COMMENT= KDE thumbnail generator for fb2 files DEPRECATED= Qt4 has been EOL since december 2015 EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 +USES= cmake kde:4 qt:4 USE_KDE= kdelibs automoc4 USE_QT= moc_build qmake_build rcc_build uic_build WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} diff --git a/misc/kde-thumbnailer-fb2/Makefile b/misc/kde-thumbnailer-fb2/Makefile index 68e2ebbe565f..5ee84c4c3368 100644 --- a/misc/kde-thumbnailer-fb2/Makefile +++ b/misc/kde-thumbnailer-fb2/Makefile @@ -11,7 +11,7 @@ COMMENT= KDE thumbnail generator for fb2 files LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING -USES= cmake:outsource kde:5 qt:5 +USES= cmake kde:5 qt:5 USE_KDE= archive ecm_build kio USE_QT= buildtools_build qmake_build gui diff --git a/misc/kdeedu-data/Makefile b/misc/kdeedu-data/Makefile index dff312190d21..ac1e4967fdcc 100644 --- a/misc/kdeedu-data/Makefile +++ b/misc/kdeedu-data/Makefile @@ -7,7 +7,7 @@ CATEGORIES= misc kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE edu data files -USES= cmake:outsource kde:5 qt:5 tar:xz +USES= cmake kde:5 qt:5 tar:xz USE_KDE= ecm USE_QT= buildtools_build qmake_build diff --git a/misc/kf5-purpose/Makefile b/misc/kf5-purpose/Makefile index e0413035cd95..930917619301 100644 --- a/misc/kf5-purpose/Makefile +++ b/misc/kf5-purpose/Makefile @@ -10,7 +10,7 @@ COMMENT= Offers available actions for a specific purpose LIB_DEPENDS= libaccounts-qt5.so:net-im/libaccounts-qt5 \ libkaccounts.so:net-im/kaccounts-integration -USES= cmake:outsource compiler:c++11-lang gettext \ +USES= cmake compiler:c++11-lang gettext \ kde:5 pkgconfig qt:5 tar:xz USE_GNOME= intltool USE_KDE= config coreaddons ecm i18n kdeclarative kio service widgetsaddons diff --git a/misc/kgeography-kde4/Makefile b/misc/kgeography-kde4/Makefile index a7bb33371da7..b2d92e87c159 100644 --- a/misc/kgeography-kde4/Makefile +++ b/misc/kgeography-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= KDE 4 geography trainer DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs automoc4 USE_QT= xml moc_build qmake_build rcc_build uic_build diff --git a/misc/kgeography/Makefile b/misc/kgeography/Makefile index 45ba2abd3267..d8e4874aa838 100644 --- a/misc/kgeography/Makefile +++ b/misc/kgeography/Makefile @@ -7,7 +7,7 @@ CATEGORIES= misc kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE geography trainer -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons crash doctools ecm \ i18n iconthemes itemviews service widgetsaddons xmlgui USE_QT= core dbus gui widgets xml \ diff --git a/misc/klettres-kde4/Makefile b/misc/klettres-kde4/Makefile index 25cbbabcf0e3..ece7569d6ff0 100644 --- a/misc/klettres-kde4/Makefile +++ b/misc/klettres-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= Alphabet learning tool for KDE 4 DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs automoc4 USE_QT= xml moc_build qmake_build rcc_build uic_build diff --git a/misc/klettres/Makefile b/misc/klettres/Makefile index e9fac644b549..1c06af043dc0 100644 --- a/misc/klettres/Makefile +++ b/misc/klettres/Makefile @@ -7,7 +7,7 @@ CATEGORIES= misc kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Alphabet learning tool for KDE -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= attica auth codecs completion config configwidgets coreaddons \ crash doctools ecm emoticons i18n init itemmodels \ kdelibs4support newstuff service widgetsaddons xmlgui diff --git a/misc/ktouch-kde4/Makefile b/misc/ktouch-kde4/Makefile index 8a912ec9b53a..82a1886b1231 100644 --- a/misc/ktouch-kde4/Makefile +++ b/misc/ktouch-kde4/Makefile @@ -13,7 +13,7 @@ EXPIRATION_DATE= 2018-12-31 RUN_DEPENDS= ${LOCALBASE}/lib/kde4/imports/org/kde/charts/qmldir:graphics/kqtquickcharts-kde4 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs automoc4 USE_QT= corelib declarative opengl phonon script sql xmlpatterns \ moc_build qmake_build rcc_build uic_build diff --git a/misc/ktouch/Makefile b/misc/ktouch/Makefile index acaa6bfa69e6..15f0bbb7d311 100644 --- a/misc/ktouch/Makefile +++ b/misc/ktouch/Makefile @@ -7,7 +7,7 @@ CATEGORIES= misc kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Touch typing tutor for KDE -USES= cmake:outsource gettext kde:5 qt:5 tar:xz +USES= cmake gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons doctools \ ecm i18n itemviews kcmutils kdeclarative kio newstuff package \ parts service sonnet texteditor textwidgets widgetsaddons \ diff --git a/misc/kwordquiz-kde4/Makefile b/misc/kwordquiz-kde4/Makefile index 116938093fe2..25e28fa8cd1e 100644 --- a/misc/kwordquiz-kde4/Makefile +++ b/misc/kwordquiz-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= Flash card trainer for KDE 4 DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs libkeduvocdocument automoc4 USE_QT= moc_build qmake_build rcc_build uic_build diff --git a/misc/kwordquiz/Makefile b/misc/kwordquiz/Makefile index fbccf9a15861..e20cc3492797 100644 --- a/misc/kwordquiz/Makefile +++ b/misc/kwordquiz/Makefile @@ -7,7 +7,7 @@ CATEGORIES= misc kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Flash card trainer for KDE Applications -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= attica auth bookmarks codecs completion config configwidgets \ coreaddons crash doctools ecm emoticons guiaddons i18n \ iconthemes init itemmodels itemviews jobwidgets kdeclarative \ diff --git a/misc/libemos/Makefile b/misc/libemos/Makefile index f57f8a60dcab..b17b43da32ee 100644 --- a/misc/libemos/Makefile +++ b/misc/libemos/Makefile @@ -16,7 +16,7 @@ LIB_DEPENDS= libeccodes.so:science/eccodes \ libfftw3.so:math/fftw3 \ libpng16.so:graphics/png -USES= cmake:outsource,noninja fortran +USES= cmake:noninja fortran CMAKE_ON= BUILD_SHARED_LIBS # not respected: https://jira.ecmwf.int/browse/SUP-2691 diff --git a/misc/libkdeedu-kde4/Makefile b/misc/libkdeedu-kde4/Makefile index 6d9a225d58e8..e6b1496d08a9 100644 --- a/misc/libkdeedu-kde4/Makefile +++ b/misc/libkdeedu-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= Libraries used by KDE educational applications DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs automoc4 USE_QT= corelib gui xml moc_build qmake_build rcc_build uic_build USE_LDCONFIG= yes diff --git a/misc/libkeduvocdocument/Makefile b/misc/libkeduvocdocument/Makefile index a923775f7fbb..422a8e9156be 100644 --- a/misc/libkeduvocdocument/Makefile +++ b/misc/libkeduvocdocument/Makefile @@ -7,7 +7,7 @@ CATEGORIES= misc kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Library for reading and writing vocabulary files -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= archive config coreaddons ecm i18n kio service USE_QT= core gui xml \ buildtools_build qmake_build diff --git a/misc/libpredict/Makefile b/misc/libpredict/Makefile index acd2a768cbab..90ea8c11aac7 100644 --- a/misc/libpredict/Makefile +++ b/misc/libpredict/Makefile @@ -11,7 +11,7 @@ COMMENT= Satellite orbit prediction library LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING -USES= cmake:outsource +USES= cmake USE_GITHUB= yes GH_ACCOUNT= la1k USE_LDCONFIG= yes diff --git a/misc/libsweep-lidar/Makefile b/misc/libsweep-lidar/Makefile index bfb9d675468d..a417e7ea96d8 100644 --- a/misc/libsweep-lidar/Makefile +++ b/misc/libsweep-lidar/Makefile @@ -13,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE BROKEN_powerpc64= fails to compile: unrecognized command line option "-Weverything" -USES= cmake:outsource +USES= cmake USE_GITHUB= yes GH_ACCOUNT= scanse GH_PROJECT= sweep-sdk diff --git a/misc/molequeue/Makefile b/misc/molequeue/Makefile index 8f0a8224c641..6d1fde0643ea 100644 --- a/misc/molequeue/Makefile +++ b/misc/molequeue/Makefile @@ -12,7 +12,7 @@ COMMENT= Desktop integration of high performance computing resources LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/LICENSE -USES= cmake:outsource compiler:c++11-lang qt:5 +USES= cmake compiler:c++11-lang qt:5 USE_QT= core gui network widgets buildtools_build qmake_build USE_LDCONFIG= yes diff --git a/misc/morse/Makefile b/misc/morse/Makefile index fca1de1d1710..e3159e5e93b0 100644 --- a/misc/morse/Makefile +++ b/misc/morse/Makefile @@ -12,7 +12,7 @@ COMMENT= Modular OpenRobots Simulation Engine LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -USES= cmake:outsource pkgconfig python:3.4+ shebangfix +USES= cmake pkgconfig python:3.4+ shebangfix USE_GITHUB= yes GH_ACCOUNT= ${PORTNAME}-simulator SHEBANG_FILES= bin/morse_inspector diff --git a/misc/ompl/Makefile b/misc/ompl/Makefile index 8dd82cd196cb..e49314da0bfb 100644 --- a/misc/ompl/Makefile +++ b/misc/ompl/Makefile @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libboost_system.so:devel/boost-libs -USES= cmake:outsource eigen:3 pkgconfig zip +USES= cmake eigen:3 pkgconfig zip USE_LDCONFIG= yes CMAKE_OFF= OMPL_REGISTRATION OMPL_BUILD_TESTS OMPL_BUILD_DEMOS diff --git a/misc/openhmd/Makefile b/misc/openhmd/Makefile index 8840be24fbad..7944c6c2ac3e 100644 --- a/misc/openhmd/Makefile +++ b/misc/openhmd/Makefile @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libhidapi.so:comms/hidapi -USES= cmake:outsource compiler:c++11-lang +USES= cmake compiler:c++11-lang USE_GITHUB= yes USE_LDCONFIG= yes diff --git a/misc/openmvg/Makefile b/misc/openmvg/Makefile index 3d1f1f69768d..bc2ce1daa96e 100644 --- a/misc/openmvg/Makefile +++ b/misc/openmvg/Makefile @@ -18,7 +18,7 @@ LIB_DEPENDS= libflann_cpp.so:math/flann \ libpng.so:graphics/png \ libtiff.so:graphics/tiff -USES= cmake:outsource eigen:3 jpeg qt:5 +USES= cmake eigen:3 jpeg qt:5 USE_GITHUB= yes GH_ACCOUNT= openMVG GH_PROJECT= openMVG diff --git a/misc/parley-kde4/Makefile b/misc/parley-kde4/Makefile index ac369f57fd47..668427ac8b6b 100644 --- a/misc/parley-kde4/Makefile +++ b/misc/parley-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= Vocabulary trainer for KDE 4 DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_GNOME= libxml2 libxslt USE_KDE= kdelibs libkeduvocdocument attica automoc4 USE_QT= corelib gui moc_build qmake_build rcc_build uic_build diff --git a/misc/parley/Makefile b/misc/parley/Makefile index cd5ece6d378f..20e212f91c3c 100644 --- a/misc/parley/Makefile +++ b/misc/parley/Makefile @@ -10,7 +10,7 @@ COMMENT= Vocabulary trainer for KDE BUILD_DEPENDS= ${LOCALBASE}/share/xsl/docbook/html/docbook.xsl:textproc/docbook-xsl \ docbook-xml>0:textproc/docbook-xml -USES= cmake:outsource gettext kde:5 qt:5 tar:xz +USES= cmake gettext kde:5 qt:5 tar:xz USE_GNOME= libxml2 libxslt USE_KDE= attica auth codecs completion configwidgets coreaddons config \ crash doctools ecm i18n jobwidgets kcmutils kio newstuff \ diff --git a/misc/py-SoapySDR/Makefile b/misc/py-SoapySDR/Makefile index b674657684b6..20a88ef34eb0 100644 --- a/misc/py-SoapySDR/Makefile +++ b/misc/py-SoapySDR/Makefile @@ -16,7 +16,7 @@ LICENSE_FILE= ${WRKSRC}/../LICENSE_1_0.txt BUILD_DEPENDS= swig3.0:devel/swig30 LIB_DEPENDS= libSoapySDR.so:misc/soapysdr -USES= cmake:outsource compiler:c++11-lang gettext-runtime python +USES= cmake compiler:c++11-lang gettext-runtime python USE_GITHUB= yes GH_ACCOUNT= pothosware USE_PYTHON= flavors diff --git a/misc/py-molequeue/Makefile b/misc/py-molequeue/Makefile index 9979f17dc4bf..0585a1144d55 100644 --- a/misc/py-molequeue/Makefile +++ b/misc/py-molequeue/Makefile @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/../LICENSE RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pyzmq>0:net/py-pyzmq@${PY_FLAVOR} -USES= cmake:outsource compiler:c++11-lang python +USES= cmake compiler:c++11-lang python USE_PYTHON= flavors WRKSRC_SUBDIR= python diff --git a/misc/raspberrypi-userland/Makefile b/misc/raspberrypi-userland/Makefile index ca2c67c3ab0e..7b514276cd20 100644 --- a/misc/raspberrypi-userland/Makefile +++ b/misc/raspberrypi-userland/Makefile @@ -14,7 +14,7 @@ ONLY_FOR_ARCHS= armv6 armv7 CONFLICTS_INSTALL= mesa-libs -USES= cmake:outsource pkgconfig shebangfix +USES= cmake pkgconfig shebangfix USE_LDCONFIG= yes diff --git a/misc/sdformat/Makefile b/misc/sdformat/Makefile index 15e71188a517..7838be717ff1 100644 --- a/misc/sdformat/Makefile +++ b/misc/sdformat/Makefile @@ -19,7 +19,7 @@ LIB_DEPENDS= libignition-math6.so:math/ignition-math \ liburdfdom_world.so:misc/urdfdom RUN_DEPENDS= ignition-tools>0:devel/ignition-tools -USES= cmake:outsource compiler:c++17-lang pkgconfig +USES= cmake compiler:c++17-lang pkgconfig USE_LDCONFIG= yes CMAKE_OFF= BUILD_TESTING diff --git a/misc/soapysdr/Makefile b/misc/soapysdr/Makefile index f59661b15e81..a2bded3af9b8 100644 --- a/misc/soapysdr/Makefile +++ b/misc/soapysdr/Makefile @@ -12,7 +12,7 @@ COMMENT= Vendor and platform neutral SDR support library LICENSE= BSL LICENSE_FILE= ${WRKSRC}/LICENSE_1_0.txt -USES= cmake:outsource compiler:c++11-lang +USES= cmake compiler:c++11-lang USE_GITHUB= yes GH_ACCOUNT= pothosware USE_LDCONFIG= yes diff --git a/misc/urdfdom-headers/Makefile b/misc/urdfdom-headers/Makefile index 5d4821842244..86671dfb3b05 100644 --- a/misc/urdfdom-headers/Makefile +++ b/misc/urdfdom-headers/Makefile @@ -10,7 +10,7 @@ COMMENT= Unified Robot Description Format (URDF) parser headers LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -USES= cmake:outsource +USES= cmake USE_GITHUB= yes GH_ACCOUNT= ros GH_PROJECT= ${PORTNAME:S/-/_/} diff --git a/misc/urdfdom/Makefile b/misc/urdfdom/Makefile index 6bfbdde21d13..691ce5440484 100644 --- a/misc/urdfdom/Makefile +++ b/misc/urdfdom/Makefile @@ -17,7 +17,7 @@ LIB_DEPENDS= libconsole_bridge.so:misc/console-bridge \ libtinyxml.so:textproc/tinyxml RUN_DEPENDS= urdfdom-headers>0:misc/urdfdom-headers -USES= compiler:c++11-lang cmake:outsource +USES= compiler:c++11-lang cmake USE_GITHUB= yes GH_ACCOUNT= ros USE_LDCONFIG= yes diff --git a/misc/visp/Makefile b/misc/visp/Makefile index 77b27c9545c8..acc4ea319089 100644 --- a/misc/visp/Makefile +++ b/misc/visp/Makefile @@ -21,7 +21,7 @@ LIB_DEPENDS= libblas.so:math/blas \ libpng16.so:graphics/png \ libv4l2.so:multimedia/libv4l -USES= cmake:outsource eigen:3 fortran jpeg +USES= cmake eigen:3 fortran jpeg USE_GNOME= libxml2 USE_XORG= ice sm x11 xext USE_LDCONFIG= yes diff --git a/multimedia/Bento4/Makefile b/multimedia/Bento4/Makefile index de1058bcf8d1..6d4669bb3aa7 100644 --- a/multimedia/Bento4/Makefile +++ b/multimedia/Bento4/Makefile @@ -13,7 +13,7 @@ LICENSE= GPLv2 BROKEN_aarch64= fails to compile: Ap4AesBlockCipher.cpp:93:4: AP4_PLATFORM_BYTE_ORDER is not set -USES= cmake:outsource,noninja +USES= cmake:noninja USE_GITHUB= yes GH_ACCOUNT= axiomatic-systems diff --git a/multimedia/aom/Makefile b/multimedia/aom/Makefile index 7ae26810e8b8..ef62c2263472 100644 --- a/multimedia/aom/Makefile +++ b/multimedia/aom/Makefile @@ -16,7 +16,7 @@ BUILD_DEPENDS= ${BUILD_DEPENDS_${ARCH}} BUILD_DEPENDS_amd64= nasm:devel/nasm BUILD_DEPENDS_i386= nasm:devel/nasm -USES= cmake:outsource compiler:c++11-lib perl5 +USES= cmake compiler:c++11-lib perl5 USE_GITHUB= yes USE_PERL5= build USE_LDCONFIG= yes diff --git a/multimedia/avidemux/Makefile.common b/multimedia/avidemux/Makefile.common index bea57244f641..4a84b346cbe5 100644 --- a/multimedia/avidemux/Makefile.common +++ b/multimedia/avidemux/Makefile.common @@ -17,7 +17,7 @@ USE_GNOME= libxml2 OPTIONS_FILE= ${PORT_DBDIR}/${OPTIONS_NAME:C/-.*//}/options -USES= cmake:outsource,noninja pkgconfig iconv gmake compiler:features sqlite +USES= cmake:noninja pkgconfig iconv gmake compiler:features sqlite USES+= dos2unix DOS2UNIX_FILES= cmake/admCheckMiscLibs.cmake \ avidemux_core/ADM_coreVideoCodec/include/ADM_coreVideoCodec6_export.h \ diff --git a/multimedia/bcmatroska2/Makefile b/multimedia/bcmatroska2/Makefile index eee40b87ee84..8179f53f3b94 100644 --- a/multimedia/bcmatroska2/Makefile +++ b/multimedia/bcmatroska2/Makefile @@ -8,7 +8,7 @@ MASTER_SITES= https://www.linphone.org/releases/sources/bcmatroska2/ MAINTAINER= ports@FreeBSD.org COMMENT= Belledonne Communications Matroska media container support -USES= cmake:outsource +USES= cmake USE_LDCONFIG= yes CMAKE_ARGS= -DENABLE_STATIC=NO diff --git a/multimedia/ccextractor/Makefile b/multimedia/ccextractor/Makefile index 8bc878016474..a6a0e10dbf92 100644 --- a/multimedia/ccextractor/Makefile +++ b/multimedia/ccextractor/Makefile @@ -29,7 +29,7 @@ LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \ libx265.so:multimedia/x265 \ libxvidcore.so:multimedia/xvid -USES= cmake:outsource iconv localbase:ldflags pkgconfig +USES= cmake iconv localbase:ldflags pkgconfig USE_GITHUB= yes GH_ACCOUNT= CCExtractor USE_XORG= x11 diff --git a/multimedia/chilitags/Makefile b/multimedia/chilitags/Makefile index 0a190f1a74ce..51593993cbef 100644 --- a/multimedia/chilitags/Makefile +++ b/multimedia/chilitags/Makefile @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/gpl.txt LIB_DEPENDS= libopencv_imgproc.so:graphics/opencv-core \ libopencv_video.so:graphics/opencv -USES= cmake:outsource compiler:c++11-lang +USES= cmake compiler:c++11-lang USE_GITHUB= yes GH_ACCOUNT= chili-epfl USE_LDCONFIG= yes diff --git a/multimedia/dragon-kde4/Makefile b/multimedia/dragon-kde4/Makefile index 258b0919e544..24a6acf5613e 100644 --- a/multimedia/dragon-kde4/Makefile +++ b/multimedia/dragon-kde4/Makefile @@ -14,7 +14,7 @@ EXPIRATION_DATE= 2018-12-31 LICENSE= GPLv2 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= automoc4 kdelibs USE_QT= phonon moc_build qmake_build rcc_build uic_build diff --git a/multimedia/dragon/Makefile b/multimedia/dragon/Makefile index f218fdaeaa86..2e6bc585f233 100644 --- a/multimedia/dragon/Makefile +++ b/multimedia/dragon/Makefile @@ -10,7 +10,7 @@ COMMENT= KDE multimedia player with a focus on simplicity LICENSE= GPLv2 -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons crash \ dbusaddons doctools ecm kio service sonnet textwidgets i18n \ iconthemes jobwidgets notifications parts solid widgetsaddons \ diff --git a/multimedia/ffmpegthumbnailer/Makefile b/multimedia/ffmpegthumbnailer/Makefile index 4d360f025a54..4ea4e76c3c24 100644 --- a/multimedia/ffmpegthumbnailer/Makefile +++ b/multimedia/ffmpegthumbnailer/Makefile @@ -18,7 +18,7 @@ LIB_DEPENDS= libpng.so:graphics/png \ USE_GITHUB= yes GH_ACCOUNT= dirkvdb -USES= cmake:outsource compiler:c++11-lib jpeg localbase pathfix pkgconfig +USES= cmake compiler:c++11-lib jpeg localbase pathfix pkgconfig USE_GNOME= glib20 USE_LDCONFIG= yes diff --git a/multimedia/gmmlib/Makefile b/multimedia/gmmlib/Makefile index a75e5d5460c8..7e682068a743 100644 --- a/multimedia/gmmlib/Makefile +++ b/multimedia/gmmlib/Makefile @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.md ONLY_FOR_ARCHS= amd64 i386 ONLY_FOR_ARCHS_REASON= Only Intel GPUs on x86 are supported -USES= cmake:outsource compiler:c++11-lib +USES= cmake compiler:c++11-lib USE_GITHUB= yes USE_LDCONFIG= yes GH_ACCOUNT= intel diff --git a/multimedia/gstreamer1-qt/Makefile b/multimedia/gstreamer1-qt/Makefile index 71f266e48435..db551442db1c 100644 --- a/multimedia/gstreamer1-qt/Makefile +++ b/multimedia/gstreamer1-qt/Makefile @@ -19,7 +19,7 @@ FLAVOR?= ${FLAVORS:[1]} CONFLICTS_INSTALL= gstreamer${PKGNAMESUFFIX}-* -USES= bison cmake:outsource gl gnome pathfix pkgconfig tar:xz +USES= bison cmake gl gnome pathfix pkgconfig tar:xz USE_GSTREAMER1= yes USE_GL= gl diff --git a/multimedia/kamoso/Makefile b/multimedia/kamoso/Makefile index 2a2c815f43d3..5a4083a44594 100644 --- a/multimedia/kamoso/Makefile +++ b/multimedia/kamoso/Makefile @@ -9,7 +9,7 @@ COMMENT= Application to take pictures and videos out of your webcam LICENSE= GPLv2 -USES= cmake:outsource gettext kde:5 pkgconfig qt:5 tar:xz +USES= cmake gettext kde:5 pkgconfig qt:5 tar:xz USE_GNOME= glib20 USE_GSTREAMER1= yes USE_KDE= auth bookmarks codecs completion config configwidgets \ diff --git a/multimedia/kdemultimedia-ffmpegthumbs-kde4/Makefile b/multimedia/kdemultimedia-ffmpegthumbs-kde4/Makefile index c4f3f231431b..69e40d342d75 100644 --- a/multimedia/kdemultimedia-ffmpegthumbs-kde4/Makefile +++ b/multimedia/kdemultimedia-ffmpegthumbs-kde4/Makefile @@ -18,7 +18,7 @@ EXPIRATION_DATE= 2018-12-31 LIB_DEPENDS= libswscale.so:multimedia/ffmpeg -USES= cmake:outsource kde:4 pkgconfig qt:4 tar:xz +USES= cmake kde:4 pkgconfig qt:4 tar:xz USE_KDE= automoc4 kdelibs USE_QT= moc_build qmake_build rcc_build uic_build \ corelib dbus gui network svg xml diff --git a/multimedia/kdemultimedia-ffmpegthumbs/Makefile b/multimedia/kdemultimedia-ffmpegthumbs/Makefile index 7cdc8652acab..09b6ef733399 100644 --- a/multimedia/kdemultimedia-ffmpegthumbs/Makefile +++ b/multimedia/kdemultimedia-ffmpegthumbs/Makefile @@ -12,7 +12,7 @@ LICENSE= GPLv2 LIB_DEPENDS= libswscale.so:multimedia/ffmpeg -USES= cmake:outsource compiler:c++11-lang kde:5 pkgconfig qt:5 tar:xz +USES= cmake compiler:c++11-lang kde:5 pkgconfig qt:5 tar:xz USE_KDE= completion config coreaddons i18n jobwidgets kio service widgetsaddons USE_QT= core dbus gui network widgets xml \ buildtools_build qmake_build diff --git a/multimedia/kdemultimedia-mplayerthumbs-kde4/Makefile b/multimedia/kdemultimedia-mplayerthumbs-kde4/Makefile index c9d8ca1e72fe..d69586b0677c 100644 --- a/multimedia/kdemultimedia-mplayerthumbs-kde4/Makefile +++ b/multimedia/kdemultimedia-mplayerthumbs-kde4/Makefile @@ -18,7 +18,7 @@ EXPIRATION_DATE= 2018-12-31 RUN_DEPENDS= mplayer:multimedia/mplayer -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= automoc4 kdelibs USE_QT= phonon moc_build qmake_build rcc_build uic_build diff --git a/multimedia/kdenlive/Makefile b/multimedia/kdenlive/Makefile index ba0fe4991e21..55a97437f14e 100644 --- a/multimedia/kdenlive/Makefile +++ b/multimedia/kdenlive/Makefile @@ -15,7 +15,7 @@ BUILD_DEPENDS= ${LOCALBASE}/include/linux/input.h:devel/evdev-proto RUN_DEPENDS= ffmpeg${FFMPEG_SUFX}:multimedia/ffmpeg${FFMPEG_SUFX} \ ${LOCALBASE}/lib/mlt/libmltqt.so:multimedia/mlt-qt5 -USES= cmake:outsource desktop-file-utils gettext-tools pkgconfig \ +USES= cmake desktop-file-utils gettext-tools pkgconfig \ qt:5 shared-mime-info kde:5 tar:xz USE_GL= gl glu USE_KDE= archive attica auth bookmarks codecs completion config \ diff --git a/multimedia/kf5-kmediaplayer/Makefile b/multimedia/kf5-kmediaplayer/Makefile index 96eb7e405763..f9250feffe2c 100644 --- a/multimedia/kf5-kmediaplayer/Makefile +++ b/multimedia/kf5-kmediaplayer/Makefile @@ -7,7 +7,7 @@ CATEGORIES= multimedia kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 plugin interface for media player features -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons \ ecm i18n jobwidgets kio parts service sonnet textwidgets \ widgetsaddons xmlgui diff --git a/multimedia/kmplayer-kde4/Makefile b/multimedia/kmplayer-kde4/Makefile index 39bedab8d6e1..1b5bfaebbb83 100644 --- a/multimedia/kmplayer-kde4/Makefile +++ b/multimedia/kmplayer-kde4/Makefile @@ -27,7 +27,7 @@ LIB_DEPENDS= libdbus-1.so:devel/dbus \ libfontconfig.so:x11-fonts/fontconfig RUN_DEPENDS= mplayer:multimedia/mplayer -USES= cmake:outsource gettext-runtime kde:4 pkgconfig qt:4 +USES= cmake gettext-runtime kde:4 pkgconfig qt:4 USE_GNOME= cairo gdkpixbuf2 gtk20 USE_QT= corelib dbus gui network svg xml \ moc_build qmake_build rcc_build uic_build diff --git a/multimedia/kodi-addon-peripheral-joystick/Makefile b/multimedia/kodi-addon-peripheral-joystick/Makefile index c6405394c3f2..9f3de91e24f3 100644 --- a/multimedia/kodi-addon-peripheral-joystick/Makefile +++ b/multimedia/kodi-addon-peripheral-joystick/Makefile @@ -17,7 +17,7 @@ LIB_DEPENDS= libp8-platform.so:devel/p8-platform \ libudev.so:devel/libudev-devd RUN_DEPENDS= kodi:multimedia/kodi -USES= cmake:outsource,noninja +USES= cmake:noninja USE_GITHUB= yes GH_ACCOUNT= xbmc diff --git a/multimedia/kodi-addon-pvr-hts/Makefile b/multimedia/kodi-addon-pvr-hts/Makefile index 57f77339c7fd..fc6631a1a924 100644 --- a/multimedia/kodi-addon-pvr-hts/Makefile +++ b/multimedia/kodi-addon-pvr-hts/Makefile @@ -15,7 +15,7 @@ LIB_DEPENDS= libp8-platform.so:devel/p8-platform \ libkodiplatform.so:devel/kodi-platform RUN_DEPENDS= kodi:multimedia/kodi -USES= cmake:outsource,noninja +USES= cmake:noninja USE_GITHUB= yes GH_ACCOUNT= kodi-pvr diff --git a/multimedia/kodi-addon-pvr-iptvsimple/Makefile b/multimedia/kodi-addon-pvr-iptvsimple/Makefile index aa2d966e6bce..939bc287560b 100644 --- a/multimedia/kodi-addon-pvr-iptvsimple/Makefile +++ b/multimedia/kodi-addon-pvr-iptvsimple/Makefile @@ -16,7 +16,7 @@ LIB_DEPENDS= libp8-platform.so:devel/p8-platform \ libkodiplatform.so:devel/kodi-platform RUN_DEPENDS= kodi:multimedia/kodi -USES= cmake:outsource,noninja +USES= cmake:noninja USE_GITHUB= yes GH_ACCOUNT= kodi-pvr diff --git a/multimedia/kodi-devel/Makefile b/multimedia/kodi-devel/Makefile index 3d0cf54466ad..30c7036a7cae 100644 --- a/multimedia/kodi-devel/Makefile +++ b/multimedia/kodi-devel/Makefile @@ -49,7 +49,7 @@ LIB_DEPENDS= libass.so:multimedia/libass \ # Building libcpluff.a requires autoreconf and gmake. Using ninja # leads to dependency problems where libcpluff.a is not yet finished # building when it's required. -USES= autoreconf:build cmake:outsource,noninja compiler:c++11-lib \ +USES= autoreconf:build cmake:noninja compiler:c++11-lib \ gettext gmake gnome iconv:wchar_t jpeg libtool pkgconfig \ python:2.7 ssl sqlite USE_GITHUB= yes diff --git a/multimedia/kplayer-kde4/Makefile b/multimedia/kplayer-kde4/Makefile index 14a428a95e2b..14afadadaa86 100644 --- a/multimedia/kplayer-kde4/Makefile +++ b/multimedia/kplayer-kde4/Makefile @@ -15,7 +15,7 @@ EXPIRATION_DATE= 2018-12-31 RUN_DEPENDS= mplayer:multimedia/mplayer -USES= cmake gettext kde:4 qt:4 tar:bzip2 +USES= cmake:insource gettext kde:4 qt:4 tar:bzip2 USE_QT= corelib qmake_build moc_build rcc_build uic_build USE_KDE= kdelibs automoc4 LDFLAGS+= -L${LOCALBASE}/lib -lX11 -L${LOCALBASE}/kde4/lib -lsolid diff --git a/multimedia/libuvc/Makefile b/multimedia/libuvc/Makefile index 01c54c7e5f12..31bfcde11e1f 100644 --- a/multimedia/libuvc/Makefile +++ b/multimedia/libuvc/Makefile @@ -11,7 +11,7 @@ COMMENT= Cross-platform library for USB video devices LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE.txt -USES= cmake:outsource jpeg pkgconfig +USES= cmake jpeg pkgconfig USE_GITHUB= yes GH_ACCOUNT= ktossell diff --git a/multimedia/libva-intel-media-driver/Makefile b/multimedia/libva-intel-media-driver/Makefile index 67d627367788..5d249b2357b1 100644 --- a/multimedia/libva-intel-media-driver/Makefile +++ b/multimedia/libva-intel-media-driver/Makefile @@ -21,7 +21,7 @@ LIB_DEPENDS= libpciaccess.so:devel/libpciaccess \ libigdgmm.so:multimedia/gmmlib \ libva.so:multimedia/libva -USES= cmake:outsource compiler:c++11-lib pkgconfig +USES= cmake compiler:c++11-lib pkgconfig USE_GITHUB= yes GH_ACCOUNT= intel ARCH_SUFX= ${ARCH:S/i386/32/:S/amd//:S/x86_//} diff --git a/multimedia/msopenh264/Makefile b/multimedia/msopenh264/Makefile index fc37670a2e4c..d7b8d90aed93 100644 --- a/multimedia/msopenh264/Makefile +++ b/multimedia/msopenh264/Makefile @@ -15,7 +15,7 @@ LIB_DEPENDS= libmediastreamer_base.so:net/mediastreamer \ libopenh264.so:multimedia/openh264 \ libortp.so:net/ortp -USES= cmake:outsource +USES= cmake CMAKE_ARGS= -DENABLE_STATIC=NO PLIST_FILES= lib/mediastreamer/plugins/libmsopenh264.so diff --git a/multimedia/mswebrtc/Makefile b/multimedia/mswebrtc/Makefile index 642cbeb554a6..b70099833c51 100644 --- a/multimedia/mswebrtc/Makefile +++ b/multimedia/mswebrtc/Makefile @@ -16,7 +16,7 @@ LIB_DEPENDS= libbctoolbox.so:net/bctoolbox \ libmediastreamer_base.so:net/mediastreamer \ libortp.so:net/ortp -USES= cmake:outsource compiler:c++11-lib +USES= cmake compiler:c++11-lib CMAKE_ARGS= -DENABLE_STATIC=NO PLIST_FILES= lib/mediastreamer/plugins/libmswebrtc.so diff --git a/multimedia/nordlicht/Makefile b/multimedia/nordlicht/Makefile index e4f70c2ce03f..3328e8365c54 100644 --- a/multimedia/nordlicht/Makefile +++ b/multimedia/nordlicht/Makefile @@ -22,7 +22,7 @@ LIB_DEPENDS= libavcodec.so:multimedia/ffmpeg \ USE_GITHUB= yes -USES= cmake:outsource pkgconfig shebangfix +USES= cmake pkgconfig shebangfix USE_LDCONFIG= yes PLIST_SUB= PORTVERSION=${PORTVERSION} diff --git a/multimedia/obs-studio/Makefile b/multimedia/obs-studio/Makefile index e44439de65d3..19eebde35cce 100644 --- a/multimedia/obs-studio/Makefile +++ b/multimedia/obs-studio/Makefile @@ -35,7 +35,7 @@ LIB_DEPENDS= libavcodec.so:multimedia/ffmpeg \ libv4l2.so:multimedia/libv4l \ libx264.so:multimedia/libx264 -USES= cmake:outsource compiler:c++11-lib lua pkgconfig python:3.4+ qt:5 +USES= cmake compiler:c++11-lib lua pkgconfig python:3.4+ qt:5 USE_GITHUB= yes GH_ACCOUNT= obsproject USE_QT= core gui widgets x11extras buildtools_build imageformats_run qmake_build diff --git a/multimedia/phonon-designerplugin/Makefile b/multimedia/phonon-designerplugin/Makefile index 669de2e013bd..4117f428a059 100644 --- a/multimedia/phonon-designerplugin/Makefile +++ b/multimedia/phonon-designerplugin/Makefile @@ -18,7 +18,7 @@ FLAVOR?= ${FLAVORS:[1]} qt4_PKGNAMESUFFIX= -designerplugin-qt4 qt5_PKGNAMESUFFIX= -designerplugin-qt5 -USES= cmake tar:xz +USES= cmake:insource tar:xz . if ${FLAVOR} == qt4 DEPRECATED= Qt4 has been EOL since december 2015 diff --git a/multimedia/phonon-vlc/Makefile b/multimedia/phonon-vlc/Makefile index c75a2f7a2fc1..aaea70f4bd64 100644 --- a/multimedia/phonon-vlc/Makefile +++ b/multimedia/phonon-vlc/Makefile @@ -21,7 +21,7 @@ FLAVOR?= ${FLAVORS:[1]} qt4_LIB_DEPENDS= libvlc.so:multimedia/vlc-qt4 qt5_LIB_DEPENDS= libvlc.so:multimedia/vlc3 -USES= cmake:outsource pkgconfig tar:xz +USES= cmake pkgconfig tar:xz . if ${FLAVOR} == qt4 DEPRECATED= Qt4 has been EOL since december 2015 diff --git a/multimedia/qmmp-plugin-pack-qt5/Makefile b/multimedia/qmmp-plugin-pack-qt5/Makefile index 527808543cc3..5b05831c7c69 100644 --- a/multimedia/qmmp-plugin-pack-qt5/Makefile +++ b/multimedia/qmmp-plugin-pack-qt5/Makefile @@ -20,7 +20,7 @@ BUILD_DEPENDS= qmmp-qt5>=1.2.0:multimedia/qmmp-qt5 CONFLICTS= ${PORTNAME}-0.* PORTSCOUT= limit:^1\..* -USES= cmake:outsource pkgconfig qt:5 tar:bzip2 +USES= cmake pkgconfig qt:5 tar:bzip2 USE_QT= core gui widgets \ buildtools_build linguisttools_build qmake_build USE_LDCONFIG= yes diff --git a/multimedia/qmmp-plugin-pack/Makefile b/multimedia/qmmp-plugin-pack/Makefile index d28e510273cc..4013dc51eaec 100644 --- a/multimedia/qmmp-plugin-pack/Makefile +++ b/multimedia/qmmp-plugin-pack/Makefile @@ -22,7 +22,7 @@ BUILD_DEPENDS= qmmp>=0.11.0:multimedia/qmmp CONFLICTS= ${PORTNAME}-qt5-1.* PORTSCOUT= limit:^0.* -USES= cmake:outsource localbase pkgconfig qt:4 tar:bzip2 +USES= cmake localbase pkgconfig qt:4 tar:bzip2 USE_QT= corelib gui linguisttools_build moc_build qmake_build rcc_build USE_LDCONFIG= yes diff --git a/multimedia/qmmp-qt5/Makefile b/multimedia/qmmp-qt5/Makefile index 98acecd5a76b..acfe188c73d5 100644 --- a/multimedia/qmmp-qt5/Makefile +++ b/multimedia/qmmp-qt5/Makefile @@ -17,7 +17,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING CONFLICTS= ${PORTNAME}-0.* PORTSCOUT= limit:^1\..* -USES= cmake:outsource pathfix pkgconfig qt:5 tar:bzip2 +USES= cmake pathfix pkgconfig qt:5 tar:bzip2 USE_QT= core gui network widgets xml \ buildtools_build linguisttools_build qmake_build USE_LDCONFIG= yes diff --git a/multimedia/qmmp/Makefile b/multimedia/qmmp/Makefile index a9da8962d9f3..5af4f088b70a 100644 --- a/multimedia/qmmp/Makefile +++ b/multimedia/qmmp/Makefile @@ -19,7 +19,7 @@ EXPIRATION_DATE= 2019-03-15 CONFLICTS= ${PORTNAME}-qt5-1.* PORTSCOUT= limit:^0.* -USES= cmake:outsource localbase pathfix pkgconfig qt:4 tar:bzip2 +USES= cmake localbase pathfix pkgconfig qt:4 tar:bzip2 USE_QT= corelib gui network xml \ linguisttools_build moc_build qmake_build rcc_build uic_build USE_LDCONFIG= yes diff --git a/multimedia/simplescreenrecorder/Makefile b/multimedia/simplescreenrecorder/Makefile index a21209756c74..e08e97e9ff8f 100644 --- a/multimedia/simplescreenrecorder/Makefile +++ b/multimedia/simplescreenrecorder/Makefile @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libasound.so:audio/alsa-lib \ libavformat.so:multimedia/ffmpeg -USES= cmake:outsource pkgconfig qt:5 +USES= cmake pkgconfig qt:5 USE_GITHUB= yes GH_ACCOUNT= MaartenBaert GH_PROJECT= ssr diff --git a/multimedia/subtitlecomposer-kde4/Makefile b/multimedia/subtitlecomposer-kde4/Makefile index 032e0cdc1c53..163fb02bb8da 100644 --- a/multimedia/subtitlecomposer-kde4/Makefile +++ b/multimedia/subtitlecomposer-kde4/Makefile @@ -17,7 +17,7 @@ CONFLICTS_INSTALL= subtitlecomposer-* LIB_DEPENDS= libicui18n.so:devel/icu -USES= cmake:outsource gettext kde:4 qt:4 shared-mime-info +USES= cmake gettext kde:4 qt:4 shared-mime-info USE_KDE= kdelibs automoc4 USE_QT= qmake_build moc_build rcc_build uic_build phonon USE_CXXSTD= gnu++98 diff --git a/multimedia/subtitlecomposer/Makefile b/multimedia/subtitlecomposer/Makefile index 8533b0b62549..ff951b02d65e 100644 --- a/multimedia/subtitlecomposer/Makefile +++ b/multimedia/subtitlecomposer/Makefile @@ -17,7 +17,7 @@ LIB_DEPENDS= libicui18n.so:devel/icu \ CONFLICTS_INSTALL= subtitlecomposer-kde4-* -USES= compiler:c++11-lang cmake:outsource desktop-file-utils gettext \ +USES= compiler:c++11-lang cmake desktop-file-utils gettext \ kde:5 pkgconfig qt:5 shared-mime-info USE_KDE= auth codecs config configwidgets coreaddons ecm_build i18n \ kio kross sonnet textwidgets widgetsaddons xmlgui diff --git a/multimedia/vtkmpeg2encode/Makefile b/multimedia/vtkmpeg2encode/Makefile index 63aa1bb97dea..df65eecd886e 100644 --- a/multimedia/vtkmpeg2encode/Makefile +++ b/multimedia/vtkmpeg2encode/Makefile @@ -16,7 +16,7 @@ LICENSE_NAME= MPEG-2 license LICENSE_FILE= ${WRKSRC}/mpeg2enc.h LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept -USES= cmake +USES= cmake:insource USE_LDCONFIG= yes CMAKE_ARGS?= -DBUILD_SHARED_LIBS:BOOL=ON VTK_VERSION= 5.10.1 diff --git a/multimedia/zoneminder-h264/Makefile b/multimedia/zoneminder-h264/Makefile index 2e3b6f781c9f..12a38bb97943 100644 --- a/multimedia/zoneminder-h264/Makefile +++ b/multimedia/zoneminder-h264/Makefile @@ -44,7 +44,7 @@ USE_GITHUB= yes GH_TUPLE= zoneminder:ZoneMinder:e723b6d \ FriendsOfCake:crud:c3976f1:crud -USES= cmake:noninja jpeg mysql perl5 php shebangfix ssl +USES= cmake:insource,noninja jpeg mysql perl5 php shebangfix ssl USE_RC_SUBR= zoneminder USE_PHP= json pdo_mysql session gd sockets ctype diff --git a/multimedia/zoneminder/Makefile b/multimedia/zoneminder/Makefile index 6fa950742382..e768a7161ec9 100644 --- a/multimedia/zoneminder/Makefile +++ b/multimedia/zoneminder/Makefile @@ -35,7 +35,7 @@ RUN_DEPENDS= ${ZM_DEPENDS} \ p5-Device-SerialPort>=0:comms/p5-Device-SerialPort \ zip:archivers/zip -USES= cmake:noninja jpeg mysql perl5 php shebangfix ssl +USES= cmake:insource,noninja jpeg mysql perl5 php shebangfix ssl USE_GITHUB= yes GH_PROJECT= zoneminder GH_TUPLE= zoneminder:crud:0bd63fb:crud \ diff --git a/net-im/kaccounts-integration/Makefile b/net-im/kaccounts-integration/Makefile index 790e38119c33..c33f9d0b67bf 100644 --- a/net-im/kaccounts-integration/Makefile +++ b/net-im/kaccounts-integration/Makefile @@ -14,7 +14,7 @@ LIB_DEPENDS= libaccounts-glib.so:net-im/libaccounts-glib \ libkeyring-kwallet.so:sysutils/signon-kwallet-extension RUN_DEPENDS= signon-ui:sysutils/signon-ui -USES= cmake:outsource compiler:c++11-lang gettext pkgconfig kde:5 \ +USES= cmake compiler:c++11-lang gettext pkgconfig kde:5 \ qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons dbusaddons ecm \ i18n iconthemes kcmutils kio service wallet widgetsaddons \ diff --git a/net-im/kaccounts-providers/Makefile b/net-im/kaccounts-providers/Makefile index c2a58c1dfb64..a328507ae07e 100644 --- a/net-im/kaccounts-providers/Makefile +++ b/net-im/kaccounts-providers/Makefile @@ -12,7 +12,7 @@ LIB_DEPENDS= libaccounts-glib.so:net-im/libaccounts-glib \ libaccounts-qt5.so:net-im/libaccounts-qt5 \ libsignon-qt5.so:sysutils/signon-qt5 -USES= cmake:outsource compiler:c++11-lang gettext gnome kde:5 \ +USES= cmake compiler:c++11-lang gettext gnome kde:5 \ pkgconfig qt:5 tar:xz USE_GNOME= intltool USE_KDE= config coreaddons i18n kdeclarative kio package service diff --git a/net-im/kopete-kde4/Makefile b/net-im/kopete-kde4/Makefile index 6e1f2fb09f84..ed7d99432e52 100644 --- a/net-im/kopete-kde4/Makefile +++ b/net-im/kopete-kde4/Makefile @@ -21,7 +21,7 @@ LIB_DEPENDS= libidn.so:dns/libidn \ libjasper.so:graphics/jasper BUILD_DEPENDS= ${LOCALBASE}/include/linux/videodev2.h:multimedia/v4l_compat -USES= cmake:outsource jpeg kde:4 pkgconfig qt:4 shebangfix sqlite tar:xz \ +USES= cmake jpeg kde:4 pkgconfig qt:4 shebangfix sqlite tar:xz \ webplugin:native USE_GNOME= libxml2 libxslt USE_KDE= kdelibs pimlibs \ diff --git a/net-im/kopete/Makefile b/net-im/kopete/Makefile index 2f604b7fb422..d4ed9eb91650 100644 --- a/net-im/kopete/Makefile +++ b/net-im/kopete/Makefile @@ -14,7 +14,7 @@ LIB_DEPENDS= libidn.so:dns/libidn \ libqca-qt5.so:devel/qca@qt5 \ libv4l2.so:multimedia/libv4l -USES= cmake:outsource jpeg kde:5 qt:5 shebangfix tar:xz +USES= cmake jpeg kde:5 qt:5 shebangfix tar:xz USE_GNOME= libxml2 libxslt USE_KDE= archive auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons dnssd ecm emoticons guiaddons i18n \ diff --git a/net-im/ktp-accounts-kcm/Makefile b/net-im/ktp-accounts-kcm/Makefile index 4c312b6d9dd7..c93469e92a0b 100644 --- a/net-im/ktp-accounts-kcm/Makefile +++ b/net-im/ktp-accounts-kcm/Makefile @@ -20,7 +20,7 @@ LIB_DEPENDS= libaccounts-qt5.so:net-im/libaccounts-qt5 \ RUN_DEPENDS= ${KDE_PREFIX}/bin/ktp-contactlist:net-im/ktp-contact-list \ ${QT_PLUGINDIR}/kaccounts/ui/owncloud_plugin_kaccounts.so:net-im/kaccounts-providers -USES= compiler:c++11-lang cmake:outsource gettext gnome kde:5 \ +USES= compiler:c++11-lang cmake gettext gnome kde:5 \ pkgconfig qt:5 tar:xz USE_GNOME= intltool USE_KDE= auth codecs config configwidgets coreaddons ecm i18n \ diff --git a/net-im/ktp-approver/Makefile b/net-im/ktp-approver/Makefile index 47026963e2d4..7a8135e9cf77 100644 --- a/net-im/ktp-approver/Makefile +++ b/net-im/ktp-approver/Makefile @@ -14,7 +14,7 @@ LIB_DEPENDS= libtelepathy-qt5.so:net-im/telepathy-qt@qt5 \ libKTpCommonInternals.so:net-im/ktp-common-internals RUN_DEPENDS= ${KDE_PREFIX}/bin/ktp-contactlist:net-im/ktp-contact-list -USES= compiler:c++11-lang cmake:outsource gettext kde:5 qt:5 tar:xz +USES= compiler:c++11-lang cmake gettext kde:5 qt:5 tar:xz USE_KDE= config coreaddons ecm dbusaddons service i18n notifications USE_QT= core dbus gui network widgets xml \ buildtools_build qmake_build diff --git a/net-im/ktp-auth-handler/Makefile b/net-im/ktp-auth-handler/Makefile index cbfd133483e1..e6c69441dd2c 100644 --- a/net-im/ktp-auth-handler/Makefile +++ b/net-im/ktp-auth-handler/Makefile @@ -17,7 +17,7 @@ LIB_DEPENDS= libqca-qt5.so:devel/qca@qt5 \ libkaccounts.so:net-im/kaccounts-integration \ libsignon-qt5.so:sysutils/signon-qt5 -USES= compiler:c++11-lang cmake:outsource gettext kde:5 pkgconfig \ +USES= compiler:c++11-lang cmake gettext kde:5 pkgconfig \ qt:5 tar:xz USE_KDE= completion config coreaddons ecm i18n jobwidgets kdewebkit \ kio wallet service widgetsaddons diff --git a/net-im/ktp-call-ui/Makefile b/net-im/ktp-call-ui/Makefile index 8e11b2ece651..63ad066e0f44 100644 --- a/net-im/ktp-call-ui/Makefile +++ b/net-im/ktp-call-ui/Makefile @@ -15,7 +15,7 @@ LIB_DEPENDS= libKTpCommonInternals.so:net-im/ktp-common-internals \ libtelepathy-glib.so:net-im/telepathy-glib \ libtelepathy-qt5-farstream.so:net-im/telepathy-qt@qt5 -USES= cmake:outsource compiler:c++11-lang gettext kde:5 pkgconfig \ +USES= cmake compiler:c++11-lang gettext kde:5 pkgconfig \ python:2.7 qt:5 tar:xz USE_GNOME= glib20 USE_KDE= auth codecs config configwidgets coreaddons ecm iconthemes \ diff --git a/net-im/ktp-common-internals/Makefile b/net-im/ktp-common-internals/Makefile index 4ef3078b28af..fb9e23a2847a 100644 --- a/net-im/ktp-common-internals/Makefile +++ b/net-im/ktp-common-internals/Makefile @@ -17,7 +17,7 @@ LIB_DEPENDS= libgcrypt.so:security/libgcrypt \ RUN_DEPENDS= ${LOCALBASE}/lib/mission-control-plugins.0/mcp-account-manager-accounts-sso.so:net-im/telepathy-accounts-signon \ ${LOCALBASE}/libexec/mission-control-5:net-im/telepathy-mission-control -USES= cmake:outsource compiler:c++11-lang gettext pkgconfig kde:5 \ +USES= cmake compiler:c++11-lang gettext pkgconfig kde:5 \ qt:5 tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons ecm i18n iconthemes itemviews jobwidgets kcmutils \ diff --git a/net-im/ktp-contact-list/Makefile b/net-im/ktp-contact-list/Makefile index 8e68954360fa..e446a46c4d21 100644 --- a/net-im/ktp-contact-list/Makefile +++ b/net-im/ktp-contact-list/Makefile @@ -11,7 +11,7 @@ LIB_DEPENDS= libtelepathy-qt5.so:net-im/telepathy-qt@qt5 \ libtelepathy-logger-qt.so:net-im/telepathy-logger-qt5 \ libKTpCommonInternals.so:net-im/ktp-common-internals -USES= compiler:c++11-lang cmake:outsource gettext kde:5 qt:5 tar:xz +USES= compiler:c++11-lang cmake gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons \ dbusaddons ecm i18n iconthemes jobwidgets kcmutils kio \ notifications notifyconfig people service wallet widgetsaddons \ diff --git a/net-im/ktp-contact-runner/Makefile b/net-im/ktp-contact-runner/Makefile index 3e3d7ad15404..a48b860b7cdd 100644 --- a/net-im/ktp-contact-runner/Makefile +++ b/net-im/ktp-contact-runner/Makefile @@ -10,7 +10,7 @@ COMMENT= KRunner integration module for KDE Telepathy LIB_DEPENDS= libtelepathy-qt5.so:net-im/telepathy-qt@qt5 \ libKTpCommonInternals.so:net-im/ktp-common-internals -USES= compiler:c++11-lang cmake:outsource gettext kde:5 qt:5 tar:xz +USES= compiler:c++11-lang cmake gettext kde:5 qt:5 tar:xz USE_KDE= config coreaddons ecm i18n package plasma-framework runner \ service wallet USE_QT= core dbus gui network widgets xml\ diff --git a/net-im/ktp-desktop-applets/Makefile b/net-im/ktp-desktop-applets/Makefile index 1ed43b632526..7ba4ee186a6c 100644 --- a/net-im/ktp-desktop-applets/Makefile +++ b/net-im/ktp-desktop-applets/Makefile @@ -9,7 +9,7 @@ COMMENT= KDE instant messaging plasma widgets LIB_DEPENDS= libKTpCommonInternals.so:net-im/ktp-common-internals -USES= compiler:c++11-lang cmake:outsource gettext kde:5 qt:5 tar:xz +USES= compiler:c++11-lang cmake gettext kde:5 qt:5 tar:xz USE_KDE= ecm plasma-framework windowsystem USE_QT= core dbus declarative gui network widgets \ buildtools_build qmake_build diff --git a/net-im/ktp-filetransfer-handler/Makefile b/net-im/ktp-filetransfer-handler/Makefile index 10a45bc4b4a1..883bc0a294a4 100644 --- a/net-im/ktp-filetransfer-handler/Makefile +++ b/net-im/ktp-filetransfer-handler/Makefile @@ -13,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libtelepathy-qt5.so:net-im/telepathy-qt@qt5 \ libKTpCommonInternals.so:net-im/ktp-common-internals -USES= compiler:c++11-lang cmake:outsource gettext kde:5 qt:5 tar:xz +USES= compiler:c++11-lang cmake gettext kde:5 qt:5 tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons ecm i18n itemviews jobwidgets kio service solid \ wallet widgetsaddons xmlgui diff --git a/net-im/ktp-kded-module/Makefile b/net-im/ktp-kded-module/Makefile index c02d4512d096..fdd0db4c3071 100644 --- a/net-im/ktp-kded-module/Makefile +++ b/net-im/ktp-kded-module/Makefile @@ -10,7 +10,7 @@ COMMENT= Module for integration of instant messaging into KDE Workspaces LIB_DEPENDS= libtelepathy-qt5.so:net-im/telepathy-qt@qt5 \ libKTpCommonInternals.so:net-im/ktp-common-internals -USES= compiler:c++11-lang cmake:outsource gettext kde:5 qt:5 tar:xz +USES= compiler:c++11-lang cmake gettext kde:5 qt:5 tar:xz USE_KDE= activities auth codecs completion config configwidgets coreaddons \ dbusaddons i18n idletime jobwidgets kcmutils kio notifications \ service wallet widgetsaddons diff --git a/net-im/ktp-send-file/Makefile b/net-im/ktp-send-file/Makefile index d1c62e77397d..7cccdca12b72 100644 --- a/net-im/ktp-send-file/Makefile +++ b/net-im/ktp-send-file/Makefile @@ -12,7 +12,7 @@ LIB_DEPENDS= libtelepathy-qt5.so:net-im/telepathy-qt@qt5 \ RUN_DEPENDS= ${KDE_PREFIX}/lib/libexec/ktp-filetransfer-handler:net-im/ktp-filetransfer-handler \ ${KDE_PREFIX}/bin/ktp-contactlist:net-im/ktp-contact-list -USES= compiler:c++11-lang cmake:outsource gettext kde:5 qt:5 tar:xz +USES= compiler:c++11-lang cmake gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons ecm \ i18n iconthemes jobwidgets kcmutils kio service wallet \ widgetsaddons diff --git a/net-im/ktp-text-ui/Makefile b/net-im/ktp-text-ui/Makefile index 97b8c55aeb58..4c70aee9d6b7 100644 --- a/net-im/ktp-text-ui/Makefile +++ b/net-im/ktp-text-ui/Makefile @@ -12,7 +12,7 @@ LIB_DEPENDS= libtelepathy-qt5.so:net-im/telepathy-qt@qt5 \ libKTpCommonInternals.so:net-im/ktp-common-internals RUN_DEPENDS= ${KDE_PREFIX}/bin/ktp-contactlist:net-im/ktp-contact-list -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= archive auth codecs completion config configwidgets coreaddons \ dbusaddons ecm emoticons i18n iconthemes itemviews jobwidgets \ kcmutils kdewebkit kio notifications notifyconfig people \ diff --git a/net-im/telegram-desktop/Makefile b/net-im/telegram-desktop/Makefile index 096630ec8d66..e32287440770 100644 --- a/net-im/telegram-desktop/Makefile +++ b/net-im/telegram-desktop/Makefile @@ -23,7 +23,7 @@ LIB_DEPENDS= libavformat.so:multimedia/ffmpeg \ libopenal.so:audio/openal-soft \ libopus.so:audio/opus -USES= compiler:c++17-lang cmake:noninja,outsource desktop-file-utils gmake pkgconfig python:2.7,build qt:5 ssl +USES= compiler:c++17-lang cmake:noninja desktop-file-utils gmake pkgconfig python:2.7,build qt:5 ssl USE_GITHUB= yes GH_ACCOUNT= telegramdesktop diff --git a/net-im/telepathy-logger-qt5/Makefile b/net-im/telepathy-logger-qt5/Makefile index 586a6bc34ac1..6483fb5d2918 100644 --- a/net-im/telepathy-logger-qt5/Makefile +++ b/net-im/telepathy-logger-qt5/Makefile @@ -21,7 +21,7 @@ LIB_DEPENDS= libdbus-1.so:devel/dbus \ libtelepathy-logger.so:net-im/telepathy-logger \ libtelepathy-qt5.so:net-im/telepathy-qt@qt5 -USES= bison:build cmake:outsource compiler:c++11-lang kde:5 \ +USES= bison:build cmake compiler:c++11-lang kde:5 \ pkgconfig python:2.7,build qt:5 tar:xz USE_GNOME= glib20 libxml2 USE_KDE= ecm diff --git a/net-im/telepathy-qt/Makefile b/net-im/telepathy-qt/Makefile index 8f02d2dd37d5..ecfb5db41a11 100644 --- a/net-im/telepathy-qt/Makefile +++ b/net-im/telepathy-qt/Makefile @@ -22,7 +22,7 @@ FLAVOR?= ${FLAVORS:[1]} qt4_PKGNAMESUFFIX= 4 qt5_PKGNAMESUFFIX= 5 -USES= cmake:outsource gettext gnome localbase:ldflags pathfix pkgconfig python:2.7,build +USES= cmake gettext gnome localbase:ldflags pathfix pkgconfig python:2.7,build USE_GNOME= glib20 libxslt:build USE_GSTREAMER= yes USE_LDCONFIG= yes diff --git a/net-im/uTox/Makefile b/net-im/uTox/Makefile index 947266a231a5..ded9f2faa30f 100644 --- a/net-im/uTox/Makefile +++ b/net-im/uTox/Makefile @@ -26,7 +26,7 @@ LIB_DEPENDS= libfreetype.so:print/freetype2 \ libopus.so:audio/opus \ libtoxcore.so:net-im/tox -USES= cmake:outsource compiler:c11 desktop-file-utils dos2unix \ +USES= cmake compiler:c11 desktop-file-utils dos2unix \ openal pkgconfig USE_XORG= ice sm x11 xext xrender CMAKE_OFF= ENABLE_LTO diff --git a/net-mgmt/ettercap/Makefile b/net-mgmt/ettercap/Makefile index 731d51a86aad..67d6dca2a139 100644 --- a/net-mgmt/ettercap/Makefile +++ b/net-mgmt/ettercap/Makefile @@ -33,7 +33,7 @@ CMAKE_ON= HAVE_DLOPEN LDFLAGS+= ${ICONV_LIB} -lnet -lpcap MAKE_JOBS_UNSAFE= yes USE_LDCONFIG= yes -USES= bison cmake:outsource cpe iconv localbase:ldflags pkgconfig +USES= bison cmake cpe iconv localbase:ldflags pkgconfig DOCS= AUTHORS CHANGELOG README README.BINARIES README.BUGS \ README.GIT README.PLATFORMS THANKS TODO TODO.TESTING \ diff --git a/net-mgmt/icinga2/Makefile b/net-mgmt/icinga2/Makefile index c89bc5e7b127..57e92874058a 100644 --- a/net-mgmt/icinga2/Makefile +++ b/net-mgmt/icinga2/Makefile @@ -16,7 +16,7 @@ LIB_DEPENDS= libboost_system.so:devel/boost-libs \ libyajl.so:devel/yajl RUN_DEPENDS= ${LOCALBASE}/bin/bash:shells/bash -USES= alias bison cmake compiler:c++0x libedit ssl +USES= alias bison cmake:insource compiler:c++0x libedit ssl USE_GITHUB= yes GH_ACCOUNT= icinga diff --git a/net-mgmt/openbmp/Makefile b/net-mgmt/openbmp/Makefile index 270387afd13d..26b4aa5531bd 100644 --- a/net-mgmt/openbmp/Makefile +++ b/net-mgmt/openbmp/Makefile @@ -18,7 +18,7 @@ LIB_DEPENDS= librdkafka.so:net/librdkafka \ libsasl2.so:security/cyrus-sasl2 \ libyaml-cpp.so:devel/yaml-cpp -USES= cmake:outsource ssl +USES= cmake ssl USE_GITHUB= yes GH_ACCOUNT= OpenBMP diff --git a/net-p2p/eiskaltdcpp-daemon/Makefile b/net-p2p/eiskaltdcpp-daemon/Makefile index 24cf5d4cbfb9..e56b545b0431 100644 --- a/net-p2p/eiskaltdcpp-daemon/Makefile +++ b/net-p2p/eiskaltdcpp-daemon/Makefile @@ -15,7 +15,7 @@ LIB_DEPENDS= libeiskaltdcpp.so:net-p2p/eiskaltdcpp-lib MASTERDIR= ${.CURDIR}/../eiskaltdcpp-lib -USES= cmake gettext compiler:c++11-lib ssl +USES= cmake:insource gettext compiler:c++11-lib ssl OPTIONS_SINGLE= UI OPTIONS_SINGLE_UI= NOUI XMLRPC JSONRPC diff --git a/net-p2p/eiskaltdcpp-qt/Makefile b/net-p2p/eiskaltdcpp-qt/Makefile index 2594b4920380..128cfd0c7f40 100644 --- a/net-p2p/eiskaltdcpp-qt/Makefile +++ b/net-p2p/eiskaltdcpp-qt/Makefile @@ -19,7 +19,7 @@ LIB_DEPENDS= libeiskaltdcpp.so:net-p2p/eiskaltdcpp-lib MASTERDIR= ${.CURDIR}/../eiskaltdcpp-lib -USES= cmake gettext compiler:c++11-lib desktop-file-utils qt:4 ssl +USES= cmake:insource gettext compiler:c++11-lib desktop-file-utils qt:4 ssl USE_QT= gui xml network qmake_build uic_build \ moc_build rcc_build linguisttools_build diff --git a/net-p2p/ktorrent-kde4/Makefile b/net-p2p/ktorrent-kde4/Makefile index 63fa98131fe9..7c51690d1cae 100644 --- a/net-p2p/ktorrent-kde4/Makefile +++ b/net-p2p/ktorrent-kde4/Makefile @@ -19,7 +19,7 @@ LIB_DEPENDS= libtag.so:audio/taglib \ libgmp.so:math/gmp \ libktorrent.so:net-p2p/libktorrent-kde4 -USES= cmake:outsource gettext kde:4 qt:4 tar:bzip2 +USES= cmake gettext kde:4 qt:4 tar:bzip2 USE_KDE= kdelibs automoc4 pimlibs workspace USE_QT= corelib gui network qt3support qtestlib webkit \ qmake_build moc_build rcc_build uic_build diff --git a/net-p2p/ktorrent/Makefile b/net-p2p/ktorrent/Makefile index 892145fb7619..df2c7b27e9f9 100644 --- a/net-p2p/ktorrent/Makefile +++ b/net-p2p/ktorrent/Makefile @@ -10,7 +10,7 @@ MASTER_SITES= KDE/stable/${PORTNAME}/${DISTVERSION}/ MAINTAINER= kde@FreeBSD.org COMMENT= BitTorrent client for KDE -USES= cmake:outsource gettext kde:5 qt:5 tar:xz +USES= cmake gettext kde:5 qt:5 tar:xz LIB_DEPENDS= libKF5Torrent.so:net-p2p/libktorrent \ libgcrypt.so:security/libgcrypt \ diff --git a/net-p2p/libktorrent-kde4/Makefile b/net-p2p/libktorrent-kde4/Makefile index e8d7145767b4..46075bc165f1 100644 --- a/net-p2p/libktorrent-kde4/Makefile +++ b/net-p2p/libktorrent-kde4/Makefile @@ -18,7 +18,7 @@ LIB_DEPENDS= libgcrypt.so:security/libgcrypt \ libgmp.so:math/gmp \ libqca.so:devel/qca@qt4 -USES= cmake:outsource gettext kde:4 qt:4 tar:bzip2 +USES= cmake gettext kde:4 qt:4 tar:bzip2 USE_KDE= kdelibs automoc4 USE_QT= qtestlib_build qmake_build moc_build rcc_build uic_build USE_LDCONFIG= yes diff --git a/net-p2p/libktorrent/Makefile b/net-p2p/libktorrent/Makefile index 81cc239153a9..982767674cbc 100644 --- a/net-p2p/libktorrent/Makefile +++ b/net-p2p/libktorrent/Makefile @@ -15,7 +15,7 @@ LIB_DEPENDS= libgcrypt.so:security/libgcrypt \ libgmp.so:math/gmp \ libqca-qt5.so:devel/qca@qt5 -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 USE_KDE= archive completion config coreaddons crash ecm i18n \ jobwidgets kio service solid widgetsaddons USE_QT= core gui network testlib xml \ diff --git a/net-p2p/libtorrent-rasterbar/Makefile b/net-p2p/libtorrent-rasterbar/Makefile index 908450f288ac..f7901858b80f 100644 --- a/net-p2p/libtorrent-rasterbar/Makefile +++ b/net-p2p/libtorrent-rasterbar/Makefile @@ -17,7 +17,7 @@ LIB_DEPENDS= libboost_chrono.so:devel/boost-libs \ libboost_random.so:devel/boost-libs \ libboost_system.so:devel/boost-libs -USES= cmake:outsource compiler:c++14-lang iconv:wchar_t libtool pathfix pkgconfig ssl +USES= cmake compiler:c++14-lang iconv:wchar_t libtool pathfix pkgconfig ssl USE_LDCONFIG= yes SHLIB_VER= 9 diff --git a/net-p2p/transmission-cli/Makefile b/net-p2p/transmission-cli/Makefile index f23395666187..5a0a09f969fe 100644 --- a/net-p2p/transmission-cli/Makefile +++ b/net-p2p/transmission-cli/Makefile @@ -26,7 +26,7 @@ LIB_DEPENDS+= libcurl.so:ftp/curl \ libutp.so:net/libutp \ libminiupnpc.so:net/miniupnpc -USES+= cmake:outsource cpe iconv libtool localbase pkgconfig +USES+= cmake cpe iconv libtool localbase pkgconfig . if ${SLAVEPORT:Mcli} USES+= ssl diff --git a/net-p2p/uhub/Makefile b/net-p2p/uhub/Makefile index 93fabf2aa1b3..e189ba74c504 100644 --- a/net-p2p/uhub/Makefile +++ b/net-p2p/uhub/Makefile @@ -17,7 +17,7 @@ BROKEN_aarch64= fails to compile: CPUINFO not defined WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} -USES= cmake perl5 sqlite +USES= cmake:insource perl5 sqlite USE_RC_SUBR= uhub USE_PERL5= build diff --git a/net-p2p/xmrig/Makefile b/net-p2p/xmrig/Makefile index b44b68f16c2e..a43c2a1698bb 100644 --- a/net-p2p/xmrig/Makefile +++ b/net-p2p/xmrig/Makefile @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE BROKEN_powerpc64= fails to configure: Target "xmrig" requires the language dialect "CXX11", but CMake does not know the compile flags to use to enable it. -USES= cmake:outsource ssl +USES= cmake ssl USE_GITHUB= yes USE_RC_SUBR= ${PORTNAME} diff --git a/net/akonadi-calendar/Makefile b/net/akonadi-calendar/Makefile index 965599e674b2..3199449d9598 100644 --- a/net/akonadi-calendar/Makefile +++ b/net/akonadi-calendar/Makefile @@ -9,7 +9,7 @@ COMMENT= Akonadi Calendar Integration LICENSE= LGPL21 -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons \ dbusaddons ecm kdelibs4support i18n iconthemes itemmodels \ jobwidgets kio service wallet widgetsaddons xmlgui diff --git a/net/akonadi-contacts/Makefile b/net/akonadi-contacts/Makefile index 1daacb842012..cf703df0aba0 100644 --- a/net/akonadi-contacts/Makefile +++ b/net/akonadi-contacts/Makefile @@ -8,7 +8,7 @@ MAINTAINER= kde@FreeBSD.org COMMENT= Libraries and daemons to implement Contact Management in Akonadi LICENSE= LGPL21 -USES= cmake:outsource compiler:c++11-lib gettext grantlee:5 kde:5 \ +USES= cmake compiler:c++11-lib gettext grantlee:5 kde:5 \ qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons \ dbusaddons ecm i18n iconthemes itemmodels jobwidgets kio \ diff --git a/net/akonadi-mime/Makefile b/net/akonadi-mime/Makefile index 59452931baad..7725ea7c53a3 100644 --- a/net/akonadi-mime/Makefile +++ b/net/akonadi-mime/Makefile @@ -9,7 +9,7 @@ COMMENT= Libraries and daemons to implement basic email handling LICENSE= LGPL21 -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons dbusaddons ecm \ i18n itemmodels kio service widgetsaddons xmlgui # pim components diff --git a/net/akonadi-notes/Makefile b/net/akonadi-notes/Makefile index 168500f359d1..fa9e4cf23c70 100644 --- a/net/akonadi-notes/Makefile +++ b/net/akonadi-notes/Makefile @@ -9,7 +9,7 @@ COMMENT= KDE library for accessing mail storages in MBox format LICENSE= LGPL21 -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= ecm i18n # pim components USE_KDE+= akonadi mime diff --git a/net/akonadi-search/Makefile b/net/akonadi-search/Makefile index b4c1eefaccec..7aa7a05b7709 100644 --- a/net/akonadi-search/Makefile +++ b/net/akonadi-search/Makefile @@ -11,7 +11,7 @@ LICENSE= LGPL21 LIB_DEPENDS= libxapian.so:databases/xapian-core -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons \ crash ecm i18n itemmodels kcmutils package plasma-framework \ runner service widgetsaddons diff --git a/net/aluminum/Makefile b/net/aluminum/Makefile index 5c9ea263e20e..e0e71595b6e2 100644 --- a/net/aluminum/Makefile +++ b/net/aluminum/Makefile @@ -14,7 +14,7 @@ LICENSE= APACHE20 LIB_DEPENDS= libhwloc.so:devel/hwloc \ libmpi.so:net/openmpi -USES= cmake:outsource +USES= cmake USE_GITHUB= yes GH_ACCOUNT= LLNL USE_LDCONFIG= yes diff --git a/net/bctoolbox/Makefile b/net/bctoolbox/Makefile index 2feb5f05a4e5..16c32c733981 100644 --- a/net/bctoolbox/Makefile +++ b/net/bctoolbox/Makefile @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= mbedtls>=2.3.0_2:security/mbedtls LIB_DEPENDS= libmbedtls.so:security/mbedtls -USES= cmake:outsource compiler:c++11-lib +USES= cmake compiler:c++11-lib USE_LDCONFIG= yes CFLAGS+= -DHAVE_ARC4RANDOM diff --git a/net/calendarsupport/Makefile b/net/calendarsupport/Makefile index 4ef62e341c45..f8f22c1252af 100644 --- a/net/calendarsupport/Makefile +++ b/net/calendarsupport/Makefile @@ -11,7 +11,7 @@ LICENSE= LGPL21 LIB_DEPENDS= libboost_system.so:devel/boost-libs -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons ecm \ guiaddons i18n iconthemes itemmodels jobwidgets kio service \ widgetsaddons diff --git a/net/ceph/Makefile b/net/ceph/Makefile index 69380052ed8f..a9c999b25021 100644 --- a/net/ceph/Makefile +++ b/net/ceph/Makefile @@ -45,7 +45,7 @@ RUN_DEPENDS= \ CONFLICTS_INSTALL= ceph-devel PORTSCOUT= limit:^v12\. -USES= cmake:outsource,noninja fuse gettext-runtime gmake \ +USES= cmake:noninja fuse gettext-runtime gmake \ pkgconfig python:2.7 shebangfix ssl USE_PYTHON= cython USE_OPENLDAP= yes diff --git a/net/crtmpserver/Makefile b/net/crtmpserver/Makefile index af15168a2fdf..37236738c09e 100644 --- a/net/crtmpserver/Makefile +++ b/net/crtmpserver/Makefile @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE BROKEN= fails to build -USES= cmake:outsource lua ssl +USES= cmake lua ssl CMAKE_SOURCE_PATH= ${WRKSRC}/builders/cmake CMAKE_ARGS= -DCRTMPSERVER_INSTALL_PREFIX:STRING=${PREFIX} -DTEMP_FRAMEWORK_VER=${PORTVERSION} MAKE_JOBS_UNSAFE= yes diff --git a/net/eternalterminal/Makefile b/net/eternalterminal/Makefile index 2dcbcd52260d..562d07db4bfd 100644 --- a/net/eternalterminal/Makefile +++ b/net/eternalterminal/Makefile @@ -17,7 +17,7 @@ LIB_DEPENDS= libgflags.so:devel/gflags \ libprotobuf.so:devel/protobuf \ libsodium.so:security/libsodium -USES= cmake:outsource compiler:c++11-lang ncurses +USES= cmake compiler:c++11-lang ncurses USE_GITHUB= yes GH_ACCOUNT= MisterTea GH_PROJECT= EternalTerminal diff --git a/net/eventviews/Makefile b/net/eventviews/Makefile index 923b79dfb61a..61a66c7c609b 100644 --- a/net/eventviews/Makefile +++ b/net/eventviews/Makefile @@ -12,7 +12,7 @@ LICENSE= LGPL21 LIB_DEPENDS= libKGantt.so:graphics/kdiagram \ libboost_system.so:devel/boost-libs -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons ecm \ guiaddons i18n iconthemes itemmodels service widgetsaddons # pim components diff --git a/net/flower/Makefile b/net/flower/Makefile index d93a02db5472..1eebe7c2014f 100644 --- a/net/flower/Makefile +++ b/net/flower/Makefile @@ -16,7 +16,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libarpc.so:devel/arpc \ libjsoncpp.so:devel/jsoncpp -USES= cmake compiler:c++17-lang localbase:ldflags tar:xz +USES= cmake:insource compiler:c++17-lang localbase:ldflags tar:xz USE_GITHUB= yes GH_ACCOUNT= NuxiNL diff --git a/net/freerdp/Makefile b/net/freerdp/Makefile index 4d668f758435..ae4c3c457414 100644 --- a/net/freerdp/Makefile +++ b/net/freerdp/Makefile @@ -16,7 +16,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libepoll-shim.so:devel/libepoll-shim -USES= alias cmake:outsource compiler:c++11-lib cpe gettext localbase pathfix pkgconfig ssl +USES= alias cmake compiler:c++11-lib cpe gettext localbase pathfix pkgconfig ssl USE_LDCONFIG= yes CPE_VENDOR= freerdp_project diff --git a/net/freerdp1/Makefile b/net/freerdp1/Makefile index de7e6bbb259e..266fa0c4a020 100644 --- a/net/freerdp1/Makefile +++ b/net/freerdp1/Makefile @@ -20,7 +20,7 @@ GH_ACCOUNT= FreeRDP GH_PROJECT= ${GH_ACCOUNT} GH_TAGNAME= f5ff6e1 -USES= alias cmake:outsource compiler:c++11-lib cpe gettext localbase pathfix pkgconfig ssl +USES= alias cmake compiler:c++11-lib cpe gettext localbase pathfix pkgconfig ssl USE_LDCONFIG= yes CPE_VENDOR= freerdp_project diff --git a/net/incidenceeditor/Makefile b/net/incidenceeditor/Makefile index 7c5ae6b7a3d8..22799fc2d2c2 100644 --- a/net/incidenceeditor/Makefile +++ b/net/incidenceeditor/Makefile @@ -12,7 +12,7 @@ LICENSE= LGPL21 LIB_DEPENDS= libKGantt.so:graphics/kdiagram \ libboost_system.so:devel/boost-libs -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons ecm \ i18n iconthemes itemmodels jobwidgets kio service sonnet \ textwidgets wallet widgetsaddons xmlgui diff --git a/net/kalarmcal/Makefile b/net/kalarmcal/Makefile index 53b83a704cf8..dfa80b3e5f6d 100644 --- a/net/kalarmcal/Makefile +++ b/net/kalarmcal/Makefile @@ -9,7 +9,7 @@ COMMENT= KDE API for KAlarm alarms LICENSE= LGPL21 -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash ecm guiaddons holidays i18n iconthemes \ itemmodels itemviews jobwidgets kdelibs4support kio \ diff --git a/net/kblog/Makefile b/net/kblog/Makefile index e42b45a031c2..cfaab1b1b977 100644 --- a/net/kblog/Makefile +++ b/net/kblog/Makefile @@ -9,7 +9,7 @@ COMMENT= KDE API for weblogging access LICENSE= LGPL21 -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= config coreaddons ecm i18n kdelibs4support kio service xmlrpcclient # pim components USE_KDE+= calendarcore syndication diff --git a/net/kcalcore/Makefile b/net/kcalcore/Makefile index 1c94e74a4f2f..349833c13a8b 100644 --- a/net/kcalcore/Makefile +++ b/net/kcalcore/Makefile @@ -11,7 +11,7 @@ LICENSE= LGPL21 LIB_DEPENDS= libical.so:devel/libical -USES= bison cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= bison cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= ecm emoticons init itemmodels itemviews kdelibs4support USE_QT= core gui \ buildtools_build qmake_build diff --git a/net/kcalutils/Makefile b/net/kcalutils/Makefile index beb779582333..6bd30d904feb 100644 --- a/net/kcalutils/Makefile +++ b/net/kcalutils/Makefile @@ -9,7 +9,7 @@ COMMENT= KDE utility and user interface functions for accessing calendar LICENSE= LGPL21 -USES= cmake:outsource compiler:c++11-lib gettext grantlee:5 kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext grantlee:5 kde:5 qt:5 tar:xz USE_KDE= codecs config coreaddons ecm i18n iconthemes kdelibs4support \ widgetsaddons # pim components diff --git a/net/kcontacts/Makefile b/net/kcontacts/Makefile index 133a54f186e8..5687691de8ff 100644 --- a/net/kcontacts/Makefile +++ b/net/kcontacts/Makefile @@ -9,7 +9,7 @@ COMMENT= KDE api to manage contact information LICENSE= LGPL21 -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= ecm codecs config coreaddons i18n USE_QT= core dbus gui \ buildtools_build qmake_build diff --git a/net/kdav/Makefile b/net/kdav/Makefile index 5b4a3aa198d9..b50a54ecdd8a 100644 --- a/net/kdav/Makefile +++ b/net/kdav/Makefile @@ -7,7 +7,7 @@ CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= A DAV protocol implementation with KJobs -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= config coreaddons ecm i18n kio service USE_QT= core dbus gui network xml xmlpatterns \ buildtools_build qmake_build diff --git a/net/kdenetwork-filesharing-kde4/Makefile b/net/kdenetwork-filesharing-kde4/Makefile index c8a376a2ff0c..07db0ab42571 100644 --- a/net/kdenetwork-filesharing-kde4/Makefile +++ b/net/kdenetwork-filesharing-kde4/Makefile @@ -12,7 +12,7 @@ COMMENT= KDE Filesharing via Samba DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs automoc4 USE_QT= moc_build qmake_build rcc_build uic_build diff --git a/net/kdenetwork-filesharing/Makefile b/net/kdenetwork-filesharing/Makefile index e3b67ba82e22..0d36777f692b 100644 --- a/net/kdenetwork-filesharing/Makefile +++ b/net/kdenetwork-filesharing/Makefile @@ -7,7 +7,7 @@ CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE Filesharing via Samba -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= completion config coreaddons doctools ecm i18n jobwidgets kio \ service widgetsaddons USE_QT= core gui network widgets \ diff --git a/net/kdenetwork-strigi-analyzers-kde4/Makefile b/net/kdenetwork-strigi-analyzers-kde4/Makefile index 8562d09a3693..aba0bb4afc2b 100644 --- a/net/kdenetwork-strigi-analyzers-kde4/Makefile +++ b/net/kdenetwork-strigi-analyzers-kde4/Makefile @@ -14,7 +14,7 @@ EXPIRATION_DATE= 2018-12-31 LIB_DEPENDS= libboost_thread.so:devel/boost-libs -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs strigi automoc4 USE_QT= moc_build qmake_build rcc_build uic_build diff --git a/net/kf5-kholidays/Makefile b/net/kf5-kholidays/Makefile index 616afcca622b..bf4f528b86fb 100644 --- a/net/kf5-kholidays/Makefile +++ b/net/kf5-kholidays/Makefile @@ -9,7 +9,7 @@ COMMENT= KDE library for calendar holidays LICENSE= LGPL21 -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= ecm emoticons kdelibs4support init itemmodels itemviews USE_QT= core declarative gui buildtools_build qmake_build USE_LDCONFIG= yes diff --git a/net/kf5-kxmlrpcclient/Makefile b/net/kf5-kxmlrpcclient/Makefile index 8c6192cc5d3c..9eb27b38a34b 100644 --- a/net/kf5-kxmlrpcclient/Makefile +++ b/net/kf5-kxmlrpcclient/Makefile @@ -7,7 +7,7 @@ CATEGORIES= net kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 interaction with XMLRPC services -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= config coreaddons ecm doctools i18n kio service USE_QT= buildtools_build core gui qmake_build xml diff --git a/net/kf5-syndication/Makefile b/net/kf5-syndication/Makefile index 89ecbf0a6f4f..e04231d92f65 100644 --- a/net/kf5-syndication/Makefile +++ b/net/kf5-syndication/Makefile @@ -10,7 +10,7 @@ COMMENT= KDE RSS feed handling library LICENSE= LGPL21 -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= codecs config coreaddons ecm kio service USE_QT= core gui xml \ buildtools_build qmake_build diff --git a/net/kget-kde4/Makefile b/net/kget-kde4/Makefile index 24d4401902b8..a531cab07bdf 100644 --- a/net/kget-kde4/Makefile +++ b/net/kget-kde4/Makefile @@ -17,7 +17,7 @@ LIB_DEPENDS= libgpgme.so:security/gpgme \ libqca.so:devel/qca@qt4 \ libboost_thread.so:devel/boost-libs -USES= cmake:outsource kde:4 qt:4 shebangfix sqlite tar:xz +USES= cmake kde:4 qt:4 shebangfix sqlite tar:xz USE_KDE= kdelibs workspace libkonq \ nepomuk-core nepomuk-widgets automoc4 ontologies \ soprano diff --git a/net/kget/Makefile b/net/kget/Makefile index 15efc1071f2f..fb818aaf9fe0 100644 --- a/net/kget/Makefile +++ b/net/kget/Makefile @@ -17,7 +17,7 @@ LIB_DEPENDS= libKF5Torrent.so:net-p2p/libktorrent \ libqca-qt5.so:devel/qca@qt5 \ libqgpgme.so:security/gpgme-qt5 -USES= cmake:outsource kde:5 qt:5 shebangfix sqlite tar:xz +USES= cmake kde:5 qt:5 shebangfix sqlite tar:xz USE_KDE= archive auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons emoticons guiaddons i18n \ diff --git a/net/kidentitymanagement/Makefile b/net/kidentitymanagement/Makefile index 8f54678cb73c..b2d8ba8dbcc4 100644 --- a/net/kidentitymanagement/Makefile +++ b/net/kidentitymanagement/Makefile @@ -9,7 +9,7 @@ COMMENT= KDE pim identities LICENSE= LGPL21 -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons ecm \ emoticons i18n init itemmodels itemviews jobwidgets \ kdelibs4support kio service widgetsaddons xmlgui diff --git a/net/kimap/Makefile b/net/kimap/Makefile index 2541846dc0cf..0844ed277bca 100644 --- a/net/kimap/Makefile +++ b/net/kimap/Makefile @@ -12,7 +12,7 @@ LICENSE= LGPL21 LIB_DEPENDS= libboost_system.so:devel/boost-libs \ libsasl2.so:security/cyrus-sasl2 -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= codecs config coreaddons ecm i18n kdelibs4support kio service # pim components USE_KDE+= mime diff --git a/net/kio-gdrive/Makefile b/net/kio-gdrive/Makefile index f320f98b5133..3e0efc894332 100644 --- a/net/kio-gdrive/Makefile +++ b/net/kio-gdrive/Makefile @@ -17,7 +17,7 @@ LIB_DEPENDS= libqt5keychain.so:security/qtkeychain@qt5 \ libkaccounts.so:net-im/kaccounts-integration RUN_DEPENDS= kaccounts-providers>=0:net-im/kaccounts-providers -USES= cmake:outsource gettext kde:5 pkgconfig qt:5 tar:xz +USES= cmake gettext kde:5 pkgconfig qt:5 tar:xz USE_GNOME= intltool USE_KDE= completion config coreaddons ecm i18n jobwidgets kio \ notifications service widgetsaddons \ diff --git a/net/kitinerary/Makefile b/net/kitinerary/Makefile index d77bf7c4fdd7..a4f58c46a9a6 100644 --- a/net/kitinerary/Makefile +++ b/net/kitinerary/Makefile @@ -13,7 +13,7 @@ LICENSE= LGPL21 LIB_DEPENDS= libpoppler.so:graphics/poppler \ libzxing.so:textproc/zxing-cpp -USES= compiler:c++11-lang cmake:outsource gettext kde:5 pkgconfig qt:5 tar:xz +USES= compiler:c++11-lang cmake gettext kde:5 pkgconfig qt:5 tar:xz USE_KDE= ecm i18n # Pim components USE_KDE+= calendarcore contacts kpkpass mime diff --git a/net/kldap/Makefile b/net/kldap/Makefile index f0d21636f7b9..6047dfd0c4be 100644 --- a/net/kldap/Makefile +++ b/net/kldap/Makefile @@ -11,7 +11,7 @@ LICENSE= LGPL21 LIB_DEPENDS= libsasl2.so:security/cyrus-sasl2 -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= ecm completion config coreaddons i18n kio widgetsaddons service # pim components USE_KDE+= mbox diff --git a/net/kmailtransport/Makefile b/net/kmailtransport/Makefile index 43e48b1cbad2..4cf0722807ed 100644 --- a/net/kmailtransport/Makefile +++ b/net/kmailtransport/Makefile @@ -11,7 +11,7 @@ LICENSE= LGPL21 LIB_DEPENDS= libsasl2.so:security/cyrus-sasl2 -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons i18n \ itemmodels jobwidgets kcmutils kio service wallet widgetsaddons # pim components diff --git a/net/kmbox/Makefile b/net/kmbox/Makefile index 0418ff55dc4f..c7451cc69c0d 100644 --- a/net/kmbox/Makefile +++ b/net/kmbox/Makefile @@ -9,7 +9,7 @@ COMMENT= KDE library for accessing mail storages in MBox format LICENSE= LGPL21 -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= ecm # pim components USE_KDE+= mime diff --git a/net/kmime/Makefile b/net/kmime/Makefile index ea787364a220..de60b7ee29d3 100644 --- a/net/kmime/Makefile +++ b/net/kmime/Makefile @@ -11,7 +11,7 @@ LICENSE= LGPL21 LIB_DEPENDS= libboost_system.so:devel/boost-libs -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= codecs ecm emoticons i18n init itemmodels itemviews kdelibs4support USE_QT= core \ buildtools_build qmake_build diff --git a/net/kontactinterface/Makefile b/net/kontactinterface/Makefile index 2d76b916fc39..634bc323590e 100644 --- a/net/kontactinterface/Makefile +++ b/net/kontactinterface/Makefile @@ -9,7 +9,7 @@ COMMENT= KDE glue for embedding KParts into Kontact LICENSE= LGPL21 -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons ecm \ emoticons i18n iconthemes init itemmodels itemviews jobwidgets \ kdelibs4support kio parts service sonnet textwidgets \ diff --git a/net/kpimtextedit/Makefile b/net/kpimtextedit/Makefile index fa61c0ec3245..0c667da14a76 100644 --- a/net/kpimtextedit/Makefile +++ b/net/kpimtextedit/Makefile @@ -9,7 +9,7 @@ COMMENT= KDE library for PIM-specific text editing utilities LICENSE= LGPL21 -USES= cmake:outsource compiler:c++11-lib gettext grantlee:5 kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext grantlee:5 kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons ecm \ emoticons i18n iconthemes init itemmodels itemviews jobwidgets \ kdelibs4support kio service sonnet syntaxhighlighting textwidgets \ diff --git a/net/krdc-kde4/Makefile b/net/krdc-kde4/Makefile index 7c0c84a7eec3..08b566485637 100644 --- a/net/krdc-kde4/Makefile +++ b/net/krdc-kde4/Makefile @@ -14,7 +14,7 @@ EXPIRATION_DATE= 2018-12-31 LIB_DEPENDS= libvncserver.so:net/libvncserver \ libtelepathy-qt4.so:net-im/telepathy-qt@qt4 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs automoc4 USE_QT= moc_build qmake_build rcc_build uic_build USE_LDCONFIG= yes diff --git a/net/krdc/Makefile b/net/krdc/Makefile index 712e4d7a69ef..0e624575595a 100644 --- a/net/krdc/Makefile +++ b/net/krdc/Makefile @@ -9,7 +9,7 @@ COMMENT= RDP and VNC client for KDE LIB_DEPENDS= libvncserver.so:net/libvncserver -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons dnssd doctools ecm i18n iconthemes kcmutils \ notifications notifyconfig service wallet widgetsaddons \ diff --git a/net/krfb-kde4/Makefile b/net/krfb-kde4/Makefile index fe7a784124a6..0d21cffaa32a 100644 --- a/net/krfb-kde4/Makefile +++ b/net/krfb-kde4/Makefile @@ -13,7 +13,7 @@ EXPIRATION_DATE= 2018-12-31 LIB_DEPENDS= libtelepathy-qt4.so:net-im/telepathy-qt@qt4 -USES= alias cmake:outsource jpeg kde:4 qt:4 tar:xz +USES= alias cmake jpeg kde:4 qt:4 tar:xz USE_KDE= kdelibs automoc4 USE_QT= corelib gui network \ moc_build qmake_build rcc_build uic_build diff --git a/net/krfb/Makefile b/net/krfb/Makefile index 70f4c2cda29b..dac83f824855 100644 --- a/net/krfb/Makefile +++ b/net/krfb/Makefile @@ -10,7 +10,7 @@ COMMENT= VNC server for KDE LIB_DEPENDS= libvncserver.so:net/libvncserver \ libxcb-image.so:x11/xcb-util-image -USES= alias cmake:outsource compiler:c++11-lib gettext jpeg \ +USES= alias cmake compiler:c++11-lib gettext jpeg \ kde:5 pkgconfig qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons \ crash dbusaddons dnssd doctools ecm i18n notifications \ diff --git a/net/ksmtp/Makefile b/net/ksmtp/Makefile index 5e5541b4d4d5..ccea7a1a977a 100644 --- a/net/ksmtp/Makefile +++ b/net/ksmtp/Makefile @@ -10,7 +10,7 @@ COMMENT= Job-based library to send email through an SMTP server LICENSE= LGPL21 LIB_DEPENDS= libsasl2.so:security/cyrus-sasl2 -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= config coreaddons i18n kio service # pim components USE_KDE+= mime diff --git a/net/ktnef/Makefile b/net/ktnef/Makefile index f36c4a323b58..9cc952e693fc 100644 --- a/net/ktnef/Makefile +++ b/net/ktnef/Makefile @@ -9,7 +9,7 @@ COMMENT= KDE API for the handling of TNEF data LICENSE= LGPL21 -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= config coreaddons ecm i18n kdelibs4support # pim components USE_KDE+= calendarcore calendarutils contacts diff --git a/net/libgravatar/Makefile b/net/libgravatar/Makefile index bb98c75e0ab8..11aa923a045c 100644 --- a/net/libgravatar/Makefile +++ b/net/libgravatar/Makefile @@ -9,7 +9,7 @@ COMMENT= Library for gravatar support LICENSE= LGPL21 -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons ecm i18n kio \ service sonnet textwidgets widgetsaddons # pim components diff --git a/net/libjson-rpc-cpp/Makefile b/net/libjson-rpc-cpp/Makefile index 886983700a16..3f941e5ef5f2 100644 --- a/net/libjson-rpc-cpp/Makefile +++ b/net/libjson-rpc-cpp/Makefile @@ -16,7 +16,7 @@ LIB_DEPENDS= libcurl.so:ftp/curl \ libjsoncpp.so:devel/jsoncpp \ libargtable2.so:devel/argtable -USES= cmake:outsource pkgconfig +USES= cmake pkgconfig USE_LDCONFIG= yes USE_GITHUB= yes diff --git a/net/libkfbapi/Makefile b/net/libkfbapi/Makefile index 654aece80682..0ebb955ec739 100644 --- a/net/libkfbapi/Makefile +++ b/net/libkfbapi/Makefile @@ -17,7 +17,7 @@ EXPIRATION_DATE= 2018-12-31 LIB_DEPENDS= libqjson.so:devel/qjson@qt4 -USES= cmake:outsource gettext kde:4 qt:4 tar:bzip2 +USES= cmake gettext kde:4 qt:4 tar:bzip2 USE_KDE= automoc4 kdelibs pimlibs USE_LDCONFIG= yes USE_QT= gui webkit \ diff --git a/net/libkgapi/Makefile b/net/libkgapi/Makefile index 5e892e81ee23..adeda2a20594 100644 --- a/net/libkgapi/Makefile +++ b/net/libkgapi/Makefile @@ -15,7 +15,7 @@ LIB_DEPENDS= libical.so:devel/libical \ CONFLICTS_BUILD= kdepim-runtime-18.0[04]* \ kdepim-runtime-17.* -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash ecm emoticons guiaddons i18n iconthemes init \ itemmodels itemviews jobwidgets kdelibs4support kio \ diff --git a/net/libksieve/Makefile b/net/libksieve/Makefile index b50ce3349a07..bbe9f06a9cdd 100644 --- a/net/libksieve/Makefile +++ b/net/libksieve/Makefile @@ -12,7 +12,7 @@ LICENSE= LGPL21 LIB_DEPENDS= libboost_system.so:devel/boost-libs \ libsasl2.so:security/cyrus-sasl2 -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= archive attica auth codecs completion config configwidgets \ coreaddons ecm i18n iconthemes jobwidgets kio newstuff service \ sonnet syntaxhighlighting wallet widgetsaddons windowsystem xmlgui diff --git a/net/libkvkontakte-kde4/Makefile b/net/libkvkontakte-kde4/Makefile index 275d77b7feb6..61e79f010b70 100644 --- a/net/libkvkontakte-kde4/Makefile +++ b/net/libkvkontakte-kde4/Makefile @@ -19,7 +19,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING.LIB LIB_DEPENDS= libqjson.so:devel/qjson@qt4 -USES= cmake:outsource gettext kde:4 pkgconfig qt:4 tar:xz +USES= cmake gettext kde:4 pkgconfig qt:4 tar:xz USE_QT= moc_build qmake_build rcc_build uic_build USE_KDE= automoc4 kdelibs USE_LDCONFIG= yes diff --git a/net/libkvkontakte/Makefile b/net/libkvkontakte/Makefile index 5e11f48176e4..be649ee8ea7b 100644 --- a/net/libkvkontakte/Makefile +++ b/net/libkvkontakte/Makefile @@ -13,7 +13,7 @@ COMMENT= KDE library for accessing vk.com LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/COPYING.LIB -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +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= core gui network webkit widgets \ buildtools_build qmake_build diff --git a/net/liblinphone/Makefile b/net/liblinphone/Makefile index 6570b535dbd1..37a1feec42e9 100644 --- a/net/liblinphone/Makefile +++ b/net/liblinphone/Makefile @@ -24,7 +24,7 @@ LIB_DEPENDS= libbctoolbox.so:net/bctoolbox \ libortp.so:net/ortp \ libsqlite3.so:databases/sqlite3 -USES= cmake:outsource compiler:c++11-lib gnome iconv pkgconfig \ +USES= cmake compiler:c++11-lib gnome iconv pkgconfig \ python:build USE_GNOME= libxml2 USE_LDCONFIG= yes diff --git a/net/libmediawiki/Makefile b/net/libmediawiki/Makefile index 9715c4afa81c..3b0e7014bafb 100644 --- a/net/libmediawiki/Makefile +++ b/net/libmediawiki/Makefile @@ -13,7 +13,7 @@ COMMENT= KDE library for accessing MediaWiki sites LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/COPYING.LIB -USES= cmake:outsource compiler:c++11-lang kde:5 qt:5 tar:xz +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 diff --git a/net/libproxy/Makefile b/net/libproxy/Makefile index 4aab937c72fb..ed4e14e55be7 100644 --- a/net/libproxy/Makefile +++ b/net/libproxy/Makefile @@ -12,7 +12,7 @@ COMMENT?= Library that provides automatic proxy configuration management LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/COPYING -USES+= cmake:outsource cpe pathfix pkgconfig +USES+= cmake cpe pathfix pkgconfig CPE_VENDOR= libproxy_project PATHFIX_CMAKELISTSTXT= devfiles.cmk USE_GITHUB= yes diff --git a/net/linphone/Makefile b/net/linphone/Makefile index 5882d80c3e9d..c7492acc0a9e 100644 --- a/net/linphone/Makefile +++ b/net/linphone/Makefile @@ -15,7 +15,7 @@ LIB_DEPENDS= libbctoolbox.so:net/bctoolbox \ libbelcard.so:deskutils/belcard \ liblinphone++.so:net/liblinphone -USES= cmake:outsource compiler:c++11-lib pkgconfig qt:5 +USES= cmake compiler:c++11-lib pkgconfig qt:5 USE_QT= buildtools_build concurrent core declarative \ graphicaleffects_run gui linguisttools network qmake_build \ quickcontrols_run quickcontrols2 speech svg testlib widgets diff --git a/net/mailcommon/Makefile b/net/mailcommon/Makefile index 1b60ccdb47b7..b4066f4e67ff 100644 --- a/net/mailcommon/Makefile +++ b/net/mailcommon/Makefile @@ -16,7 +16,7 @@ LIB_DEPENDS= libassuan.so:security/libassuan \ libgpgmepp.so:security/gpgme-cpp \ libqgpgme.so:security/gpgme-qt5 -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= archive auth codecs completion config configwidgets coreaddons \ ecm i18n iconthemes itemmodels itemviews jobwidgets kio \ service sonnet syntaxhighlighting textwidgets wallet \ diff --git a/net/mailimporter/Makefile b/net/mailimporter/Makefile index c630f535acb0..91bac5f8cff3 100644 --- a/net/mailimporter/Makefile +++ b/net/mailimporter/Makefile @@ -11,7 +11,7 @@ LICENSE= LGPL21 LIB_DEPENDS= libboost_system.so:devel/boost-libs -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= archive config coreaddons ecm i18n itemmodels # pim components USE_KDE+= akonadi akonadimime libkdepim mime diff --git a/net/mediastreamer/Makefile b/net/mediastreamer/Makefile index 822315d8f203..6d48c2b964c1 100644 --- a/net/mediastreamer/Makefile +++ b/net/mediastreamer/Makefile @@ -19,7 +19,7 @@ LIB_DEPENDS= libbctoolbox.so:net/bctoolbox \ libsrtp2.so:net/libsrtp2 \ libbzrtp.so:security/bzrtp -USES= cmake:outsource compiler python:build +USES= cmake compiler python:build USE_LDCONFIG= yes CMAKE_ARGS= -DENABLE_ALSA=NO -DENABLE_BV16=NO -DENABLE_DOC=NO \ diff --git a/net/messagelib/Makefile b/net/messagelib/Makefile index 50870ea5e603..b7c9efafa5d9 100644 --- a/net/messagelib/Makefile +++ b/net/messagelib/Makefile @@ -16,7 +16,7 @@ LIB_DEPENDS= libassuan.so:security/libassuan \ libgpgmepp.so:security/gpgme-cpp \ libqgpgme.so:security/gpgme-qt5 -USES= cmake:outsource compiler:c++11-lib gettext grantlee:5 kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext grantlee:5 kde:5 qt:5 tar:xz USE_KDE= archive auth bookmarks codecs completion config configwidgets \ coreaddons ecm i18n iconthemes itemmodels itemviews jobwidgets \ kdewebkit kio service solid sonnet syntaxhighlighting \ diff --git a/net/nitroshare/Makefile b/net/nitroshare/Makefile index b89878d16725..98de8f098d14 100644 --- a/net/nitroshare/Makefile +++ b/net/nitroshare/Makefile @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt LIB_DEPENDS= libqhttpengine.so:www/qhttpengine \ libqmdnsengine.so:dns/qmdnsengine -USES= cmake:outsource qt:5 +USES= cmake qt:5 USE_GITHUB= yes GH_PROJECT= ${PORTNAME}-desktop USE_QT= core gui network widgets buildtools_build qmake_build diff --git a/net/nng/Makefile b/net/nng/Makefile index 1ab74d5e2f64..44799180ebbb 100644 --- a/net/nng/Makefile +++ b/net/nng/Makefile @@ -11,7 +11,7 @@ COMMENT= Lightweight, broker-less messaging LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt -USES= cmake:outsource +USES= cmake USE_GITHUB= yes GH_ACCOUNT= nanomsg diff --git a/net/ortp/Makefile b/net/ortp/Makefile index 64e5bcd8eeaa..bb228e53460b 100644 --- a/net/ortp/Makefile +++ b/net/ortp/Makefile @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libbctoolbox.so:net/bctoolbox -USES= cmake:outsource compiler:c11 +USES= cmake compiler:c11 USE_LDCONFIG= yes CMAKE_ARGS= -DENABLE_DOC=NO -DENABLE_STATIC=NO -DENABLE_STRICT=NO diff --git a/net/pimcommon/Makefile b/net/pimcommon/Makefile index 0b2b32dc482b..6efbf3e38204 100644 --- a/net/pimcommon/Makefile +++ b/net/pimcommon/Makefile @@ -11,7 +11,7 @@ LICENSE= LGPL21 LIB_DEPENDS= libboost_system.so:devel/boost-libs -USES= cmake:outsource compiler:c++11-lib gettext grantlee:5 kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext grantlee:5 kde:5 qt:5 tar:xz USE_KDE= archive attica auth codecs completion config configwidgets \ dbusaddons ecm emoticons i18n init iconthemes itemmodels \ jobwidgets kdelibs4support kio newstuff service sonnet textwidgets \ diff --git a/net/remmina/Makefile b/net/remmina/Makefile index 6b9814be5012..d9997abaa172 100644 --- a/net/remmina/Makefile +++ b/net/remmina/Makefile @@ -20,7 +20,7 @@ GL_ACCOUNT= Remmina GL_PROJECT= Remmina GL_COMMIT= 65d552c9becc957cae124ab5c26562cf22c052b9 -USES= cmake:outsource desktop-file-utils gettext localbase:ldflags pathfix \ +USES= cmake desktop-file-utils gettext localbase:ldflags pathfix \ pkgconfig shared-mime-info ssl USE_GNOME= atk cairo gdkpixbuf2 glib20 gtk30 pango USE_XORG= ice sm x11 xext xkbfile diff --git a/net/subnetcalc/Makefile b/net/subnetcalc/Makefile index 31c71fa2d60c..fcd44f78ce63 100644 --- a/net/subnetcalc/Makefile +++ b/net/subnetcalc/Makefile @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libGeoIP.so:net/GeoIP -USES= cmake:outsource +USES= cmake CMAKE_ARGS= -DCMAKE_INSTALL_MANDIR:PATH="man" PLIST_FILES= bin/subnetcalc \ diff --git a/net/tigervnc/Makefile b/net/tigervnc/Makefile index 5ad67929f57c..0ee4d71ae0f1 100644 --- a/net/tigervnc/Makefile +++ b/net/tigervnc/Makefile @@ -24,7 +24,7 @@ LIB_DEPENDS= libunwind.so:devel/libunwind \ RUN_DEPENDS= ${LOCALBASE}/share/X11/xkb/rules/base:x11/xkeyboard-config \ xkbcomp:x11/xkbcomp -USES= autoreconf:build cmake:noninja cpe gl iconv jpeg libtool \ +USES= autoreconf:build cmake:insource,noninja cpe gl iconv jpeg libtool \ pkgconfig python ssl USE_GL= gl USE_LDCONFIG= yes diff --git a/net/zeroconf-ioslave-kde4/Makefile b/net/zeroconf-ioslave-kde4/Makefile index 165b9555034f..951c5604300a 100644 --- a/net/zeroconf-ioslave-kde4/Makefile +++ b/net/zeroconf-ioslave-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= KDE Network monitor for DNS-SD services (Zeroconf) DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs automoc4 USE_QT= moc_build qmake_build rcc_build uic_build diff --git a/net/zeroconf-ioslave/Makefile b/net/zeroconf-ioslave/Makefile index 3173d2f02dca..15f0f18045ce 100644 --- a/net/zeroconf-ioslave/Makefile +++ b/net/zeroconf-ioslave/Makefile @@ -7,7 +7,7 @@ CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE Network monitor for DNS-SD services (Zeroconf) -USES= cmake:outsource kde:5 qt:5 tar:xz +USES= cmake kde:5 qt:5 tar:xz USE_KDE= config coreaddons dbusaddons dnssd i18n kio service USE_QT= core dbus network \ buildtools_build qmake_build diff --git a/net/zmap/Makefile b/net/zmap/Makefile index 9370ca88417e..2e23e2f5996e 100644 --- a/net/zmap/Makefile +++ b/net/zmap/Makefile @@ -19,7 +19,7 @@ LIB_DEPENDS= libdnet.so:net/libdnet \ USE_GITHUB= yes -USES= cmake pkgconfig +USES= cmake:insource pkgconfig MANPAGE= zblacklist.1 zmap.1 ztee.1 diff --git a/net/zyre/Makefile b/net/zyre/Makefile index 82e670c03851..db7857adbee5 100644 --- a/net/zyre/Makefile +++ b/net/zyre/Makefile @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libczmq.so:net/czmq \ libzmq.so:net/libzmq4 -USES= cmake:outsource +USES= cmake USE_GITHUB= yes GH_ACCOUNT= zeromq USE_LDCONFIG= yes diff --git a/polish/kadu/Makefile b/polish/kadu/Makefile index aee0d3169b1a..fd78e1386d67 100644 --- a/polish/kadu/Makefile +++ b/polish/kadu/Makefile @@ -36,7 +36,7 @@ LIB_DEPENDS= libmpdclient.so:audio/libmpdclient \ GG6_EMOTS_DISTFILE= kompatybilne_z_GG6.tar.gz GG7_EMOTS_DISTFILE= dodatkowe_emoty_GG7.tar.gz -USES= cmake compiler:c++11-lib gettext-runtime \ +USES= cmake:insource compiler:c++11-lib gettext-runtime \ libarchive pkgconfig qt:5 readline tar:bzip2 USE_XORG= x11 xext xfixes xscrnsaver USE_GNOME= glib20 diff --git a/print/gl2ps/Makefile b/print/gl2ps/Makefile index e176072ddf1d..f0d72e516909 100644 --- a/print/gl2ps/Makefile +++ b/print/gl2ps/Makefile @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING.LGPL LIB_DEPENDS= libpng.so:graphics/png -USES= cmake:outsource tar:tgz +USES= cmake tar:tgz USE_GL= gl USE_LDCONFIG= yes WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}-source diff --git a/print/libharu/Makefile b/print/libharu/Makefile index f2b8657d4a70..94d81d6e5aff 100644 --- a/print/libharu/Makefile +++ b/print/libharu/Makefile @@ -15,7 +15,7 @@ LIB_DEPENDS= libpng.so:graphics/png OPTIONS_DEFINE= EXAMPLES USE_LDCONFIG= yes -USES+= cmake:outsource +USES+= cmake USE_GITHUB= yes diff --git a/print/print-manager-kde4/Makefile b/print/print-manager-kde4/Makefile index 089b090de68f..710c61542a58 100644 --- a/print/print-manager-kde4/Makefile +++ b/print/print-manager-kde4/Makefile @@ -14,7 +14,7 @@ EXPIRATION_DATE= 2018-12-31 LIB_DEPENDS= libcups.so:print/cups RUN_DEPENDS= ${LOCALBASE}/share/cups/data/testprint:print/cups-filters -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs automoc4 USE_QT= designer network \ qmake_build moc_build uic_build rcc_build diff --git a/print/print-manager/Makefile b/print/print-manager/Makefile index cbeb8596c0fc..2797264f9601 100644 --- a/print/print-manager/Makefile +++ b/print/print-manager/Makefile @@ -9,7 +9,7 @@ COMMENT= Printer manager for KDE LIB_DEPENDS= libcups.so:print/cups -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons \ dbusaddons ecm i18n iconthemes itemviews jobwidgets kcmutils \ kio notifications plasma-framework service widgetsaddons \ diff --git a/print/scribus-devel/Makefile b/print/scribus-devel/Makefile index a1493c8e0a11..74ba22f66497 100644 --- a/print/scribus-devel/Makefile +++ b/print/scribus-devel/Makefile @@ -36,7 +36,7 @@ LIB_DEPENDS= liblcms2.so:graphics/lcms2 \ libharfbuzz.so:print/harfbuzz \ libicuuc.so:devel/icu -USES= cmake:outsource desktop-file-utils dos2unix jpeg pkgconfig python qt:5 shared-mime-info ssl tar:xz +USES= cmake desktop-file-utils dos2unix jpeg pkgconfig python qt:5 shared-mime-info ssl tar:xz USE_QT= buildtools_build core declarative gui linguisttools_build network opengl \ printsupport qmake_build widgets xml USE_GNOME= libxml2 diff --git a/print/scribus/Makefile b/print/scribus/Makefile index 36972dfa22ac..f8d65dc76f92 100644 --- a/print/scribus/Makefile +++ b/print/scribus/Makefile @@ -33,7 +33,7 @@ LIB_DEPENDS= liblcms.so:graphics/lcms \ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}tkinter>0:x11-toolkits/py-tkinter@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pillow>=0:graphics/py-pillow@${PY_FLAVOR} -USES= cmake:outsource desktop-file-utils ghostscript:run jpeg \ +USES= cmake desktop-file-utils ghostscript:run jpeg \ pkgconfig python:2.7 qt:4 shared-mime-info tar:xz USE_QT= corelib gui linguist_build moc_build qmake_build rcc_build uic_build xml network USE_GNOME= libartlgpl2 libxml2 diff --git a/science/ALPSCore/Makefile b/science/ALPSCore/Makefile index 9623030ffe4a..ded394379d9a 100644 --- a/science/ALPSCore/Makefile +++ b/science/ALPSCore/Makefile @@ -16,7 +16,7 @@ LIB_DEPENDS= libboost_system.so:devel/boost-libs \ libhdf5.so:science/hdf5 \ libsz.so:science/szip -USES= cmake:outsource eigen:3 +USES= cmake eigen:3 USE_GITHUB= yes USE_LDCONFIG= yes TEST_TARGET= test # 2 to 3 tests fail: https://github.com/ALPSCore/ALPSCore/issues/388 diff --git a/science/InsightToolkit/Makefile b/science/InsightToolkit/Makefile index 41c247e6fdcd..e72b6585d679 100644 --- a/science/InsightToolkit/Makefile +++ b/science/InsightToolkit/Makefile @@ -21,7 +21,7 @@ LIB_DEPENDS= libgdcmCommon.so:devel/gdcm \ libsz.so:science/szip \ libtiff.so:graphics/tiff -USES= cmake:outsource compiler:c11 jpeg +USES= cmake compiler:c11 jpeg CMAKE_ARGS+= -DBUILD_SHARED_LIBS:BOOL=ON \ -DITK_USE_KWSTYLE:BOOL=OFF \ -DITK_USE_SYSTEM_LIBRARIES:BOOL=ON \ diff --git a/science/MOOSE-neural-simulator/Makefile b/science/MOOSE-neural-simulator/Makefile index dda47f1acb4a..ff9d8ccca863 100644 --- a/science/MOOSE-neural-simulator/Makefile +++ b/science/MOOSE-neural-simulator/Makefile @@ -28,7 +28,7 @@ RUN_DEPENDS= ${PYNUMPY} \ ${PYTHON_PKGNAMEPREFIX}pygraphviz>=0:graphics/py-pygraphviz@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}suds-jurko>=0.4:net/py-suds-jurko@${PY_FLAVOR} -USES= cmake:outsource fortran gettext-runtime pyqt:4 python:2.7 +USES= cmake fortran gettext-runtime pyqt:4 python:2.7 USE_GITHUB= yes GH_ACCOUNT= BhallaLab GH_PROJECT= moose diff --git a/science/agrum/Makefile b/science/agrum/Makefile index 41fb26b174a5..119143e39901 100644 --- a/science/agrum/Makefile +++ b/science/agrum/Makefile @@ -11,7 +11,7 @@ COMMENT= Graphical modeler for Bayesian networks, influence diagrams, etc LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE -USES= cmake:outsource +USES= cmake USE_GITLAB= yes GL_ACCOUNT= agrumery GL_PROJECT= aGrUM diff --git a/science/avogadro2/Makefile b/science/avogadro2/Makefile index 47cca2ab8e29..fab60b0537de 100644 --- a/science/avogadro2/Makefile +++ b/science/avogadro2/Makefile @@ -15,7 +15,7 @@ BUILD_DEPENDS= hdf5>0:science/hdf5 LIB_DEPENDS= libAvogadroCore.so:science/avogadrolibs \ libMoleQueueClient.so:misc/molequeue -USES= cmake:outsource compiler:c++11-lang desktop-file-utils gl libarchive qt:5 +USES= cmake compiler:c++11-lang desktop-file-utils gl libarchive qt:5 USE_GITHUB= yes GH_ACCOUNT= OpenChemistry GH_PROJECT= avogadroapp diff --git a/science/avogadrolibs/Makefile b/science/avogadrolibs/Makefile index 2508dfacf600..30352f80c2a6 100644 --- a/science/avogadrolibs/Makefile +++ b/science/avogadrolibs/Makefile @@ -17,7 +17,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= ${LOCALBASE}/include/mmtf.hpp:science/mmtf -USES= cmake:outsource compiler:c++11-lang eigen:3,build,run # eigen needs to be 'run' because it is written into cmake files +USES= cmake compiler:c++11-lang eigen:3,build,run # eigen needs to be 'run' because it is written into cmake files USE_GITHUB= yes GH_ACCOUNT= OpenChemistry USE_LDCONFIG= yes diff --git a/science/chemps2/Makefile b/science/chemps2/Makefile index 2dc40346d2fc..5dde503cd33a 100644 --- a/science/chemps2/Makefile +++ b/science/chemps2/Makefile @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libhdf5.so:science/hdf5 \ libsz.so:science/szip -USES= blaslapack:openblas cmake:outsource fortran +USES= blaslapack:openblas cmake fortran USE_GITHUB= yes GH_ACCOUNT= SebWouters USE_LDCONFIG= yes diff --git a/science/chrono/Makefile b/science/chrono/Makefile index 911cd8e340c5..868617e0d37a 100644 --- a/science/chrono/Makefile +++ b/science/chrono/Makefile @@ -16,7 +16,7 @@ PORTSCOUT= skipv:3.0.0 # their development continues under the branch 2.X. 3.0.0 BUILD_DEPENDS= openmpi>0:net/openmpi -USES= cmake:outsource compiler:c++14-lang fortran +USES= cmake compiler:c++14-lang fortran USE_GITHUB= yes GH_ACCOUNT= project${PORTNAME} USE_LDCONFIG= yes diff --git a/science/clhep/Makefile b/science/clhep/Makefile index 755db009fabd..763fa7db671b 100644 --- a/science/clhep/Makefile +++ b/science/clhep/Makefile @@ -15,7 +15,7 @@ LICENSE_COMB= multi WRKSRC= ${WRKDIR}/${PORTVERSION}/${PORTNAME:tu} -USES= cmake:outsource compiler:c++11-lang perl5 tar:tgz +USES= cmake compiler:c++11-lang perl5 tar:tgz USE_PERL5= build USE_LDCONFIG= yes diff --git a/science/coordgenlibs/Makefile b/science/coordgenlibs/Makefile index ef62696619bb..2d9a824569e8 100644 --- a/science/coordgenlibs/Makefile +++ b/science/coordgenlibs/Makefile @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= ${LOCALBASE}/include/boost/dynamic_bitset.hpp:devel/boost-libs LIB_DEPENDS= libmaeparser.so:science/maeparser -USES= cmake:outsource compiler:c++11-lang localbase:ldflags +USES= cmake compiler:c++11-lang localbase:ldflags USE_GITHUB= yes GH_ACCOUNT= schrodinger USE_LDCONFIG= yes diff --git a/science/dalton/Makefile b/science/dalton/Makefile index de3ed7f60ab1..692ca3243d7d 100644 --- a/science/dalton/Makefile +++ b/science/dalton/Makefile @@ -13,7 +13,7 @@ LIB_DEPENDS= liblapack.so:math/lapack \ libopenblas.so:math/openblas RUN_DEPENDS= bash:shells/bash -USES= cmake:outsource,noninja fortran python:build shebangfix +USES= cmake:noninja fortran python:build shebangfix SHEBANG_FILES= dalton.in USE_GITLAB= yes GL_COMMIT= d16802317e0785578e491e600c73cfb6bfb70ff0 diff --git a/science/dft_tools/Makefile b/science/dft_tools/Makefile index c3d16b89760d..549385bfd242 100644 --- a/science/dft_tools/Makefile +++ b/science/dft_tools/Makefile @@ -23,7 +23,7 @@ LIB_DEPENDS= libcpp2py.so:devel/cpp2py \ libsz.so:science/szip \ libtriqs.so:science/triqs -USES= cmake:outsource,noninja fortran gettext-runtime python:-2.7 +USES= cmake:noninja fortran gettext-runtime python:-2.7 USE_GITHUB= yes GH_ACCOUNT= TRIQS diff --git a/science/dkh/Makefile b/science/dkh/Makefile index 4dec6c080b03..0943b67482bb 100644 --- a/science/dkh/Makefile +++ b/science/dkh/Makefile @@ -11,7 +11,7 @@ COMMENT= Wolf, Reiher, and Hess's Douglas-Kroll-Hess relativistic correction LICENSE= GPLv3 -USES= cmake:outsource fortran +USES= cmake fortran USE_GITHUB= yes GH_ACCOUNT= psi4 USE_LDCONFIG= yes diff --git a/science/dlib-cpp/Makefile b/science/dlib-cpp/Makefile index 40555918ebef..d013a9c39c4b 100644 --- a/science/dlib-cpp/Makefile +++ b/science/dlib-cpp/Makefile @@ -13,7 +13,7 @@ COMMENT= Machine learning framework written in C++ LICENSE= BSL LICENSE_FILE= ${WRKSRC}/dlib/LICENSE.txt -USES= cmake:outsource pkgconfig tar:bzip2 +USES= cmake pkgconfig tar:bzip2 USE_LDCONFIG= yes OPTIONS_DEFINE= X11 JPEG PNG GIF SQLITE BLASLAPACK PYTHON AVX diff --git a/science/eccodes/Makefile b/science/eccodes/Makefile index 1a740e2d944b..a93ebf0d317c 100644 --- a/science/eccodes/Makefile +++ b/science/eccodes/Makefile @@ -29,7 +29,7 @@ CMAKE_ARGS= -DBUILD_SHARED_LIBS=BOTH CMAKE_OFF= ENABLE_ECCODES_OMP_THREADS ENABLE_FORTRAN ENABLE_MEMFS ENABLE_PYTHON CMAKE_ON= ENABLE_ECCODES_THREADS ENABLE_NETCDF ENABLE_PNG USE_LDCONFIG= yes -USES= cmake:outsource shebangfix +USES= cmake shebangfix SHEBANG_FILES= tools/bufr_compare_dir diff --git a/science/erd/Makefile b/science/erd/Makefile index f3fa332633f7..9b028f95835e 100644 --- a/science/erd/Makefile +++ b/science/erd/Makefile @@ -12,7 +12,7 @@ COMMENT= AcesIII electron repulsion integrals LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/LICENSE -USES= cmake:outsource fortran +USES= cmake fortran USE_GITHUB= yes GH_ACCOUNT= psi4 USE_LDCONFIG= yes diff --git a/science/erkale/Makefile b/science/erkale/Makefile index 2fffd06cd6da..d30a2ab6f266 100644 --- a/science/erkale/Makefile +++ b/science/erkale/Makefile @@ -26,7 +26,7 @@ FLAVORS= serial parallel FLAVOR?= ${FLAVORS:[1]} serial_PKGNAMESUFFIX= -serial -USES= cmake:outsource,noninja fortran pkgconfig +USES= cmake:noninja fortran pkgconfig USE_GITHUB= yes GH_ACCOUNT= susilehtola GH_TAGNAME= 0927d8c diff --git a/science/esys-particle/Makefile b/science/esys-particle/Makefile index 0e258e2f3fc7..b9bd457bb820 100644 --- a/science/esys-particle/Makefile +++ b/science/esys-particle/Makefile @@ -15,7 +15,7 @@ LICENSE= APACHE20 LIB_DEPENDS= libboost_system.so:devel/boost-libs \ libmpi.so:net/mpich -USES= cmake:outsource fortran +USES= cmake fortran USE_LDCONFIG= yes LDFLAGS+= ${LOCALBASE}/lib/libboost_filesystem.so diff --git a/science/fleur/Makefile b/science/fleur/Makefile index 8e7974fc19bd..275080ff1702 100644 --- a/science/fleur/Makefile +++ b/science/fleur/Makefile @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libopenblas.so:math/openblas -USES= cmake:outsource,noninja fortran gnome localbase:ldflags tar:tgz +USES= cmake:noninja fortran gnome localbase:ldflags tar:tgz USE_GNOME= libxml2 FFLAGS= -I${LOCALBASE}/include diff --git a/science/gdma/Makefile b/science/gdma/Makefile index 95b4e9bb4064..b0a56d071a00 100644 --- a/science/gdma/Makefile +++ b/science/gdma/Makefile @@ -12,7 +12,7 @@ COMMENT= Anthony Stone's Gaussian Distributed Multipole Analysis LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/LICENSE -USES= cmake:outsource fortran +USES= cmake fortran USE_GITHUB= yes GH_ACCOUNT= psi4 USE_LDCONFIG= yes diff --git a/science/gnudatalanguage/Makefile b/science/gnudatalanguage/Makefile index 2dda377f17b6..d5110e643fe1 100644 --- a/science/gnudatalanguage/Makefile +++ b/science/gnudatalanguage/Makefile @@ -26,7 +26,7 @@ LIB_DEPENDS+= libgeotiff.so:graphics/libgeotiff\ USE_GITHUB= yes GH_PROJECT= gdl -USES= cmake:outsource compiler:c++11-lang fortran ncurses pkgconfig readline tar:tgz +USES= cmake compiler:c++11-lang fortran ncurses pkgconfig readline tar:tgz USE_WX= 3.0+ USE_XORG= x11 sm ice xext diff --git a/science/gromacs/Makefile b/science/gromacs/Makefile index 849604331ce5..883d55bbc4ad 100644 --- a/science/gromacs/Makefile +++ b/science/gromacs/Makefile @@ -16,7 +16,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= boost-libs>=1.44:devel/boost-libs LIB_DEPENDS= libhwloc.so:devel/hwloc -USES= cmake:outsource compiler:c++11-lang fortran gnome perl5 pkgconfig shebangfix +USES= cmake compiler:c++11-lang fortran gnome perl5 pkgconfig shebangfix SHEBANG_FILES= admin/*.sh scripts/*.pl scripts/*.sh src/gromacs/selection/*.sh bash_CMD= ${SH} USE_GNOME= libxml2 diff --git a/science/jdftx/Makefile b/science/jdftx/Makefile index 68e1456fb601..2d6a8b6b075c 100644 --- a/science/jdftx/Makefile +++ b/science/jdftx/Makefile @@ -22,7 +22,7 @@ LIB_DEPENDS= libblas.so:math/blas \ RUN_DEPENDS= bash:shells/bash TEST_DEPENDS= bash:shells/bash -USES= compiler:c++11-lang cmake:outsource fortran localbase:ldflags shebangfix +USES= compiler:c++11-lang cmake fortran localbase:ldflags shebangfix SHEBANG_GLOB= *.sh SHEBANG_FILES= scripts/* SHEBANG_LANG= octave diff --git a/science/kalzium-kde4/Makefile b/science/kalzium-kde4/Makefile index d2e61c9cf9ca..81066195f0a8 100644 --- a/science/kalzium-kde4/Makefile +++ b/science/kalzium-kde4/Makefile @@ -17,7 +17,7 @@ BUILD_DEPENDS= ${LOCALBASE}/lib/ocaml/facile/facile.a:math/facile \ ${LOCALBASE}/libdata/pkgconfig/chemical-mime-data.pc:science/chemical-mime-data RUN_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/chemical-mime-data.pc:science/chemical-mime-data -USES= cmake:outsource eigen:2 kde:4 pkgconfig qt:4 tar:xz +USES= cmake eigen:2 kde:4 pkgconfig qt:4 tar:xz USE_KDE= kdelibs automoc4 USE_OCAML= yes NO_OCAML_RUNDEPENDS= yes diff --git a/science/kalzium/Makefile b/science/kalzium/Makefile index cb7bd3bbd1b4..6393a01e0237 100644 --- a/science/kalzium/Makefile +++ b/science/kalzium/Makefile @@ -13,7 +13,7 @@ BUILD_DEPENDS= ${LOCALBASE}/lib/ocaml/facile/facile.a:math/facile \ ${LOCALBASE}/libdata/pkgconfig/chemical-mime-data.pc:science/chemical-mime-data RUN_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/chemical-mime-data.pc:science/chemical-mime-data -USES= cmake:outsource desktop-file-utils gettext kde:5 pkgconfig qt:5 tar:xz +USES= cmake desktop-file-utils gettext kde:5 pkgconfig qt:5 tar:xz USE_GL= gl glew glu USE_KDE= auth archive attica bookmarks codecs completion config configwidgets \ coreaddons crash doctools ecm emoticons guiaddons i18n \ diff --git a/science/kst2/Makefile b/science/kst2/Makefile index a9a44ed7cfbd..0899aa949874 100644 --- a/science/kst2/Makefile +++ b/science/kst2/Makefile @@ -21,7 +21,7 @@ LIB_DEPENDS= libgsl.so:math/gsl \ KST_VERSION= 2.0.8 KST_DATE= 20181123 -USES= cmake:outsource desktop-file-utils pkgconfig \ +USES= cmake desktop-file-utils pkgconfig \ shared-mime-info _USE_QT4= corelib gui xml designer network svg linguisttools_build \ qmake_build moc_build rcc_build uic_build diff --git a/science/lammps/Makefile b/science/lammps/Makefile index 6fc620a0eda2..b2c3c44fbe7e 100644 --- a/science/lammps/Makefile +++ b/science/lammps/Makefile @@ -13,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE BROKEN_i386= undefined reference to `__atomic_load' CONFLICTS_BUILD= ga # conflicts with include/error.h, already fixed in the head -USES= blaslapack:openblas cmake:outsource,noninja eigen:3 fortran shebangfix +USES= blaslapack:openblas cmake:noninja eigen:3 fortran shebangfix USE_GITHUB= yes GH_TAGNAME= stable_12Dec2018 SHEBANG_GLOB= *.sh *.bash diff --git a/science/latte/Makefile b/science/latte/Makefile index 38f804b5c799..78cf428dd025 100644 --- a/science/latte/Makefile +++ b/science/latte/Makefile @@ -12,7 +12,7 @@ COMMENT= Quantum chemistry: Density functional tight binding molecular dynamics LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE_GPL-2.0 -USES= blaslapack:openblas cmake:outsource,noninja fortran shebangfix +USES= blaslapack:openblas cmake:noninja fortran shebangfix SHEBANG_FILES= tests/run_test.sh USE_GITHUB= yes GH_ACCOUNT= lanl diff --git a/science/libcint/Makefile b/science/libcint/Makefile index d5dc9bae3483..5ad1e7a8d7dc 100644 --- a/science/libcint/Makefile +++ b/science/libcint/Makefile @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libopenblas.so:math/openblas -USES= cmake:outsource blaslapack:openblas +USES= cmake blaslapack:openblas USE_GITHUB= yes GH_ACCOUNT= sunqm USE_LDCONFIG= yes diff --git a/science/libefp/Makefile b/science/libefp/Makefile index 4fb8993c67a4..8edc4d563a31 100644 --- a/science/libefp/Makefile +++ b/science/libefp/Makefile @@ -10,7 +10,7 @@ COMMENT= Effective fragment potential method in quantum chemistry LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -USES= cmake:outsource +USES= cmake USE_GITHUB= yes GH_ACCOUNT= ilyak USE_LDCONFIG= yes diff --git a/science/libgeodecomp/Makefile b/science/libgeodecomp/Makefile index e7a1c0172507..c09651869f32 100644 --- a/science/libgeodecomp/Makefile +++ b/science/libgeodecomp/Makefile @@ -16,7 +16,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libboost_system.so:devel/boost-libs libboost_date_time.so:devel/boost-libs \ libboost_filesystem.so:devel/boost-libs -USES= cmake:outsource compiler:c++11-lib +USES= cmake compiler:c++11-lib USE_GCC= yes USE_LDCONFIG= yes diff --git a/science/libmsym/Makefile b/science/libmsym/Makefile index adf1c179ffe0..090edf0099e4 100644 --- a/science/libmsym/Makefile +++ b/science/libmsym/Makefile @@ -12,7 +12,7 @@ COMMENT= Molecular point group symmetry library LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -USES= cmake:outsource +USES= cmake USE_GITHUB= yes GH_ACCOUNT= mcodev31 USE_LDCONFIG= yes diff --git a/science/liggghts/Makefile b/science/liggghts/Makefile index 8355537c7b63..14e8b37149a3 100644 --- a/science/liggghts/Makefile +++ b/science/liggghts/Makefile @@ -19,7 +19,7 @@ LIB_DEPENDS= libexpat.so:textproc/expat2 \ libtiff.so:graphics/tiff \ libvtkViewsCore-8.1.so:math/vtk8 -USES= compiler:c++17-lang cmake:outsource fortran jpeg qt:5 +USES= compiler:c++17-lang cmake fortran jpeg qt:5 USE_GITHUB= yes GH_ACCOUNT= CFDEMproject GH_PROJECT= ${PORTNAME:tu}-PUBLIC diff --git a/science/luscus/Makefile b/science/luscus/Makefile index 7baf1f6d42db..326c7e9f6df8 100644 --- a/science/luscus/Makefile +++ b/science/luscus/Makefile @@ -20,7 +20,7 @@ LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \ RUN_DEPENDS= bash:shells/bash \ babel:science/openbabel -USES= cmake:outsource gettext-runtime pkgconfig shebangfix +USES= cmake gettext-runtime pkgconfig shebangfix SHEBANG_GLOB= *.sh USE_GNOME= atk cairo gdkpixbuf2 glib20 gtk20 pango pangox-compat USE_GL= gl glu diff --git a/science/madness/Makefile b/science/madness/Makefile index 7a3bbe1bd78d..de9a27a2fbc5 100644 --- a/science/madness/Makefile +++ b/science/madness/Makefile @@ -19,7 +19,7 @@ LIB_DEPENDS= libblas.so:math/blas \ libtcmalloc.so:devel/google-perftools \ libxc.so:science/libxc -USES= cmake:outsource compiler:c++14-lang fortran localbase:ldflags python:build +USES= cmake compiler:c++14-lang fortran localbase:ldflags python:build USE_GITHUB= yes GH_ACCOUNT= m-a-d-n-e-s-s GH_TAGNAME= ebb3fd7 diff --git a/science/maeparser/Makefile b/science/maeparser/Makefile index ffe5127887eb..6be92700e24e 100644 --- a/science/maeparser/Makefile +++ b/science/maeparser/Makefile @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt BUILD_DEPENDS= ${LOCALBASE}/include/boost/dynamic_bitset.hpp:devel/boost-libs -USES= cmake:outsource compiler:c++11-lang +USES= cmake compiler:c++11-lang USE_GITHUB= yes GH_ACCOUNT= schrodinger USE_LDCONFIG= yes diff --git a/science/mcstas/Makefile b/science/mcstas/Makefile index 59be935e570d..84acafa89a8a 100644 --- a/science/mcstas/Makefile +++ b/science/mcstas/Makefile @@ -11,7 +11,7 @@ COMMENT= Monte Carlo neutron ray tracing package LICENSE= LGPL21+ -USES= bison:build cmake:outsource +USES= bison:build cmake CMAKE_ARGS= "-Denable_mcstas=1" MANDIRS= ${PREFIX}/${PORTNAME}/${DISTVERSION}/doc/man/man1 diff --git a/science/mcxtrace-comps/Makefile b/science/mcxtrace-comps/Makefile index ebf0df46d479..efcad9d4f4ac 100644 --- a/science/mcxtrace-comps/Makefile +++ b/science/mcxtrace-comps/Makefile @@ -13,7 +13,7 @@ LICENSE= LGPL21+ RUN_DEPENDS= ${LOCALBASE}/mcxtrace/${DISTVERSION}/bin/mcxtrace:science/mcxtrace -USES= cmake:outsource +USES= cmake # Apparently cmake does not generate an install/strip target if nothing # is supposed to be stripped, so override the cmake-default install # target of install/strip by resetting STRIP diff --git a/science/mcxtrace/Makefile b/science/mcxtrace/Makefile index 6fa57e31a1d3..a5f57a424984 100644 --- a/science/mcxtrace/Makefile +++ b/science/mcxtrace/Makefile @@ -12,7 +12,7 @@ COMMENT= Monte Carlo X-ray tracing package LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/lib/LGPL -USES= bison:build cmake:outsource +USES= bison:build cmake PLIST_SUB= DISTVERSION=${DISTVERSION} diff --git a/science/mmtf/Makefile b/science/mmtf/Makefile index 975c84b4aa48..39b218801092 100644 --- a/science/mmtf/Makefile +++ b/science/mmtf/Makefile @@ -13,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= ${LOCALBASE}/include/msgpack.hpp:devel/msgpack -USES= cmake:outsource compiler:c++11-lang localbase:ldflags +USES= cmake compiler:c++11-lang localbase:ldflags USE_GITHUB= yes GH_ACCOUNT= rcsb GH_PROJECT= mmtf-cpp diff --git a/science/molsketch/Makefile b/science/molsketch/Makefile index eb0ef09b0f69..6e318eb9f6a6 100644 --- a/science/molsketch/Makefile +++ b/science/molsketch/Makefile @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libopenbabel.so:science/openbabel -USES= cmake:outsource desktop-file-utils localbase:ldflags pkgconfig qt:5 shared-mime-info +USES= cmake desktop-file-utils localbase:ldflags pkgconfig qt:5 shared-mime-info USE_QT= core gui network printsupport svg widgets buildtools_build qmake_build USE_LDCONFIG= ${PREFIX}/lib/molsketch diff --git a/science/openbabel/Makefile b/science/openbabel/Makefile index ca5051f425b8..3b2f007a8035 100644 --- a/science/openbabel/Makefile +++ b/science/openbabel/Makefile @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING CONFLICTS_INSTALL= babel-* -USES= compiler:c++11-lang cmake:outsource eigen:3 gnome +USES= compiler:c++11-lang cmake eigen:3 gnome USE_CXXSTD= gnu++98 USE_GNOME= libxml2 USE_LDCONFIG= yes diff --git a/science/opensim-core/Makefile b/science/opensim-core/Makefile index 37e3a75e553a..114ac053eb04 100644 --- a/science/opensim-core/Makefile +++ b/science/opensim-core/Makefile @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt LIB_DEPENDS= libdocopt.so:devel/docopt.cpp \ libSimTKcommon.so:science/simbody -USES= blaslapack:openblas cmake:outsource compiler:c++11-lib fortran gl # fortran only for simbody/openblas +USES= blaslapack:openblas cmake compiler:c++11-lib fortran gl # fortran only for simbody/openblas USE_GITHUB= yes GH_ACCOUNT= ${PORTNAME:tl}-org GH_PROJECT= ${PORTNAME:tl}-core diff --git a/science/openstructure/Makefile b/science/openstructure/Makefile index 55c87569592a..130e6b8e5dc8 100644 --- a/science/openstructure/Makefile +++ b/science/openstructure/Makefile @@ -24,7 +24,7 @@ LIB_DEPENDS= libboost_filesystem.so:devel/boost-libs \ RUN_DEPENDS= ${PYNUMPY} \ bash:shells/bash -USES= cmake:outsource eigen:3 python pyqt:4 qt:4 shebangfix +USES= cmake eigen:3 python pyqt:4 qt:4 shebangfix SHEBANG_FILES= scripts/dng.in scripts/ost.in scripts/ost_config.in USE_QT= corelib gui network opengl xml qmake_build moc_build rcc_build uic_build USE_PYQT= core gui diff --git a/science/paraview/Makefile b/science/paraview/Makefile index bc549ad4da6f..efb08e3ce0c3 100644 --- a/science/paraview/Makefile +++ b/science/paraview/Makefile @@ -35,7 +35,7 @@ LIB_DEPENDS= libhdf5.so:science/hdf5 \ RUN_DEPENDS= bash:shells/bash \ ${PYTHON_SITELIBDIR}/matplotlib/pyplot.py:math/py-matplotlib@${PY_FLAVOR} -USES= alias cmake:outsource jpeg localbase python:2.7 qt:5 shebangfix +USES= alias cmake jpeg localbase python:2.7 qt:5 shebangfix USE_QT= core gui help network sql widgets x11extras xmlpatterns buildtools_build qmake_build USE_GL= gl glu USE_XORG= x11 xt xext ice xdmcp xau xcb xfixes xdamage xxf86vm xrender sm xorgproto diff --git a/science/pcmsolver/Makefile b/science/pcmsolver/Makefile index 9805f53d89f3..581ed0eaba21 100644 --- a/science/pcmsolver/Makefile +++ b/science/pcmsolver/Makefile @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE BROKEN_powerpc64= fails to compile: SphericalDiffuse.cpp:182: invalid initialization of non-const reference -USES= cmake:outsource,noninja fortran python +USES= cmake:noninja fortran python USE_GITHUB= yes GH_ACCOUNT= PCMSolver USE_LDCONFIG= yes diff --git a/science/py-avogadrolibs/Makefile b/science/py-avogadrolibs/Makefile index 7d91b5c869db..1586eab6928e 100644 --- a/science/py-avogadrolibs/Makefile +++ b/science/py-avogadrolibs/Makefile @@ -16,7 +16,7 @@ LICENSE_FILE= ${WRKSRC}/../LICENSE BUILD_DEPENDS= ${LOCALBASE}/include/pybind11/pybind11.h:devel/pybind11 LIB_DEPENDS= libAvogadroCore.so:science/avogadrolibs -USES= cmake:outsource compiler:c++11-lang eigen:3 python:3.5+ +USES= cmake compiler:c++11-lang eigen:3 python:3.5+ USE_GITHUB= yes GH_ACCOUNT= OpenChemistry USE_PYTHON= flavors diff --git a/science/py-rmf/Makefile b/science/py-rmf/Makefile index 11d3924a5948..20b7575be3b1 100644 --- a/science/py-rmf/Makefile +++ b/science/py-rmf/Makefile @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= swig3.0:devel/swig30 LIB_DEPENDS= libRMF.so:science/rmf -USES= cmake:outsource python shebangfix +USES= cmake python shebangfix USE_GITHUB= yes GH_ACCOUNT= salilab GH_TAGNAME= f917cf2 diff --git a/science/qmcpack/Makefile b/science/qmcpack/Makefile index 1210f5cc0f87..07afcd854e7b 100644 --- a/science/qmcpack/Makefile +++ b/science/qmcpack/Makefile @@ -21,7 +21,7 @@ LIB_DEPENDS= libboost_system.so:devel/boost-libs \ libopenblas.so:math/openblas \ libsz.so:science/szip -USES= cmake:outsource compiler:c++11-lang fortran gnome localbase:ldflags pkgconfig +USES= cmake compiler:c++11-lang fortran gnome localbase:ldflags pkgconfig USE_GITHUB= yes GH_ACCOUNT= ${PORTNAME:tu} USE_GNOME= libxml2 diff --git a/science/rdkit/Makefile b/science/rdkit/Makefile index edf8d7972b33..8394342485bc 100644 --- a/science/rdkit/Makefile +++ b/science/rdkit/Makefile @@ -17,7 +17,7 @@ BUILD_DEPENDS= catch>0:devel/catch \ rapidjson>=0:devel/rapidjson LIB_DEPENDS= libboost_system.so:devel/boost-libs -USES= bison:build cmake:outsource eigen:3 python +USES= bison:build cmake eigen:3 python USE_GITHUB= yes GH_TUPLE= schrodinger:maeparser:1.0.0:maeparser/External/CoordGen/maeparser \ schrodinger:coordgenlibs:ede3191:coordgenlibs/External/CoordGen/coordgenlibs diff --git a/science/rmf/Makefile b/science/rmf/Makefile index b28fda65b889..6aaa60b9baed 100644 --- a/science/rmf/Makefile +++ b/science/rmf/Makefile @@ -15,7 +15,7 @@ LIB_DEPENDS= libboost_system.so:devel/boost-libs \ libhdf5.so:science/hdf5 \ libsz.so:science/szip -USES= compiler:c++11-lang cmake:outsource python:build shebangfix +USES= compiler:c++11-lang cmake python:build shebangfix USE_GITHUB= yes GH_ACCOUNT= salilab GH_TAGNAME= f917cf2 diff --git a/science/simbody/Makefile b/science/simbody/Makefile index 6204db1e9549..c302d7fc8dd4 100644 --- a/science/simbody/Makefile +++ b/science/simbody/Makefile @@ -18,7 +18,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt LIB_DEPENDS= libopenblas.so:math/openblas -USES= blaslapack:openblas cmake:outsource compiler:c++11-lang fortran # fortran only for openblas +USES= blaslapack:openblas cmake compiler:c++11-lang fortran # fortran only for openblas USE_GITHUB= yes USE_LDCONFIG= yes diff --git a/science/simint/Makefile b/science/simint/Makefile index 948f486df1b8..8fb8696d045f 100644 --- a/science/simint/Makefile +++ b/science/simint/Makefile @@ -12,7 +12,7 @@ COMMENT= Obara-Saika (OS) method of calculating electron repulsion integrals LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -USES= cmake:outsource tar:bz2 +USES= cmake tar:bz2 USE_LDCONFIG= yes OPTIONS_SINGLE= VECTOR diff --git a/science/step-kde4/Makefile b/science/step-kde4/Makefile index ca1138882b31..9519118b9a9f 100644 --- a/science/step-kde4/Makefile +++ b/science/step-kde4/Makefile @@ -14,7 +14,7 @@ EXPIRATION_DATE= 2018-12-31 LIB_DEPENDS= libqalculate.so:math/libqalculate \ libgsl.so:math/gsl -USES= cmake:outsource eigen:2 kde:4 pkgconfig qt:4 tar:xz +USES= cmake eigen:2 kde:4 pkgconfig qt:4 tar:xz USE_KDE= kdelibs automoc4 USE_QT= opengl moc_build qmake_build rcc_build uic_build diff --git a/science/step/Makefile b/science/step/Makefile index 2f1687cc0df6..d0252cd2051e 100644 --- a/science/step/Makefile +++ b/science/step/Makefile @@ -11,7 +11,7 @@ LIB_DEPENDS= libcln.so:math/cln \ libgsl.so:math/gsl \ libqalculate.so:math/libqalculate -USES= cmake:outsource compiler:c++11-lang eigen:3 gettext kde:5 \ +USES= cmake compiler:c++11-lang eigen:3 gettext kde:5 \ pkgconfig qt:5 tar:xz USE_KDE= attica auth bookmarks codecs completion config configwidgets \ coreaddons crash doctools ecm emoticons guiaddons i18n \ diff --git a/science/teem/Makefile b/science/teem/Makefile index 12717886ff07..8859e9b50e6a 100644 --- a/science/teem/Makefile +++ b/science/teem/Makefile @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt LIB_DEPENDS= libpng16.so:graphics/png -USES= cmake:outsource +USES= cmake USE_LDCONFIG= yes CMAKE_ON= BUILD_SHARED_LIBS diff --git a/science/triqs/Makefile b/science/triqs/Makefile index 73298148c818..406f91cec1bf 100644 --- a/science/triqs/Makefile +++ b/science/triqs/Makefile @@ -28,7 +28,7 @@ RUN_DEPENDS= ${PYNUMPY} PORTSCOUT= limit:^[0-9]+\.[0-9].*$$ -USES= cmake:outsource,noninja fortran gettext-runtime python:2.7 # python:2.7 matches that in devel/cpp2py +USES= cmake:noninja fortran gettext-runtime python:2.7 # python:2.7 matches that in devel/cpp2py USE_GITHUB= yes GH_ACCOUNT= ${PORTNAME:tu} USE_LDCONFIG= yes diff --git a/science/vipster/Makefile b/science/vipster/Makefile index 9d38be517791..06998e3f1353 100644 --- a/science/vipster/Makefile +++ b/science/vipster/Makefile @@ -11,7 +11,7 @@ COMMENT= Crystalline and molecular structure visualisation program LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE -USES= cmake:outsource compiler:c++17-lang +USES= cmake compiler:c++17-lang USE_GITHUB= yes GH_ACCOUNT= sgsaenger USE_LDCONFIG= yes diff --git a/security/akmos/Makefile b/security/akmos/Makefile index 96f5c360376b..785452b83486 100644 --- a/security/akmos/Makefile +++ b/security/akmos/Makefile @@ -11,7 +11,7 @@ COMMENT= Cryptographic library with low footprint LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -USES= cmake:outsource compiler:c++11-lang +USES= cmake compiler:c++11-lang USE_GITHUB= yes GH_ACCOUNT= melanhit diff --git a/security/boringssl/Makefile b/security/boringssl/Makefile index b9a31e6b7be7..2ebaa7a3e9ac 100644 --- a/security/boringssl/Makefile +++ b/security/boringssl/Makefile @@ -12,7 +12,7 @@ BUILD_DEPENDS= go:lang/go USE_GITHUB= yes GH_ACCOUNT= google GH_TAGNAME= 144d924 -USES= cmake localbase perl5 +USES= cmake:insource localbase perl5 CMAKE_ARGS+= -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=1 USE_LDCONFIG= yes LDFLAGS+= -Wl,-rpath,${PREFIX}/lib diff --git a/security/bro/Makefile b/security/bro/Makefile index 3fec39d7d116..e313a5adc081 100644 --- a/security/bro/Makefile +++ b/security/bro/Makefile @@ -16,7 +16,7 @@ BROKEN_powerpc64= Does not build: error: zero-size array 'names' LIB_DEPENDS= libGeoIP.so:net/GeoIP -USES= bison cmake:outsource compiler:c++11-lang gettext-runtime ninja perl5 python shebangfix ssl +USES= bison cmake compiler:c++11-lang gettext-runtime ninja perl5 python shebangfix ssl CMAKE_ARGS+= -DPYTHON_EXECUTABLE:PATH=${PYTHON_CMD} CXXFLAGS+= -std=c++11 -Wall diff --git a/security/broccoli/Makefile b/security/broccoli/Makefile index c8bdbc111eb2..cfc93ad4bf7c 100644 --- a/security/broccoli/Makefile +++ b/security/broccoli/Makefile @@ -18,7 +18,7 @@ LIB_DEPENDS= libGeoIP.so:net/GeoIP EXTRACT_AFTER_ARGS= ${DISTNAME}/aux/broccoli -USES= cmake:outsource ssl bison +USES= cmake ssl bison USE_LDCONFIG= yes CMAKE_SOURCE_PATH= ${WRKSRC}/aux/broccoli BINARY_ALIAS= swig=swig3.0 diff --git a/security/bzrtp/Makefile b/security/bzrtp/Makefile index 0221b0d2f630..12c2c2ac56a9 100644 --- a/security/bzrtp/Makefile +++ b/security/bzrtp/Makefile @@ -13,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libbctoolbox.so:net/bctoolbox -USES= cmake:outsource sqlite +USES= cmake sqlite USE_GNOME= libxml2 USE_LDCONFIG= yes diff --git a/security/greenbone-security-assistant8/Makefile b/security/greenbone-security-assistant8/Makefile index faede06c5af9..3800fbf38736 100644 --- a/security/greenbone-security-assistant8/Makefile +++ b/security/greenbone-security-assistant8/Makefile @@ -21,7 +21,7 @@ LIB_DEPENDS= libgnutls.so:security/gnutls \ CONFLICTS?= ${PORTNAME:S/${OPENVAS_VER}/9/}-* -USES= cmake:outsource gettext gnome pkgconfig +USES= cmake gettext gnome pkgconfig USE_GNOME= glib20 libxml2 libxslt USE_RC_SUBR= gsad ETCDIR= ${PREFIX}/etc/openvas diff --git a/security/i2pd/Makefile b/security/i2pd/Makefile index d4fa0cb6ac92..fb8d4a43f23a 100644 --- a/security/i2pd/Makefile +++ b/security/i2pd/Makefile @@ -17,7 +17,7 @@ LIB_DEPENDS= libboost_thread.so:devel/boost-libs USE_GITHUB= yes GH_ACCOUNT= PurpleI2P -USES= cmake compiler:c++11-lib ssl +USES= cmake:insource compiler:c++11-lib ssl CMAKE_ARGS= -DWITH_GUI=OFF CMAKE_SOURCE_PATH= ${WRKSRC}/build USE_RC_SUBR= ${PORTNAME} diff --git a/security/ike/Makefile b/security/ike/Makefile index 3020da1fa307..ca29d1434545 100644 --- a/security/ike/Makefile +++ b/security/ike/Makefile @@ -14,7 +14,7 @@ COMMENT= Shrew Soft IKE daemon and client tools ONLY_FOR_ARCHS= i386 amd64 USE_RC_SUBR= iked -USES= bison cmake libedit localbase:ldflags tar:tbz2 ssl +USES= bison cmake:insource libedit localbase:ldflags tar:tbz2 ssl USE_LDCONFIG= yes WRKSRC= ${WRKDIR}/${PORTNAME} diff --git a/security/keepassxc/Makefile b/security/keepassxc/Makefile index b348ddc8ba09..b7ec25c5755c 100644 --- a/security/keepassxc/Makefile +++ b/security/keepassxc/Makefile @@ -24,7 +24,7 @@ LIB_DEPENDS= libargon2.so:security/libargon2 \ libgcrypt.so:security/libgcrypt \ libgpg-error.so:security/libgpg-error -USES= cmake:outsource compiler:c++11-lang desktop-file-utils qt:5 \ +USES= cmake compiler:c++11-lang desktop-file-utils qt:5 \ shared-mime-info tar:xz USE_QT= buildtools_build concurrent core dbus gui linguisttools network \ qmake_build testlib widgets diff --git a/security/kf5-kdesu/Makefile b/security/kf5-kdesu/Makefile index 91b6ec56a3b5..566cbe497673 100644 --- a/security/kf5-kdesu/Makefile +++ b/security/kf5-kdesu/Makefile @@ -7,7 +7,7 @@ CATEGORIES= security kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 integration with su for elevated privileges -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= config coreaddons dbusaddons ecm i18n pty service USE_QT= buildtools_build core dbus qmake_build xml USE_XORG= ice sm x11 xext diff --git a/security/kgpg-kde4/Makefile b/security/kgpg-kde4/Makefile index 9e8d7eb4bbf9..5273f0d479c1 100644 --- a/security/kgpg-kde4/Makefile +++ b/security/kgpg-kde4/Makefile @@ -14,7 +14,7 @@ EXPIRATION_DATE= 2018-12-31 RUN_DEPENDS= gpg2:security/gnupg -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= automoc4 kdelibs pimlibs USE_QT= qmake_build moc_build rcc_build uic_build diff --git a/security/kgpg/Makefile b/security/kgpg/Makefile index abb37c1796f1..d4eb04d41abf 100644 --- a/security/kgpg/Makefile +++ b/security/kgpg/Makefile @@ -9,7 +9,7 @@ COMMENT= Encryption tool for KDE RUN_DEPENDS= gpg2:security/gnupg -USES= cmake:outsource gettext kde:5 qt:5 tar:xz +USES= cmake gettext kde:5 qt:5 tar:xz USE_KDE= akonadi akonadicontacts archive auth bookmarks codecs \ completion config configwidgets contacts coreaddons crash \ dbusaddons doctools ecm i18n iconthemes itemmodels itemviews \ diff --git a/security/klee/Makefile b/security/klee/Makefile index e11f60b454b0..f869b9de6b2b 100644 --- a/security/klee/Makefile +++ b/security/klee/Makefile @@ -17,7 +17,7 @@ BUILD_DEPENDS= llvm-config${LLVM_VERSION}:devel/llvm${LLVM_VERSION} \ LLVM_VERSION= 38 # the latest llvm version that the master branch (79ac709) currently supports -USES= cmake:outsource localbase pkgconfig python:run shebangfix +USES= cmake localbase pkgconfig python:run shebangfix USE_GITHUB= yes SHEBANG_FILES= tools/klee-stats/klee-stats tools/ktest-tool/ktest-tool USE_LDCONFIG= yes diff --git a/security/kleopatra/Makefile b/security/kleopatra/Makefile index 45c371608e19..1852eb861a02 100644 --- a/security/kleopatra/Makefile +++ b/security/kleopatra/Makefile @@ -14,7 +14,7 @@ LIB_DEPENDS= libassuan.so:security/libassuan \ libgpgmepp.so:security/gpgme-cpp \ libqgpgme.so:security/gpgme-qt5 -USES= cmake:outsource gettext kde:5 qt:5 tar:xz +USES= cmake gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons dbusaddons \ doctools ecm i18n iconthemes itemmodels kcmutils notifications \ service sonnet textwidgets widgetsaddons windowsystem xmlgui \ diff --git a/security/kpkpass/Makefile b/security/kpkpass/Makefile index 84702661db1e..987306466a0b 100644 --- a/security/kpkpass/Makefile +++ b/security/kpkpass/Makefile @@ -7,7 +7,7 @@ CATEGORIES= security kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Library to deal with Apple Wallet pass files -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 \ +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 \ diff --git a/security/kwalletmanager-kde4/Makefile b/security/kwalletmanager-kde4/Makefile index 6eab756eb800..9251a519f8f7 100644 --- a/security/kwalletmanager-kde4/Makefile +++ b/security/kwalletmanager-kde4/Makefile @@ -12,7 +12,7 @@ COMMENT= Password manager for KDE DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= automoc4 kdelibs USE_QT= qmake_build moc_build rcc_build uic_build diff --git a/security/kwalletmanager/Makefile b/security/kwalletmanager/Makefile index 76457209a483..bfb8455264d9 100644 --- a/security/kwalletmanager/Makefile +++ b/security/kwalletmanager/Makefile @@ -7,7 +7,7 @@ CATEGORIES= security kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Password manager for KDE -USES= cmake:outsource compiler:c++11-lang desktop-file-utils gettext \ +USES= cmake compiler:c++11-lang desktop-file-utils gettext \ kde:5 qt:5 tar:xz USE_KDE= archive auth codecs config configwidgets coreaddons crash \ dbusaddons doctools ecm emoticons i18n iconthemes init \ diff --git a/security/libkleo/Makefile b/security/libkleo/Makefile index 778172ab5048..c1d7a2e4059f 100644 --- a/security/libkleo/Makefile +++ b/security/libkleo/Makefile @@ -15,7 +15,7 @@ LIB_DEPENDS= libassuan.so:security/libassuan \ RUN_DEPENDS= ${LOCALBASE}/bin/gmd5sum:sysutils/coreutils -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= codecs completion config coreaddons i18n itemmodels \ widgetsaddons windowsystem \ pimtextedit diff --git a/security/libssh/Makefile b/security/libssh/Makefile index 075e65d4c9ef..24332f19f610 100644 --- a/security/libssh/Makefile +++ b/security/libssh/Makefile @@ -18,7 +18,7 @@ OPTIONS_RADIO_CRYPTO= GCRYPT OPENSSL OPTIONS_DEFAULT= OPENSSL STATIC OPTIONS_SUB= yes -USES= cmake:outsource cpe tar:xz +USES= cmake cpe tar:xz USE_LDCONFIG= yes CMAKE_ARGS= -DWITH_EXAMPLES:BOOL=OFF \ diff --git a/security/libuecc/Makefile b/security/libuecc/Makefile index a2d713482abc..084ef52394cf 100644 --- a/security/libuecc/Makefile +++ b/security/libuecc/Makefile @@ -17,6 +17,6 @@ LIB_DEPENDS= libsodium.so:security/libsodium USE_LDCONFIG= yes -USES= cmake:outsource pkgconfig tar +USES= cmake pkgconfig tar .include <bsd.port.mk> diff --git a/security/libzrtpcppcore/Makefile b/security/libzrtpcppcore/Makefile index 01de9dcbd5b1..1ab49fd6429c 100644 --- a/security/libzrtpcppcore/Makefile +++ b/security/libzrtpcppcore/Makefile @@ -16,7 +16,7 @@ USE_GITHUB= yes GH_ACCOUNT= wernerd GH_PROJECT= ZRTPCPP -USES= cmake:outsource,noninja compiler:c++11-lib +USES= cmake:noninja compiler:c++11-lib USE_CXXSTD= c++11 CMAKE_ARGS= -DCORE_LIB:BOOL=ON USE_LDCONFIG= yes diff --git a/security/lxqt-openssh-askpass/Makefile b/security/lxqt-openssh-askpass/Makefile index 1e5700da5c7e..23137a10827c 100644 --- a/security/lxqt-openssh-askpass/Makefile +++ b/security/lxqt-openssh-askpass/Makefile @@ -11,7 +11,7 @@ COMMENT= LXQt GUI dialog for OpenSSH authentication LICENSE= LGPL21+ -USES= cmake:outsource gettext-runtime kde:5 lxqt pkgconfig tar:xz qt:5 +USES= cmake gettext-runtime kde:5 lxqt pkgconfig tar:xz qt:5 USE_QT= buildtools_build qmake_build core dbus gui linguisttools \ svg widgets x11extras xml USE_KDE= windowsystem diff --git a/security/lxqt-sudo/Makefile b/security/lxqt-sudo/Makefile index f47a923eb151..472fdc6b4d87 100644 --- a/security/lxqt-sudo/Makefile +++ b/security/lxqt-sudo/Makefile @@ -14,7 +14,7 @@ LICENSE= LGPL21+ RUN_DEPENDS= sudo:security/sudo -USES= cmake:outsource compiler:c++11-lib gettext kde:5 lxqt qt:5 \ +USES= cmake compiler:c++11-lib gettext kde:5 lxqt qt:5 \ pkgconfig tar:xz USE_QT= buildtools_build qmake_build core dbus gui svg widgets \ x11extras xml diff --git a/security/openconnect-gui/Makefile b/security/openconnect-gui/Makefile index 2cdd90fb20c8..fd2b69d5e4b9 100644 --- a/security/openconnect-gui/Makefile +++ b/security/openconnect-gui/Makefile @@ -21,7 +21,7 @@ RUN_DEPENDS= openconnect:security/openconnect \ USE_GITHUB= yes GH_ACCOUNT= ${PORTNAME:C/-gui//} -USES= cmake pkgconfig qt:5 +USES= cmake:insource pkgconfig qt:5 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/openvas8-cli/Makefile b/security/openvas8-cli/Makefile index f5a0fcde0f61..f606fe0b0399 100644 --- a/security/openvas8-cli/Makefile +++ b/security/openvas8-cli/Makefile @@ -19,7 +19,7 @@ LIB_DEPENDS= libgnutls.so:security/gnutls \ CONFLICTS?= ${PORTNAME:S/${OPENVAS_VER}/9/}-* CFLAGS+= -Wno-missing-field-initializers -USES= cmake:outsource gnome pkgconfig shebangfix +USES= cmake gnome pkgconfig shebangfix SHEBANG_FILES= dialog/omp-dialog USE_GNOME= glib20 libxslt:run diff --git a/security/openvas8-libraries/Makefile b/security/openvas8-libraries/Makefile index b5debd7cb948..31c4f7c12106 100644 --- a/security/openvas8-libraries/Makefile +++ b/security/openvas8-libraries/Makefile @@ -25,7 +25,7 @@ LIB_DEPENDS= libhiredis.so:databases/hiredis \ CONFLICTS?= ${PORTNAME:S/${OPENVAS_VER}/9/}-* -USES= bison cmake:outsource gnome pkgconfig +USES= bison cmake gnome pkgconfig USE_LDCONFIG= yes USE_GNOME= glib20 diff --git a/security/openvas8-manager/Makefile b/security/openvas8-manager/Makefile index ba6cec5341e5..df2610fe2a70 100644 --- a/security/openvas8-manager/Makefile +++ b/security/openvas8-manager/Makefile @@ -24,7 +24,7 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} \ CONFLICTS?= ${PORTNAME:S/${OPENVAS_VER}/9/}-* -USES= cmake:outsource gnome pkgconfig +USES= cmake gnome pkgconfig USE_GNOME= glib20 libxslt:run PGSQL_USES= pgsql SQLITE3_USES= sqlite diff --git a/security/openvas8-scanner/Makefile b/security/openvas8-scanner/Makefile index bac516af05f7..bebb1f8de8b3 100644 --- a/security/openvas8-scanner/Makefile +++ b/security/openvas8-scanner/Makefile @@ -25,7 +25,7 @@ RUN_DEPENDS= redis-server:databases/redis \ CONFLICTS?= ${PORTNAME:S/${OPENVAS_VER}/9/}-* -USES= cmake:outsource gettext-runtime gnome pkgconfig +USES= cmake gettext-runtime gnome pkgconfig USE_GNOME= glib20 USE_RC_SUBR= openvassd DOCSDIR= ${PREFIX}/share/doc/${PORTNAME:S/${OPENVAS_VER}//} diff --git a/security/plasma5-kscreenlocker/Makefile b/security/plasma5-kscreenlocker/Makefile index 9c88c1901c7a..691ad0228249 100644 --- a/security/plasma5-kscreenlocker/Makefile +++ b/security/plasma5-kscreenlocker/Makefile @@ -14,7 +14,7 @@ LIB_DEPENDS= libwayland-client.so:graphics/wayland \ RUN_DEPENDS= ck-list-sessions:sysutils/consolekit2\ dbus-send:devel/dbus -USES= cmake:outsource compiler:c++11-lib cpe gettext kde:5 pkgconfig \ +USES= cmake compiler:c++11-lib cpe gettext kde:5 pkgconfig \ qt:5 shebangfix tar:xz USE_KDE= auth codecs config configwidgets coreaddons crash ecm \ emoticons globalaccel i18n idletime init itemmodels kcmutils \ diff --git a/security/plasma5-ksshaskpass/Makefile b/security/plasma5-ksshaskpass/Makefile index 4eadb8e2de9f..9aea739a81f9 100644 --- a/security/plasma5-ksshaskpass/Makefile +++ b/security/plasma5-ksshaskpass/Makefile @@ -8,7 +8,7 @@ CATEGORIES= security kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 ssh-add frontend -USES= cmake:outsource compiler:c++11-lib cpe gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib cpe gettext kde:5 qt:5 tar:xz USE_KDE= coreaddons doctools ecm i18n wallet widgetsaddons USE_QT= core gui widgets \ buildtools_build qmake_build diff --git a/security/plasma5-kwallet-pam/Makefile b/security/plasma5-kwallet-pam/Makefile index 92b51c21929b..3de52281e335 100644 --- a/security/plasma5-kwallet-pam/Makefile +++ b/security/plasma5-kwallet-pam/Makefile @@ -10,7 +10,7 @@ COMMENT= Plasma5 KWallet PAM Integration LIB_DEPENDS= libgcrypt.so:security/libgcrypt \ libgpg-error.so:security/libgpg-error -USES= cmake:outsource cpe gettext kde:5 qt:5 tar:xz +USES= cmake cpe gettext kde:5 qt:5 tar:xz USE_KDE= ecm USE_QT= buildtools_build qmake_build diff --git a/security/rndpassw/Makefile b/security/rndpassw/Makefile index fbc02010dbc6..6475e1482ebd 100644 --- a/security/rndpassw/Makefile +++ b/security/rndpassw/Makefile @@ -13,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USE_GITHUB= yes GH_ACCOUNT= melanhit -USES= cmake:outsource +USES= cmake PLIST_FILES= bin/rndpassw \ man/man1/rndpassw.1.gz diff --git a/sysutils/baloo-kde4/Makefile b/sysutils/baloo-kde4/Makefile index c7b9634a36db..212fa417b232 100644 --- a/sysutils/baloo-kde4/Makefile +++ b/sysutils/baloo-kde4/Makefile @@ -17,7 +17,7 @@ CONFLICTS_INSTALL= kde-runtime-4.12.* \ LIB_DEPENDS= libxapian.so:databases/xapian-core \ libqjson.so:devel/qjson@qt4 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= akonadi automoc4 kdelibs kfilemetadata \ pimlibs USE_QT= corelib qmake_build moc_build rcc_build uic_build diff --git a/sysutils/baloo-widgets-kde4/Makefile b/sysutils/baloo-widgets-kde4/Makefile index 114e116af564..2408c664a525 100644 --- a/sysutils/baloo-widgets-kde4/Makefile +++ b/sysutils/baloo-widgets-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= The BalooWidgets library DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= automoc4 baloo kfilemetadata USE_QT= corelib qmake_build moc_build rcc_build uic_build USE_LDCONFIG= yes diff --git a/sysutils/baloo-widgets/Makefile b/sysutils/baloo-widgets/Makefile index 84d43d147f9a..37a178a5e9fc 100644 --- a/sysutils/baloo-widgets/Makefile +++ b/sysutils/baloo-widgets/Makefile @@ -7,7 +7,7 @@ CATEGORIES= sysutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= BalooWidgets library -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= baloo completion config coreaddons ecm emoticons filemetadata \ i18n init itemmodels jobwidgets kdelibs4support kio service \ widgetsaddons diff --git a/sysutils/cmocka/Makefile b/sysutils/cmocka/Makefile index f697256d6d6e..aaa784cff599 100644 --- a/sysutils/cmocka/Makefile +++ b/sysutils/cmocka/Makefile @@ -12,7 +12,7 @@ COMMENT= Unit testing framework for C with support for mock objects LICENSE= APACHE20 -USES= cmake:outsource tar:xz +USES= cmake tar:xz USE_LDCONFIG= yes PLIST_FILES= include/cmocka.h \ diff --git a/sysutils/contractor/Makefile b/sysutils/contractor/Makefile index dc144aca5030..48a301e02112 100644 --- a/sysutils/contractor/Makefile +++ b/sysutils/contractor/Makefile @@ -16,7 +16,7 @@ BUILD_DEPENDS= valac:lang/vala LIB_DEPENDS= libgee-0.8.so:devel/libgee \ libdbus-glib-1.so:devel/dbus-glib -USES= cmake:outsource gettext-runtime pkgconfig tar:xz +USES= cmake gettext-runtime pkgconfig tar:xz USE_GNOME= glib20 .include <bsd.port.mk> diff --git a/sysutils/filelight-kde4/Makefile b/sysutils/filelight-kde4/Makefile index d0dc833c50a5..c21253a910f0 100644 --- a/sysutils/filelight-kde4/Makefile +++ b/sysutils/filelight-kde4/Makefile @@ -15,7 +15,7 @@ EXPIRATION_DATE= 2018-12-31 CONFLICTS_INSTALL= ${PORTNAME} -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs automoc4 USE_QT= qmake_build moc_build rcc_build uic_build diff --git a/sysutils/filelight/Makefile b/sysutils/filelight/Makefile index 2393d3ef008f..df9c0bd97d82 100644 --- a/sysutils/filelight/Makefile +++ b/sysutils/filelight/Makefile @@ -12,7 +12,7 @@ BUILD_DEPENDS= ${LOCALBASE}/share/xsl/docbook/html/docbook.xsl:textproc/docbook- CONFLICTS_INSTALL= ${PORTNAME}-kde4* -USES= cmake:outsource compiler:c++11-lang desktop-file-utils gettext \ +USES= cmake compiler:c++11-lang desktop-file-utils gettext \ kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons doctools \ ecm i18n jobwidgets kio parts service solid sonnet textwidgets \ diff --git a/sysutils/fusefs-encfs/Makefile b/sysutils/fusefs-encfs/Makefile index 7f531ad1e9bd..3e6b18ecde2a 100644 --- a/sysutils/fusefs-encfs/Makefile +++ b/sysutils/fusefs-encfs/Makefile @@ -14,7 +14,7 @@ COMMENT= Encrypted pass-through FUSE filesystem LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/COPYING -USES= cmake:outsource compiler:c++11-lib fuse ssl +USES= cmake compiler:c++11-lib fuse ssl USE_GITHUB= yes GH_ACCOUNT= vgough diff --git a/sysutils/k3b/Makefile b/sysutils/k3b/Makefile index 48eed0ad7946..70640582d16b 100644 --- a/sysutils/k3b/Makefile +++ b/sysutils/k3b/Makefile @@ -21,7 +21,7 @@ LIB_DEPENDS= libFLAC.so:audio/flac \ RUN_DEPENDS= cdrecord:sysutils/cdrtools BUILD_DEPENDS= cdrecord:sysutils/cdrtools -USES= cmake:outsource desktop-file-utils gettext iconv kde:5 pkgconfig \ +USES= cmake desktop-file-utils gettext iconv kde:5 pkgconfig \ qt:5 shared-mime-info tar:xz USE_KDE= archive attica auth bookmarks codecs completion config \ diff --git a/sysutils/kbackup/Makefile b/sysutils/kbackup/Makefile index 5a2e01472e66..3d244bb4b75e 100644 --- a/sysutils/kbackup/Makefile +++ b/sysutils/kbackup/Makefile @@ -7,7 +7,7 @@ CATEGORIES= sysutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Backup program with an easy to use user interface -USES= cmake:outsource gettext kde:5 qt:5 tar:xz +USES= cmake gettext kde:5 qt:5 tar:xz USE_KDE= archive auth bookmarks codecs completion config configwidgets \ coreaddons ecm i18n iconthemes itemviews jobwidgets kio \ notifications service solid widgetsaddons xmlgui diff --git a/sysutils/kcron-kde4/Makefile b/sysutils/kcron-kde4/Makefile index 03fc6d7c9c72..92b64466d4b3 100644 --- a/sysutils/kcron-kde4/Makefile +++ b/sysutils/kcron-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= KDE task scheduler DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs automoc4 USE_QT= moc_build qmake_build rcc_build uic_build diff --git a/sysutils/kcron/Makefile b/sysutils/kcron/Makefile index c1e9864183f1..be8fbb46e28e 100644 --- a/sysutils/kcron/Makefile +++ b/sysutils/kcron/Makefile @@ -10,7 +10,7 @@ COMMENT= KDE task scheduler BUILD_DEPENDS= ${LOCALBASE}/share/xsl/docbook/html/docbook.xsl:textproc/docbook-xsl \ docbook-xml>0:textproc/docbook-xml -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons ecm \ doctools i18n iconthemes jobwidgets kio service widgetsaddons \ xmlgui diff --git a/sysutils/kdebugsettings/Makefile b/sysutils/kdebugsettings/Makefile index f0dd29bf22a6..744929d9cb3d 100644 --- a/sysutils/kdebugsettings/Makefile +++ b/sysutils/kdebugsettings/Makefile @@ -7,7 +7,7 @@ CATEGORIES= sysutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE application to enable/disable qCDebug -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= completion config configwidgets coreaddons dbusaddons \ ecm guiaddons i18n iconthemes itemviews kio widgetsaddons USE_QT= core dbus gui testlib widgets \ diff --git a/sysutils/kdf-kde4/Makefile b/sysutils/kdf-kde4/Makefile index 04fdd99eab63..b3ca3471c6a7 100644 --- a/sysutils/kdf-kde4/Makefile +++ b/sysutils/kdf-kde4/Makefile @@ -12,7 +12,7 @@ COMMENT= Shows free space of devices for KDE DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= automoc4 kdelibs USE_QT= qmake_build moc_build rcc_build uic_build diff --git a/sysutils/kdf/Makefile b/sysutils/kdf/Makefile index 38112b09e319..589055b9c65d 100644 --- a/sysutils/kdf/Makefile +++ b/sysutils/kdf/Makefile @@ -7,7 +7,7 @@ CATEGORIES= sysutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Shows free space of devices for KDE -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons doctools \ i18n iconthemes jobwidgets kcmutils kio notifications service \ widgetsaddons xmlgui diff --git a/sysutils/kdialog/Makefile b/sysutils/kdialog/Makefile index d0b8a3c3a98b..474ff732527f 100644 --- a/sysutils/kdialog/Makefile +++ b/sysutils/kdialog/Makefile @@ -7,7 +7,7 @@ CATEGORIES= sysutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Show nice dialog boxes from shell scripts -USES= cmake:outsource compiler:c++11-lang gettext kde:5 pkgconfig \ +USES= cmake compiler:c++11-lang gettext kde:5 pkgconfig \ qt:5 tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons ecm guiaddons i18n iconthemes \ diff --git a/sysutils/kf5-baloo/Makefile b/sysutils/kf5-baloo/Makefile index c38243ff64dc..0ef3dc214559 100644 --- a/sysutils/kf5-baloo/Makefile +++ b/sysutils/kf5-baloo/Makefile @@ -10,7 +10,7 @@ COMMENT= KF5 Framework for searching and managing user metadata LIB_DEPENDS= liblmdb.so:databases/lmdb \ libinotify.so:devel/libinotify -USES= cmake:outsource compiler:c++11-lib gettext kde:5 pathfix qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 pathfix qt:5 tar:xz USE_KDE= auth completion config coreaddons crash dbusaddons \ filemetadata i18n idletime jobwidgets kio service \ solid widgetsaddons diff --git a/sysutils/kf5-kwallet/Makefile b/sysutils/kf5-kwallet/Makefile index 148e1548d0bf..b6dc956df1cd 100644 --- a/sysutils/kf5-kwallet/Makefile +++ b/sysutils/kf5-kwallet/Makefile @@ -15,7 +15,7 @@ LIB_DEPENDS= libassuan.so:security/libassuan \ libqgpgme.so:security/gpgme-qt5 \ libgpgmepp.so:security/gpgme-cpp -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons dbusaddons \ doctools ecm i18n iconthemes notifications service \ widgetsaddons windowsystem diff --git a/sysutils/kfilemetadata-kde4/Makefile b/sysutils/kfilemetadata-kde4/Makefile index 33a53e1ac36c..3fa338ffe388 100644 --- a/sysutils/kfilemetadata-kde4/Makefile +++ b/sysutils/kfilemetadata-kde4/Makefile @@ -17,7 +17,7 @@ LIB_DEPENDS= libtag.so:audio/taglib \ libepub.so:textproc/ebook-tools \ libqmobipocket.so:graphics/kdegraphics-mobipocket-kde4 -USES= cmake:outsource kde:4 pkgconfig qt:4 tar:xz +USES= cmake kde:4 pkgconfig qt:4 tar:xz USE_KDE= automoc4 kdelibs USE_QT= corelib qmake_build moc_build rcc_build uic_build USE_LDCONFIG= yes diff --git a/sysutils/kfloppy-kde4/Makefile b/sysutils/kfloppy-kde4/Makefile index 52fc3641ebbb..fb117b88c2db 100644 --- a/sysutils/kfloppy-kde4/Makefile +++ b/sysutils/kfloppy-kde4/Makefile @@ -12,7 +12,7 @@ COMMENT= Floppy disk formatter for KDE DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= automoc4 kdelibs USE_QT= qmake_build moc_build rcc_build uic_build diff --git a/sysutils/kfloppy/Makefile b/sysutils/kfloppy/Makefile index 79c80be89d7d..dac0052537af 100644 --- a/sysutils/kfloppy/Makefile +++ b/sysutils/kfloppy/Makefile @@ -7,7 +7,7 @@ CATEGORIES= sysutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Floppy disk formatter for KDE -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons crash \ doctools ecm emoticons i18n init itemmodels kdelibs4support \ kio widgetsaddons xmlgui diff --git a/sysutils/khelpcenter/Makefile b/sysutils/khelpcenter/Makefile index 31b667a652f3..93c4b4a1d078 100644 --- a/sysutils/khelpcenter/Makefile +++ b/sysutils/khelpcenter/Makefile @@ -9,7 +9,7 @@ COMMENT= Plasma5 application to show KDE application documentation LIB_DEPENDS= libxapian.so:databases/xapian-core -USES= cmake:outsource compiler:c++11-lib cpe gettext grantlee:5 \ +USES= cmake compiler:c++11-lib cpe gettext grantlee:5 \ kde:5 qt:5 shebangfix tar:xz USE_GNOME= libxml2 USE_KDE= archive auth bookmarks codecs completion config configwidgets \ diff --git a/sysutils/krename/Makefile b/sysutils/krename/Makefile index 08074a0076a4..d6254f138434 100644 --- a/sysutils/krename/Makefile +++ b/sysutils/krename/Makefile @@ -17,7 +17,7 @@ LIB_DEPENDS= libtag.so:audio/taglib \ libpodofo.so:graphics/podofo \ libfreetype.so:print/freetype2 -USES= cmake:outsource gettext kde:5 qt:5 tar:xz +USES= cmake gettext kde:5 qt:5 tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash i18n iconthemes itemviews jobwidgets \ js kio service solid widgetsaddons xmlgui diff --git a/sysutils/kshutdown-kde4/Makefile b/sysutils/kshutdown-kde4/Makefile index d3624e50ced0..59289f09fa79 100644 --- a/sysutils/kshutdown-kde4/Makefile +++ b/sysutils/kshutdown-kde4/Makefile @@ -16,7 +16,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= alias cmake:outsource compiler:c++0x gettext kde:4 qt:4 zip +USES= alias cmake compiler:c++0x gettext kde:4 qt:4 zip USE_QT= corelib dbus gui moc_build qmake_build rcc_build svg uic_build USE_KDE= automoc4 kdelibs workspace diff --git a/sysutils/ksysguardd-kde4/Makefile b/sysutils/ksysguardd-kde4/Makefile index 0b8f3b144d9d..9e945b8c7055 100644 --- a/sysutils/ksysguardd-kde4/Makefile +++ b/sysutils/ksysguardd-kde4/Makefile @@ -14,7 +14,7 @@ DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 DISTINFO_FILE= ${.CURDIR:H:H}/x11/kde-workspace-kde4/distinfo -USES= cmake kde:4 tar:xz +USES= cmake:insource kde:4 tar:xz CMAKE_ARGS+= -DBIN_INSTALL_DIR:STRING="${PREFIX}/bin" \ -DSYSCONF_INSTALL_DIR:STRING="${PREFIX}/etc" diff --git a/sysutils/ksystemlog-kde4/Makefile b/sysutils/ksystemlog-kde4/Makefile index 220de44f1346..ba252739c7a3 100644 --- a/sysutils/ksystemlog-kde4/Makefile +++ b/sysutils/ksystemlog-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= KDE system log application DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs automoc4 USE_QT= moc_build qmake_build rcc_build uic_build diff --git a/sysutils/ksystemlog/Makefile b/sysutils/ksystemlog/Makefile index 6e46d436973b..feb6b71fe2ad 100644 --- a/sysutils/ksystemlog/Makefile +++ b/sysutils/ksystemlog/Makefile @@ -7,7 +7,7 @@ CATEGORIES= sysutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE system log application -USES= cmake:outsource compiler:c++11-lang gettext kde:5 pkgconfig \ +USES= cmake compiler:c++11-lang gettext kde:5 pkgconfig \ qt:5 tar:xz USE_KDE= archive auth codecs completion config configwidgets coreaddons \ doctools ecm i18n iconthemes itemviews jobwidgets kio \ diff --git a/sysutils/kuser-kde4/Makefile b/sysutils/kuser-kde4/Makefile index c7057244c674..bd8b6b4694b9 100644 --- a/sysutils/kuser-kde4/Makefile +++ b/sysutils/kuser-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= KDE user manager DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs pimlibs automoc4 USE_QT= moc_build qmake_build rcc_build uic_build diff --git a/sysutils/libsysstat/Makefile b/sysutils/libsysstat/Makefile index 3bcca15c2339..83bb7e3b8da1 100644 --- a/sysutils/libsysstat/Makefile +++ b/sysutils/libsysstat/Makefile @@ -12,7 +12,7 @@ COMMENT= Library used to query system info and statistics LICENSE= LGPL21 -USES= cmake:outsource compiler:c++11-lang lxqt pkgconfig tar:xz qt:5 +USES= cmake compiler:c++11-lang lxqt pkgconfig tar:xz qt:5 USE_QT= qmake_build buildtools_build core USE_LXQT= buildtools diff --git a/sysutils/lsyncd/Makefile b/sysutils/lsyncd/Makefile index 1d62701538f0..58ccc1126dfc 100644 --- a/sysutils/lsyncd/Makefile +++ b/sysutils/lsyncd/Makefile @@ -13,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libinotify.so:devel/libinotify -USES= cmake:outsource localbase lua +USES= cmake localbase lua USE_GITHUB= yes GH_ACCOUNT= axkibe USE_RC_SUBR= lsyncd diff --git a/sysutils/lxqt-admin/Makefile b/sysutils/lxqt-admin/Makefile index edc562f26907..117b242dbf62 100644 --- a/sysutils/lxqt-admin/Makefile +++ b/sysutils/lxqt-admin/Makefile @@ -11,7 +11,7 @@ COMMENT= System administration tool for the LXQt desktop LICENSE= LGPL21+ -USES= cmake:outsource compiler:c++11-lang gnome kde:5 localbase \ +USES= cmake compiler:c++11-lang gnome kde:5 localbase \ lxqt pkgconfig tar:xz qt:5 USE_QT= buildtools_build qmake_build core dbus gui svg \ widgets x11extras xml diff --git a/sysutils/lxqt-config/Makefile b/sysutils/lxqt-config/Makefile index 30c3600c2b3e..a406b428e6c2 100644 --- a/sysutils/lxqt-config/Makefile +++ b/sysutils/lxqt-config/Makefile @@ -14,7 +14,7 @@ COMMENT= LXQt system settings center LICENSE= GPLv2 LGPL21+ LICENSE_COMB= multi -USES= cmake:outsource compiler:c++11-lib kde:5 localbase:ldflags lxqt qt:5 \ +USES= cmake compiler:c++11-lib kde:5 localbase:ldflags lxqt qt:5 \ pkgconfig tar:xz USE_QT= buildtools_build qmake_build concurrent core dbus \ gui linguisttools svg widgets x11extras xml diff --git a/sysutils/lxqt-policykit/Makefile b/sysutils/lxqt-policykit/Makefile index 9de65ee99eae..6c169f2663fe 100644 --- a/sysutils/lxqt-policykit/Makefile +++ b/sysutils/lxqt-policykit/Makefile @@ -15,7 +15,7 @@ LICENSE= LGPL21+ LIB_DEPENDS= libpolkit-qt5-agent-1.so:sysutils/polkit-qt@qt5 \ libpolkit-agent-1.so:sysutils/polkit -USES= cmake:outsource compiler:c++11-lib gettext-runtime kde:5 qt:5 \ +USES= cmake compiler:c++11-lib gettext-runtime kde:5 qt:5 \ localbase:ldflags lxqt pkgconfig tar:xz USE_QT= buildtools_build qmake_build core dbus gui linguisttools \ svg widgets x11extras xml diff --git a/sysutils/lxqt-qtplugin/Makefile b/sysutils/lxqt-qtplugin/Makefile index 369f41558d0c..4c46ef255eca 100644 --- a/sysutils/lxqt-qtplugin/Makefile +++ b/sysutils/lxqt-qtplugin/Makefile @@ -17,7 +17,7 @@ LIB_DEPENDS= libdbusmenu-qt5.so:devel/libdbusmenu-qt@qt5 \ libmenu-cache.so:x11/menu-cache \ libexif.so:graphics/libexif -USES= cmake:outsource compiler:c++11-lib kde:5 lxqt pkgconfig tar:xz qt:5 gettext-runtime +USES= cmake compiler:c++11-lib kde:5 lxqt pkgconfig tar:xz qt:5 gettext-runtime USE_XORG=xcb USE_GNOME=glib20 diff --git a/sysutils/nepomuk-core-kde4/Makefile b/sysutils/nepomuk-core-kde4/Makefile index bf3776fcb59f..50ff775ed38a 100644 --- a/sysutils/nepomuk-core-kde4/Makefile +++ b/sysutils/nepomuk-core-kde4/Makefile @@ -18,7 +18,7 @@ LIB_DEPENDS= libtag.so:audio/taglib \ libepub.so:textproc/ebook-tools \ libqmobipocket.so:graphics/kdegraphics-mobipocket-kde4 -USES= cmake:outsource kde:4 python:run qt:4 shebangfix tar:xz +USES= cmake kde:4 python:run qt:4 shebangfix tar:xz USE_KDE= automoc4 baloo kdelibs kfilemetadata \ ontologies soprano USE_QT= corelib dbus gui qmake_build moc_build rcc_build uic_build diff --git a/sysutils/nepomuk-widgets-kde4/Makefile b/sysutils/nepomuk-widgets-kde4/Makefile index 5814785748cd..f60e102f1a5f 100644 --- a/sysutils/nepomuk-widgets-kde4/Makefile +++ b/sysutils/nepomuk-widgets-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= The NepomukWidget libraries DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs automoc4 soprano nepomuk-core USE_QT= corelib dbus gui moc_build qmake_build rcc_build uic_build USE_LDCONFIG= yes diff --git a/sysutils/osquery/Makefile b/sysutils/osquery/Makefile index 707a8d2bc96a..24d4b67aedde 100644 --- a/sysutils/osquery/Makefile +++ b/sysutils/osquery/Makefile @@ -30,7 +30,7 @@ LIB_DEPENDS= libaugeas.so:textproc/augeas \ libzstd.so:archivers/zstd RUN_DEPENDS= ca_root_nss>0:security/ca_root_nss -USES= cmake:outsource libtool python:build compiler:c++11-lib \ +USES= cmake libtool python:build compiler:c++11-lib \ libarchive ssl USE_GNOME= libxml2 CONFIGURE_ENV+= OSQUERY_BUILD_VERSION="${PORTVERSION}" HOME="${WRKDIR}" \ diff --git a/sysutils/plasma-pass/Makefile b/sysutils/plasma-pass/Makefile index 10c0f758b9c8..5da65cddef69 100644 --- a/sysutils/plasma-pass/Makefile +++ b/sysutils/plasma-pass/Makefile @@ -10,7 +10,7 @@ COMMENT= Plasma applet for Pass password manager RUN_DEPENDS= pass:sysutils/password-store -USES= cmake:outsource compiler:c++11-lib kde:5 qt:5 +USES= cmake compiler:c++11-lib kde:5 qt:5 USE_KDE= config coreaddons i18n itemmodels package plasma-framework service \ ecm_build USE_QT= core dbus declarative gui network \ diff --git a/sysutils/plasma5-discover/Makefile b/sysutils/plasma5-discover/Makefile index c615c662ee7a..0d5505b60755 100644 --- a/sysutils/plasma5-discover/Makefile +++ b/sysutils/plasma5-discover/Makefile @@ -11,7 +11,7 @@ COMMENT= Plasma5 package management tools # TODO: update packagekit-qt5 #LIB_DEPENDS= libpackagekit-qt.so:ports-mgmt/packagekit-qt5 -USES= cmake:outsource compiler:c++11-lib cpe desktop-file-utils \ +USES= cmake compiler:c++11-lib cpe desktop-file-utils \ gettext kde:5 pkgconfig qt:5 tar:xz USE_KDE= archive attica auth codecs completion config configwidgets \ coreaddons crash dbusaddons ecm i18n iconthemes itemmodels \ diff --git a/sysutils/plasma5-drkonqi/Makefile b/sysutils/plasma5-drkonqi/Makefile index 69e2cdac79d8..60152d711d90 100644 --- a/sysutils/plasma5-drkonqi/Makefile +++ b/sysutils/plasma5-drkonqi/Makefile @@ -8,7 +8,7 @@ CATEGORIES= sysutils kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 crash handler -USES= cmake:outsource compiler:c++11-lang kde:5 pkgconfig qt:5 tar:xz +USES= cmake compiler:c++11-lang kde:5 pkgconfig qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons \ crash i18n idletime jobwidgets kio notifications \ service wallet widgetsaddons xmlrpcclient diff --git a/sysutils/plasma5-kde-cli-tools/Makefile b/sysutils/plasma5-kde-cli-tools/Makefile index 6c9f29657c27..0d64990b9537 100644 --- a/sysutils/plasma5-kde-cli-tools/Makefile +++ b/sysutils/plasma5-kde-cli-tools/Makefile @@ -10,7 +10,7 @@ COMMENT= Plasma5 non-interactive system tools CONFLICTS_INSTALL= kde-runtime-kde4 -USES= cmake:outsource compiler:c++11-lib cpe gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib cpe gettext kde:5 qt:5 tar:xz USE_KDE= activities auth bookmarks codecs completion config configwidgets \ coreaddons crash ecm emoticons guiaddons i18n iconthemes init \ itemmodels itemviews jobwidgets kcmutils kdelibs4support kdesu \ diff --git a/sysutils/plasma5-kinfocenter/Makefile b/sysutils/plasma5-kinfocenter/Makefile index 332919017c82..689bb14b687c 100644 --- a/sysutils/plasma5-kinfocenter/Makefile +++ b/sysutils/plasma5-kinfocenter/Makefile @@ -10,7 +10,7 @@ COMMENT= Plasma5 utility providing system information LIB_DEPENDS= libpci.so:devel/libpci -USES= cmake:outsource compiler:c++11-lib cpe gettext kde:5 pkgconfig \ +USES= cmake compiler:c++11-lib cpe gettext kde:5 pkgconfig \ qt:5 tar:xz USE_GL= egl gl glu USE_KDE= auth bookmarks codecs completion config configwidgets \ diff --git a/sysutils/plasma5-kmenuedit/Makefile b/sysutils/plasma5-kmenuedit/Makefile index 73ca38d5f9a8..7c9960183727 100644 --- a/sysutils/plasma5-kmenuedit/Makefile +++ b/sysutils/plasma5-kmenuedit/Makefile @@ -8,7 +8,7 @@ CATEGORIES= sysutils kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 menu editor -USES= cmake:outsource compiler:c++11-lib cpe gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib cpe gettext kde:5 qt:5 tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons guiaddons ecm emoticons hotkeys \ i18n iconthemes init itemmodels itemviews jobwidgets \ diff --git a/sysutils/plasma5-ksysguard/Makefile b/sysutils/plasma5-ksysguard/Makefile index b70d2c8d3738..ab13f118db3a 100644 --- a/sysutils/plasma5-ksysguard/Makefile +++ b/sysutils/plasma5-ksysguard/Makefile @@ -8,7 +8,7 @@ CATEGORIES= sysutils kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 utility to track and control the running processes -USES= cmake:outsource compiler:c++11-lib cpe desktop-file-utils \ +USES= cmake compiler:c++11-lib cpe desktop-file-utils \ gettext kde:5 qt:5 tar:xz USE_KDE= attica auth codecs completion config configwidgets coreaddons \ dbusaddons emoticons i18n iconthemes init itemmodels \ diff --git a/sysutils/plasma5-libksysguard/Makefile b/sysutils/plasma5-libksysguard/Makefile index 4f6859eb587f..3b191c421e4e 100644 --- a/sysutils/plasma5-libksysguard/Makefile +++ b/sysutils/plasma5-libksysguard/Makefile @@ -8,7 +8,7 @@ CATEGORIES= sysutils kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 library to track and control running processes -USES= cmake:outsource compiler:c++11-lib cpe gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib cpe gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons i18n \ iconthemes package plasma-framework service widgetsaddons \ windowsystem diff --git a/sysutils/plasma5-polkit-kde-agent-1/Makefile b/sysutils/plasma5-polkit-kde-agent-1/Makefile index 893f90dd0284..cbb1077318cf 100644 --- a/sysutils/plasma5-polkit-kde-agent-1/Makefile +++ b/sysutils/plasma5-polkit-kde-agent-1/Makefile @@ -10,7 +10,7 @@ COMMENT= Plasma5 daemon providing a polkit authentication UI LIB_DEPENDS= libpolkit-qt5-core-1.so:sysutils/polkit-qt@qt5 -USES= cmake:outsource compiler:c++11-lib cpe gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib cpe gettext kde:5 qt:5 tar:xz USE_KDE= config coreaddons crash dbusaddons ecm i18n iconthemes \ notifications widgetsaddons windowsystem USE_QT= core dbus gui widgets \ diff --git a/sysutils/plasma5-powerdevil/Makefile b/sysutils/plasma5-powerdevil/Makefile index a5c1d2802adc..b7f2db856a0a 100644 --- a/sysutils/plasma5-powerdevil/Makefile +++ b/sysutils/plasma5-powerdevil/Makefile @@ -10,7 +10,7 @@ COMMENT= Plasma5 tool to manage the power consumption settings RUN_DEPENDS= ${LOCALBASE}/libexec/upowerd:sysutils/upower -USES= cmake:outsource compiler:c++11-lib cpe gettext kde:5 pkgconfig qt:5 tar:xz +USES= cmake compiler:c++11-lib cpe gettext kde:5 pkgconfig qt:5 tar:xz USE_KDE= activities auth bookmarks codecs completion configwidgets \ coreaddons crash config dbusaddons ecm emoticons globalaccel \ guiaddons i18n idletime iconthemes init itemmodels itemviews \ diff --git a/sysutils/plasma5-systemsettings/Makefile b/sysutils/plasma5-systemsettings/Makefile index dd05fa504b7e..0ced9dfefd1e 100644 --- a/sysutils/plasma5-systemsettings/Makefile +++ b/sysutils/plasma5-systemsettings/Makefile @@ -8,7 +8,7 @@ CATEGORIES= sysutils kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 system settings -USES= cmake:outsource compiler:c++11-lib cpe gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib cpe gettext kde:5 qt:5 tar:xz USE_KDE= activities activities-stats auth codecs completion config \ configwidgets coreaddons crash dbusaddons doctools ecm i18n \ iconthemes itemviews jobwidgets js kcmutils kdeclarative khtml \ diff --git a/sysutils/plasma5-user-manager/Makefile b/sysutils/plasma5-user-manager/Makefile index fe7698c3f8ea..d96cb9884c3e 100644 --- a/sysutils/plasma5-user-manager/Makefile +++ b/sysutils/plasma5-user-manager/Makefile @@ -11,7 +11,7 @@ COMMENT= Plasma5 user manager LIB_DEPENDS= libpwquality.so:security/libpwquality RUN_DEPENDS= accountsservice>=0:sysutils/accountsservice -USES= cmake:outsource compiler:c++11-lib cpe gettext \ +USES= cmake compiler:c++11-lib cpe gettext \ kde:5 pkgconfig qt:5 tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash ecm emoticons guiaddons i18n iconthemes \ diff --git a/sysutils/polkit-qt/Makefile b/sysutils/polkit-qt/Makefile index 94cdfe55bbc4..63977a0eaf55 100644 --- a/sysutils/polkit-qt/Makefile +++ b/sysutils/polkit-qt/Makefile @@ -20,7 +20,7 @@ LIB_DEPENDS= libpolkit-agent-1.so:sysutils/polkit FLAVORS= qt5 qt4 FLAVOR?= ${FLAVORS:[1]} -USES= cmake:outsource gnome pkgconfig tar:bzip2 +USES= cmake gnome pkgconfig tar:bzip2 USE_GNOME= glib20 CMAKE_OFF= BUILD_EXAMPLES \ BUILD_TEST diff --git a/sysutils/rocr/Makefile b/sysutils/rocr/Makefile index 78bc5969449d..68a0cfe0d2a6 100644 --- a/sysutils/rocr/Makefile +++ b/sysutils/rocr/Makefile @@ -15,7 +15,7 @@ ONLY_FOR_ARCHS= amd64 LIB_DEPENDS= libhsakmt.so:sysutils/roct -USES= cmake:outsource +USES= cmake USE_LDCONFIG= yes USE_GITHUB= yes diff --git a/sysutils/roct/Makefile b/sysutils/roct/Makefile index 7e39e8435b98..40d003d6c02d 100644 --- a/sysutils/roct/Makefile +++ b/sysutils/roct/Makefile @@ -15,7 +15,7 @@ ONLY_FOR_ARCHS= amd64 LIB_DEPENDS= libpci.so:devel/libpci -USES= cmake:outsource pkgconfig +USES= cmake pkgconfig USE_LDCONFIG= yes USE_GITHUB= yes diff --git a/sysutils/signon-kwallet-extension/Makefile b/sysutils/signon-kwallet-extension/Makefile index e37f05c23cba..c90128ccc5a3 100644 --- a/sysutils/signon-kwallet-extension/Makefile +++ b/sysutils/signon-kwallet-extension/Makefile @@ -9,7 +9,7 @@ COMMENT= KWallet integration for signon framework LIB_DEPENDS= libsignon-qt5.so:sysutils/signon-qt5 -USES= cmake:outsource compiler:c++11-lang kde:5 pkgconfig qt:5 tar:xz +USES= cmake compiler:c++11-lang kde:5 pkgconfig qt:5 tar:xz USE_KDE= ecm wallet USE_QT= core dbus gui \ buildtools_build qmake_build diff --git a/sysutils/sweeper-kde4/Makefile b/sysutils/sweeper-kde4/Makefile index 3ffc29d261a0..5ca801596f0b 100644 --- a/sysutils/sweeper-kde4/Makefile +++ b/sysutils/sweeper-kde4/Makefile @@ -12,7 +12,7 @@ COMMENT= Cleans temporal files for KDE DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= automoc4 kdelibs USE_QT= qmake_build moc_build rcc_build uic_build diff --git a/sysutils/sweeper/Makefile b/sysutils/sweeper/Makefile index 6f4fbe99ed9e..7e995b070028 100644 --- a/sysutils/sweeper/Makefile +++ b/sysutils/sweeper/Makefile @@ -7,7 +7,7 @@ CATEGORIES= sysutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Cleans temporal files for KDE -USES= cmake:outsource kde:5 qt:5 tar:xz +USES= cmake kde:5 qt:5 tar:xz USE_KDE= activities-stats auth bookmarks codecs config configwidgets \ coreaddons crash i18n kio service sonnet textwidgets \ widgetsaddons xmlgui diff --git a/sysutils/synergy-1/Makefile b/sysutils/synergy-1/Makefile index aac054bdde2b..b6189021d2ba 100644 --- a/sysutils/synergy-1/Makefile +++ b/sysutils/synergy-1/Makefile @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libcurl.so:ftp/curl -USES= cmake:outsource compiler:c++14-lang cpe ssl +USES= cmake compiler:c++14-lang cpe ssl CPE_VENDOR= synergy-foss USE_GITHUB= yes GH_ACCOUNT= symless diff --git a/sysutils/synergy/Makefile b/sysutils/synergy/Makefile index 8497afdabb14..889a52ce81f3 100644 --- a/sysutils/synergy/Makefile +++ b/sysutils/synergy/Makefile @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libcurl.so:ftp/curl -USES= cmake:outsource compiler:c++14-lang cpe ssl +USES= cmake compiler:c++14-lang cpe ssl CPE_VENDOR= synergy-foss USE_GITHUB= yes GH_ACCOUNT= symless diff --git a/sysutils/ttyd/Makefile b/sysutils/ttyd/Makefile index 08984b35609f..a0018ebb9f21 100644 --- a/sysutils/ttyd/Makefile +++ b/sysutils/ttyd/Makefile @@ -14,7 +14,7 @@ BUILD_DEPENDS= xxd:editors/vim-console LIB_DEPENDS= libjson-c.so:devel/json-c \ libwebsockets.so:net/libwebsockets -USES= cmake pkgconfig ssl +USES= cmake:insource pkgconfig ssl USE_CSTD= c99 USE_GITHUB= yes GH_ACCOUNT= tsl0922 diff --git a/sysutils/usbtop/Makefile b/sysutils/usbtop/Makefile index ae5f05ae0306..ff4b213d3b72 100644 --- a/sysutils/usbtop/Makefile +++ b/sysutils/usbtop/Makefile @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libboost_system.so:devel/boost-libs -USES= cmake:outsource compiler:c++11-lang +USES= cmake compiler:c++11-lang USE_GITHUB= yes GH_ACCOUNT= aguinet diff --git a/sysutils/zbackup/Makefile b/sysutils/zbackup/Makefile index a1e07f52d654..297a3609a7ac 100644 --- a/sysutils/zbackup/Makefile +++ b/sysutils/zbackup/Makefile @@ -13,7 +13,7 @@ LICENSE= GPLv2 LIB_DEPENDS= libprotobuf.so:devel/protobuf \ liblzo2.so:archivers/lzo2 -USES= alias cmake compiler:c++11-lang ssl +USES= alias cmake:insource compiler:c++11-lang ssl USE_CXXSTD= c++11 USE_GITHUB= yes diff --git a/textproc/belr/Makefile b/textproc/belr/Makefile index 3cac04c5499e..35b67a7bfbc0 100644 --- a/textproc/belr/Makefile +++ b/textproc/belr/Makefile @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libbctoolbox.so:net/bctoolbox -USES= cmake:outsource compiler:c++11-lib +USES= cmake compiler:c++11-lib USE_LDCONFIG= yes CMAKE_ARGS= -DENABLE_STATIC=NO -DENABLE_STRICT=NO diff --git a/textproc/castxml/Makefile b/textproc/castxml/Makefile index 338c302dbd1b..b3f2575f7a14 100644 --- a/textproc/castxml/Makefile +++ b/textproc/castxml/Makefile @@ -14,7 +14,7 @@ BUILD_DEPENDS= clang${LLVM_VERSION}:devel/llvm${LLVM_VERSION} RUN_DEPENDS= clang${LLVM_VERSION}:devel/llvm${LLVM_VERSION} TEST_DEPENDS= ${LOCALBASE}/lib/libxml2.so:textproc/libxml2 -USES= cmake:outsource +USES= cmake USE_GITHUB= yes GH_ACCOUNT= CastXML GH_PROJECT= CastXML diff --git a/textproc/cmark/Makefile b/textproc/cmark/Makefile index ca48b42cd284..d89672fdf1fb 100644 --- a/textproc/cmark/Makefile +++ b/textproc/cmark/Makefile @@ -13,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING CONFLICTS_INSTALL= py[2-3][0-9]-CommonMark -USES= cmake:outsource python:3.4+,test +USES= cmake python:3.4+,test USE_GITHUB= yes GH_ACCOUNT= commonmark USE_LDCONFIG= yes diff --git a/textproc/dikt/Makefile b/textproc/dikt/Makefile index 7f6bfcee07a8..a018776f47c0 100644 --- a/textproc/dikt/Makefile +++ b/textproc/dikt/Makefile @@ -13,7 +13,7 @@ COMMENT= Dictionary for KDE LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -USES= cmake:outsource kde:5 qt:5 tar:txz +USES= cmake kde:5 qt:5 tar:txz USE_KDE= auth bookmarks codecs completion config configwidgets coreaddons dbusaddons guiaddons i18n \ iconthemes itemviews jobwidgets kio service solid widgetsaddons xmlgui USE_QT= concurrent core dbus gui network printsupport svg widgets xml \ diff --git a/textproc/fcitx-qt5/Makefile b/textproc/fcitx-qt5/Makefile index 3e44f2e3af36..f86640a1ff56 100644 --- a/textproc/fcitx-qt5/Makefile +++ b/textproc/fcitx-qt5/Makefile @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libfcitx-config.so:chinese/fcitx \ libxkbcommon.so:x11/libxkbcommon -USES= compiler:c++11-lib cmake:outsource gettext kde:5 pkgconfig qt:5 +USES= compiler:c++11-lib cmake gettext kde:5 pkgconfig qt:5 USE_GITHUB= yes GH_ACCOUNT= fcitx USE_KDE= ecm diff --git a/textproc/fcitx-table-other/Makefile b/textproc/fcitx-table-other/Makefile index 4bf9c4ae5cbe..2c02aa520d5c 100644 --- a/textproc/fcitx-table-other/Makefile +++ b/textproc/fcitx-table-other/Makefile @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libfcitx-config.so:chinese/fcitx BUILD_DEPENDS= bash:shells/bash -USES= cmake:outsource gettext tar:xz +USES= cmake gettext tar:xz NO_ARCH= yes STRIP= # ninja breaks without this: unknown target 'install/strip' diff --git a/textproc/kdiff3/Makefile b/textproc/kdiff3/Makefile index ee09506f75f5..30ab9bc57594 100644 --- a/textproc/kdiff3/Makefile +++ b/textproc/kdiff3/Makefile @@ -10,7 +10,7 @@ COMMENT= KDE graphical frontend for diff LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING -USES= cmake:outsource kde:5 qt:5 +USES= cmake kde:5 qt:5 USE_GITHUB= yes GH_ACCOUNT= KDE GH_TAGNAME= 42403aa diff --git a/textproc/kf5-kcodecs/Makefile b/textproc/kf5-kcodecs/Makefile index 3175908112be..743a125f317c 100644 --- a/textproc/kf5-kcodecs/Makefile +++ b/textproc/kf5-kcodecs/Makefile @@ -10,7 +10,7 @@ COMMENT= KF5 library for string manipulation LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/COPYING.LIB -USES= cmake:outsource compiler:c++11-lib gperf kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gperf kde:5 qt:5 tar:xz USE_KDE= ecm USE_QT= buildtools_build core linguisttools qmake_build diff --git a/textproc/kf5-sonnet/Makefile b/textproc/kf5-sonnet/Makefile index e2de4f978887..816514e63495 100644 --- a/textproc/kf5-sonnet/Makefile +++ b/textproc/kf5-sonnet/Makefile @@ -10,7 +10,7 @@ COMMENT= KF5 plugin-based spell checking library LIB_DEPENDS= libaspell.so:textproc/aspell \ libhunspell-1.6.so:textproc/hunspell -USES= cmake:outsource compiler:c++11-lib kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib kde:5 qt:5 tar:xz USE_KDE= ecm USE_QT= buildtools_build core gui linguisttools qmake_build \ testlib widgets diff --git a/textproc/kf5-syntax-highlighting/Makefile b/textproc/kf5-syntax-highlighting/Makefile index d40457c8f7ed..3665fd8f946b 100644 --- a/textproc/kf5-syntax-highlighting/Makefile +++ b/textproc/kf5-syntax-highlighting/Makefile @@ -7,7 +7,7 @@ CATEGORIES= textproc kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 syntax highlighting engine for structured text and code -USES= cmake:outsource compiler:c++11-lib kde:5 perl5 qt:5 tar:xz +USES= cmake compiler:c++11-lib kde:5 perl5 qt:5 tar:xz USE_KDE= ecm USE_QT= buildtools_build core gui linguisttools_build \ network testlib qmake_build diff --git a/textproc/kompare-kde4/Makefile b/textproc/kompare-kde4/Makefile index 5437e385e735..984e29815387 100644 --- a/textproc/kompare-kde4/Makefile +++ b/textproc/kompare-kde4/Makefile @@ -13,7 +13,7 @@ EXPIRATION_DATE= 2018-12-31 LIB_DEPENDS= libkomparediff2.so:textproc/libkomparediff2-kde4 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs automoc4 USE_QT= moc_build qmake_build rcc_build uic_build diff --git a/textproc/kompare/Makefile b/textproc/kompare/Makefile index 49fd50d47e1d..1eeb72bdbf5e 100644 --- a/textproc/kompare/Makefile +++ b/textproc/kompare/Makefile @@ -9,7 +9,7 @@ COMMENT= Diff/Patch Frontend LIB_DEPENDS= libkomparediff2.so:textproc/libkomparediff2 -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons \ doctools ecm i18n iconthemes jobwidgets kio parts service \ sonnet texteditor textwidgets widgetsaddons xmlgui diff --git a/textproc/kreport/Makefile b/textproc/kreport/Makefile index 437871ce6ec8..0deb0cb29111 100644 --- a/textproc/kreport/Makefile +++ b/textproc/kreport/Makefile @@ -12,7 +12,7 @@ COMMENT= Framework for creation of reports in multiple formats LIB_DEPENDS= libKPropertyCore3.so:x11-toolkits/kproperty -USES= cmake:outsource compiler:c++11-lang gettext kde:5 \ +USES= cmake compiler:c++11-lang gettext kde:5 \ python:2.7 qt:5 tar:xz USE_KDE= config coreaddons ecm marble widgetsaddons USE_QT= core declarative gui network webkit widgets xml \ diff --git a/textproc/libcue/Makefile b/textproc/libcue/Makefile index 7af62b609fa8..e3c657ed1a34 100644 --- a/textproc/libcue/Makefile +++ b/textproc/libcue/Makefile @@ -18,6 +18,6 @@ USE_GITHUB= yes GH_ACCOUNT= lipnitsk USE_LDCONFIG= yes -USES= bison cmake:outsource pathfix +USES= bison cmake pathfix .include <bsd.port.mk> diff --git a/textproc/libkolabxml/Makefile b/textproc/libkolabxml/Makefile index a60ff72c4f6c..aaa47cdc16f5 100644 --- a/textproc/libkolabxml/Makefile +++ b/textproc/libkolabxml/Makefile @@ -27,7 +27,7 @@ CMAKE_ARGS= -DBUILD_TESTS:BOOL=OFF \ -DJAVA_BINDINGS:BOOL=OFF \ -DPHP_BINDINGS:BOOL=OFF \ -DPYTHON_BINDINGS:BOOL=OFF -USES= cmake:outsource +USES= cmake USE_LDCONFIG= yes PLIST_SUB= SHLIB_VER=${PORTVERSION} diff --git a/textproc/libkomparediff2-kde4/Makefile b/textproc/libkomparediff2-kde4/Makefile index deed583da342..3b0a31143e83 100644 --- a/textproc/libkomparediff2-kde4/Makefile +++ b/textproc/libkomparediff2-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= Library to compare files and strings DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs automoc4 USE_QT= qmake_build moc_build uic_build rcc_build USE_LDCONFIG= yes diff --git a/textproc/libkomparediff2/Makefile b/textproc/libkomparediff2/Makefile index 7d0985e83ddb..4f54b296f873 100644 --- a/textproc/libkomparediff2/Makefile +++ b/textproc/libkomparediff2/Makefile @@ -7,7 +7,7 @@ CATEGORIES= textproc kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Library to compare files and strings -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons ecm i18n kio parts \ service widgetsaddons xmlgui USE_QT= core dbus gui widgets xml \ diff --git a/textproc/luceneplusplus/Makefile b/textproc/luceneplusplus/Makefile index 2b17ec0985c4..4e2ec39043ee 100644 --- a/textproc/luceneplusplus/Makefile +++ b/textproc/luceneplusplus/Makefile @@ -17,7 +17,7 @@ LIB_DEPENDS= libboost_system.so:devel/boost-libs USE_GITHUB= yes GH_ACCOUNT= luceneplusplus GH_PROJECT= LucenePlusPlus -USES= cmake:outsource compiler:c++11-lang +USES= cmake compiler:c++11-lang USE_LDCONFIG= yes .include <bsd.port.pre.mk> diff --git a/textproc/sdcv/Makefile b/textproc/sdcv/Makefile index d7946667718c..552d80062991 100644 --- a/textproc/sdcv/Makefile +++ b/textproc/sdcv/Makefile @@ -13,7 +13,7 @@ COMMENT= Text-based utility for work with dictionaries in StarDict's format #' LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/LICENSE -USES= cmake:outsource compiler:c++11-lang pkgconfig readline +USES= cmake compiler:c++11-lang pkgconfig readline USE_GNOME= glib20 SUB_FILES= pkg-message diff --git a/textproc/sigil/Makefile b/textproc/sigil/Makefile index a78f1fbeb471..ab10cb6d6f82 100644 --- a/textproc/sigil/Makefile +++ b/textproc/sigil/Makefile @@ -20,7 +20,7 @@ USE_GITHUB= yes GH_ACCOUNT= Sigil-Ebook GH_PROJECT= Sigil -USES= cmake:outsource compiler:c++11-lib desktop-file-utils \ +USES= cmake compiler:c++11-lib desktop-file-utils \ pkgconfig python:3.4+ qt:5 shebangfix SHEBANG_FILES= src/Resource_Files/plugin_launchers/python/*.py \ src/Resource_Files/python3lib/*.py diff --git a/textproc/soprano/Makefile b/textproc/soprano/Makefile index 73425c5c15dc..3d712368cfa7 100644 --- a/textproc/soprano/Makefile +++ b/textproc/soprano/Makefile @@ -19,7 +19,7 @@ LIB_DEPENDS= libraptor2.so:textproc/raptor2 \ USE_QT= corelib dbus network qtestlib_build xml \ qmake_build moc_build uic_build rcc_build -USES= cmake:outsource pkgconfig qt:4 tar:bzip2 +USES= cmake pkgconfig qt:4 tar:bzip2 CMAKE_ARGS+= -DSOPRANO_DISABLE_CLUCENE_INDEX=yes \ -DSOPRANO_DISABLE_SESAME2_BACKEND=yes USE_LDCONFIG= yes diff --git a/textproc/uncrustify/Makefile b/textproc/uncrustify/Makefile index deee2c93abc7..735dc8c234cb 100644 --- a/textproc/uncrustify/Makefile +++ b/textproc/uncrustify/Makefile @@ -19,7 +19,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING USE_GITHUB= yes GH_TAGNAME= dbe32c0 -USES= cmake:outsource +USES= cmake CMAKE_ARGS= -DNoGitVersionString:BOOL=TRUE TEST_TARGET= test diff --git a/textproc/wbxml2/Makefile b/textproc/wbxml2/Makefile index fdc53d85221f..a7e6e2cf2cea 100644 --- a/textproc/wbxml2/Makefile +++ b/textproc/wbxml2/Makefile @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libexpat.so:textproc/expat2 -USES= cmake:outsource iconv tar:bzip2 +USES= cmake iconv tar:bzip2 USE_LDCONFIG= yes WRKSRC= ${WRKDIR}/libwbxml-${PORTVERSION} diff --git a/textproc/wv2/Makefile b/textproc/wv2/Makefile index b3f17c089652..213279631cc4 100644 --- a/textproc/wv2/Makefile +++ b/textproc/wv2/Makefile @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING.LIB USE_GNOME= libgsf GNU_CONFIGURE= yes -USES= cmake:outsource iconv libtool pkgconfig tar:bzip2 +USES= cmake iconv libtool pkgconfig tar:bzip2 USE_LDCONFIG= yes post-patch: diff --git a/textproc/zorba/Makefile b/textproc/zorba/Makefile index 5c71b434015c..aeae531c5f75 100644 --- a/textproc/zorba/Makefile +++ b/textproc/zorba/Makefile @@ -37,7 +37,7 @@ JAVA_CMAKE_BOOL= WITH_JAVA CONFLICTS= xqilla-[0-9]* CONFLICTS_BUILD= bison -USES= cmake:outsource compiler:c++11-lib libedit +USES= cmake compiler:c++11-lib libedit USE_GNOME= libxml2 libxslt USE_LDCONFIG= yes USE_CXXSTD= c++11 diff --git a/textproc/zxing-cpp/Makefile b/textproc/zxing-cpp/Makefile index 83dd0a36f9b0..3f2ace811c91 100644 --- a/textproc/zxing-cpp/Makefile +++ b/textproc/zxing-cpp/Makefile @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libopencv_core.so:graphics/opencv-core \ libopencv_photo.so:graphics/opencv -USES= cmake:outsource compiler:c++11-lang iconv +USES= cmake compiler:c++11-lang iconv USE_GITHUB= yes GH_ACCOUNT= glassechidna GH_TAGNAME= 5aad474 diff --git a/www/apt-cacher-ng/Makefile b/www/apt-cacher-ng/Makefile index c80c4072e883..29a60129ee5c 100644 --- a/www/apt-cacher-ng/Makefile +++ b/www/apt-cacher-ng/Makefile @@ -14,7 +14,7 @@ LICENSE_NAME= Eduard Bloch license LICENSE_FILE= ${WRKSRC}/COPYING LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept -USES= compiler:c++11-lang cmake:outsource ssl tar:xz +USES= compiler:c++11-lang cmake ssl tar:xz USE_RC_SUBR= apt_cacher_ng CMAKE_ARGS= -DLIBDIR:PATH=${DATADIR} \ diff --git a/www/choqok/Makefile b/www/choqok/Makefile index cea8bc8e910f..d3a9d405b51b 100644 --- a/www/choqok/Makefile +++ b/www/choqok/Makefile @@ -18,7 +18,7 @@ LIB_DEPENDS= libqjson-qt5.so:devel/qjson@qt5 \ libqoauth-qt5.so:net/qoauth-qt5 \ libtelepathy-qt5.so:net-im/telepathy-qt@qt5 -USES= cmake:outsource compiler:c++11-lib gettext kde:5 pkgconfig qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 pkgconfig qt:5 tar:xz USE_KDE= attica auth bookmarks codecs completion config configwidgets \ coreaddons doctools ecm emoticons globalaccel guiaddons i18n \ itemviews jobwidgets kcmutils kdewebkit kio notifications \ diff --git a/www/cpr/Makefile b/www/cpr/Makefile index d32c8279be1b..c9da8ae6ef54 100644 --- a/www/cpr/Makefile +++ b/www/cpr/Makefile @@ -16,7 +16,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libcurl.so:ftp/curl -USES= cmake:outsource +USES= cmake USE_GITHUB= yes GH_ACCOUNT= whoshuu GH_TUPLE= whoshuu:mongoose:df9f7a7:mongoose/opt/mongoose diff --git a/www/cutelyst/Makefile b/www/cutelyst/Makefile index e86038b4ba03..74a97e83e021 100644 --- a/www/cutelyst/Makefile +++ b/www/cutelyst/Makefile @@ -11,7 +11,7 @@ COMMENT= C++/Qt web framework LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/COPYING -USES= cmake:outsource localbase qt:5 +USES= cmake localbase qt:5 USE_GITHUB= yes USE_LDCONFIG= yes USE_QT= qmake_build buildtools_build \ diff --git a/www/davix/Makefile b/www/davix/Makefile index 566bda778e1a..634f9cc23956 100644 --- a/www/davix/Makefile +++ b/www/davix/Makefile @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libuuid.so:misc/e2fsprogs-libuuid -USES= cmake:outsource compiler:c++11-lang gnome localbase:ldflags python:build shebangfix ssl +USES= cmake compiler:c++11-lang gnome localbase:ldflags python:build shebangfix ssl SHEBANG_GLOB= *.py USE_GNOME= libxml2 USE_LDCONFIG= yes diff --git a/www/edbrowse/Makefile b/www/edbrowse/Makefile index 5719d81968b5..6fb532160b1a 100644 --- a/www/edbrowse/Makefile +++ b/www/edbrowse/Makefile @@ -17,7 +17,7 @@ LIB_DEPENDS= libpcre.so:devel/pcre \ libtidy5.so:www/tidy-html5 \ libduktape.so:lang/duktape-lib -USES= cmake compiler:c11 perl5 readline +USES= cmake:insource compiler:c11 perl5 readline USE_PERL5= build USE_GITHUB= yes diff --git a/www/falkon/Makefile b/www/falkon/Makefile index b26c498048d0..b8464b353a0b 100644 --- a/www/falkon/Makefile +++ b/www/falkon/Makefile @@ -12,7 +12,7 @@ COMMENT= Web browser based on WebKit engine and Qt Framework LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/COPYING -USES= cmake:outsource desktop-file-utils kde:5 qt:5 ssl tar:xz +USES= cmake desktop-file-utils kde:5 qt:5 ssl tar:xz USE_KDE= wallet USE_QT= core dbus declarative gui location network printsupport \ sql webchannel webengine widgets x11extras \ diff --git a/www/faup/Makefile b/www/faup/Makefile index 853a763a4866..45065ed9254e 100644 --- a/www/faup/Makefile +++ b/www/faup/Makefile @@ -16,7 +16,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USE_GITHUB= yes GH_ACCOUNT= stricaud -USES= cmake:outsource lua +USES= cmake lua USE_LDCONFIG= yes PORTDOCS= * diff --git a/www/hiawatha/Makefile b/www/hiawatha/Makefile index b4691b475621..77969105a320 100644 --- a/www/hiawatha/Makefile +++ b/www/hiawatha/Makefile @@ -13,7 +13,7 @@ COMMENT= Advanced and secure webserver for Unix LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/LICENSE -USES= cmake compiler:c11 +USES= cmake:insource compiler:c11 USE_RC_SUBR= hiawatha CMAKE_ARGS= -DCMAKE_INSTALL_LOCALSTATEDIR=/var \ diff --git a/www/kdewebdev-kde4/Makefile b/www/kdewebdev-kde4/Makefile index d1ccf303ec79..22a434ec7997 100644 --- a/www/kdewebdev-kde4/Makefile +++ b/www/kdewebdev-kde4/Makefile @@ -16,7 +16,7 @@ EXPIRATION_DATE= 2018-12-31 LIB_DEPENDS= libtidy.so:www/tidy-lib \ libboost_thread.so:devel/boost-libs -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_GNOME= libxml2 libxslt USE_KDE= kdelibs pimlibs automoc4 USE_QT= dbus porting_build \ diff --git a/www/kf5-kdewebkit/Makefile b/www/kf5-kdewebkit/Makefile index 04e75ba8f69a..b6398400679d 100644 --- a/www/kf5-kdewebkit/Makefile +++ b/www/kf5-kdewebkit/Makefile @@ -7,7 +7,7 @@ CATEGORIES= www kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 library providing integration of QtWebKit -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons \ ecm i18n jobwidgets kio parts service sonnet textwidgets \ wallet widgetsaddons xmlgui diff --git a/www/kf5-khtml/Makefile b/www/kf5-khtml/Makefile index 39218041da4b..4b1dc7ede6a1 100644 --- a/www/kf5-khtml/Makefile +++ b/www/kf5-khtml/Makefile @@ -10,7 +10,7 @@ COMMENT= KF5 KTHML rendering engine LIB_DEPENDS= libgif.so:graphics/giflib \ libpng.so:graphics/png -USES= cmake:outsource compiler:c++11-lib gettext gperf jpeg kde:5 \ +USES= cmake compiler:c++11-lib gettext gperf jpeg kde:5 \ qt:5 tar:xz USE_KDE= archive auth bookmarks codecs completion config \ configwidgets coreaddons ecm globalaccel i18n iconthemes \ diff --git a/www/kf5-kjs/Makefile b/www/kf5-kjs/Makefile index 11245a37a3af..fbbd06e68c7d 100644 --- a/www/kf5-kjs/Makefile +++ b/www/kf5-kjs/Makefile @@ -9,7 +9,7 @@ COMMENT= KF5 library providing an ECMAScript interpreter LIB_DEPENDS= libpcre.so:devel/pcre -USES= cmake:outsource compiler:c++11-lib kde:5 pkgconfig qt:5 tar:xz +USES= cmake compiler:c++11-lib kde:5 pkgconfig qt:5 tar:xz USE_KDE= ecm doctools USE_QT= buildtools_build core qmake_build diff --git a/www/kf5-kjsembed/Makefile b/www/kf5-kjsembed/Makefile index 58c0d278c239..e65bc68113cc 100644 --- a/www/kf5-kjsembed/Makefile +++ b/www/kf5-kjsembed/Makefile @@ -7,7 +7,7 @@ CATEGORIES= www kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 library for binding JavaScript objects to QObjects -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= archive doctools ecm i18n js USE_QT= buildtools_build core gui qmake_build svg \ uiplugin uitools widgets xml diff --git a/www/libevhtp/Makefile b/www/libevhtp/Makefile index 47e7cf6d5f2a..e9ac11f4f843 100644 --- a/www/libevhtp/Makefile +++ b/www/libevhtp/Makefile @@ -13,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libevent.so:devel/libevent -USES= cmake:outsource +USES= cmake USE_LDCONFIG= yes USE_GITHUB= yes GH_ACCOUNT= criticalstack diff --git a/www/libhpack/Makefile b/www/libhpack/Makefile index fb49f5071007..7b6a18771d16 100644 --- a/www/libhpack/Makefile +++ b/www/libhpack/Makefile @@ -23,7 +23,7 @@ LIB_DEPENDS= libcheck.so:devel/check CMAKE_OFF= BUILD_DOCS BUILD_TESTS ENABLE_GCOV USE_VALGRIND MAKE_JOBS_UNSAFE= yes USE_LDCONFIG= yes -USES= cmake pathfix pkgconfig python:2.7,build shebangfix +USES= cmake:insource pathfix pkgconfig python:2.7,build shebangfix GH_ACCOUNT= alobbs GH_TAGNAME= b0ade19 diff --git a/www/osrm-backend/Makefile b/www/osrm-backend/Makefile index 9ffffed70e58..0fa476f4541e 100644 --- a/www/osrm-backend/Makefile +++ b/www/osrm-backend/Makefile @@ -26,7 +26,7 @@ LIB_DEPENDS= libtbb.so:devel/tbb \ libboost_regex.so:devel/boost-libs \ libexpat.so:textproc/expat2 -USES= cmake:outsource lua:53 compiler:c++14-lang +USES= cmake lua:53 compiler:c++14-lang USE_GITHUB= yes GH_ACCOUNT= Project-OSRM USE_LDCONFIG= yes diff --git a/www/otter-browser/Makefile b/www/otter-browser/Makefile index 95a0399373f6..581747872846 100644 --- a/www/otter-browser/Makefile +++ b/www/otter-browser/Makefile @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libhunspell-1.6.so:textproc/hunspell -USES= cmake:outsource compiler:c++11-lib desktop-file-utils qt:5 +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 diff --git a/www/plasma5-plasma-browser-integration/Makefile b/www/plasma5-plasma-browser-integration/Makefile index bb0be9e31b57..ee33b9309fc9 100644 --- a/www/plasma5-plasma-browser-integration/Makefile +++ b/www/plasma5-plasma-browser-integration/Makefile @@ -9,7 +9,7 @@ PKGNAMEPREFIX= plasma5- # this port is not yet using CATEGORIES=kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 components to integrate browsers into the desktop -USES= compiler:c++11-lang cmake:outsource kde:5 qt:5 +USES= compiler:c++11-lang cmake kde:5 qt:5 USE_KDE= activities config coreaddons i18n kio notifications package \ plasma-framework runner service windowsystem USE_QT= core dbus gui widgets \ diff --git a/www/qhttpengine/Makefile b/www/qhttpengine/Makefile index b072b4b0ba10..db537a1872aa 100644 --- a/www/qhttpengine/Makefile +++ b/www/qhttpengine/Makefile @@ -12,7 +12,7 @@ COMMENT= HTTP server for Qt applications LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt -USES= cmake:outsource compiler:c++11-lang qt:5 +USES= cmake compiler:c++11-lang qt:5 USE_GITHUB= yes GH_ACCOUNT= nitroshare USE_QT= core network buildtools_build qmake_build diff --git a/www/qt5-webkit/Makefile b/www/qt5-webkit/Makefile index 8dafefd78580..6f77fd101f9a 100644 --- a/www/qt5-webkit/Makefile +++ b/www/qt5-webkit/Makefile @@ -19,7 +19,7 @@ LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \ libpng.so:graphics/png \ libwebp.so:graphics/webp -USES= bison cmake:outsource compiler:c++11-lang gperf jpeg \ +USES= bison cmake compiler:c++11-lang gperf jpeg \ pathfix perl5 pkgconfig python:2.7,build qt:5 sqlite:3 \ tar:xz USE_GNOME= glib20 libxml2 libxslt diff --git a/www/rekonq/Makefile b/www/rekonq/Makefile index 735d4872d958..c55255bb73af 100644 --- a/www/rekonq/Makefile +++ b/www/rekonq/Makefile @@ -17,7 +17,7 @@ EXPIRATION_DATE= 2018-12-31 LICENSE_FILE_GPLv3+ = ${WRKSRC}/COPYING LICENSE_FILE_GFDL= ${WRKSRC}/COPYING.DOC -USES= cmake:outsource gettext kde:4 qt:4 tar:xz +USES= cmake gettext kde:4 qt:4 tar:xz USE_KDE= kdelibs automoc4 USE_QT= script webkit \ moc_build qmake_build rcc_build uic_build diff --git a/www/restbed/Makefile b/www/restbed/Makefile index 53d8d4e3baf3..ad217961003f 100644 --- a/www/restbed/Makefile +++ b/www/restbed/Makefile @@ -11,7 +11,7 @@ COMMENT= Asynchronous RESTful functionality to C++11 applications LICENSE= AGPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE -USES= cmake:outsource compiler:c++11-lib ssl +USES= cmake compiler:c++11-lib ssl USE_GITHUB= yes GH_ACCOUNT= Corvusoft GH_TUPLE= Corvusoft:asio-dependency:f5c5708:a/dependency/asio \ diff --git a/www/webkit2-gtk3/Makefile b/www/webkit2-gtk3/Makefile index 3d20c168b614..4f482750c214 100644 --- a/www/webkit2-gtk3/Makefile +++ b/www/webkit2-gtk3/Makefile @@ -33,7 +33,7 @@ LIB_DEPENDS= libenchant-2.so:textproc/enchant2 \ PORTSCOUT= limitw:1,even -USES= bison cmake:outsource compiler:c++14-lang gettext gl gnome gperf \ +USES= bison cmake compiler:c++14-lang gettext gl gnome gperf \ jpeg localbase:ldflags perl5 pkgconfig python:2.7,build \ sqlite tar:xz USE_GNOME= cairo gdkpixbuf2 gtk30 introspection:build libxml2 libxslt diff --git a/www/wt/Makefile b/www/wt/Makefile index add15fe7bb6d..1e4b6d283d44 100644 --- a/www/wt/Makefile +++ b/www/wt/Makefile @@ -25,7 +25,7 @@ USE_GITHUB= yes GH_ACCOUNT= kdeforche USE_LDCONFIG= yes USE_XORG+=x11 -USES= cmake:outsource pkgconfig ssl +USES= cmake pkgconfig ssl CMAKE_ARGS+= -DCONFIGDIR:STRING=${LOCALBASE}/etc/wt \ -DGM_PREFIX:STRING=${LOCALBASE} \ -DPNG_PREFIX:STRING=${LOCALBASE} \ diff --git a/www/xpi-u2f4moz/Makefile b/www/xpi-u2f4moz/Makefile index 0fe0ea746eef..c6544d59bd7e 100644 --- a/www/xpi-u2f4moz/Makefile +++ b/www/xpi-u2f4moz/Makefile @@ -22,7 +22,7 @@ PLIST_SUB= SYSTEM_PROCESSOR=${SYSTEM_PROCESSOR} SYSTEM_PROCESSOR= x86 USE_GITHUB= yes -USES= cmake iconv pkgconfig +USES= cmake:insource iconv pkgconfig XPI_DIR= lib/xpi XPI_ID= u2f4moz@prefiks.org diff --git a/x11-clocks/amor-kde4/Makefile b/x11-clocks/amor-kde4/Makefile index 9d969bb6f87c..82b3dc742d04 100644 --- a/x11-clocks/amor-kde4/Makefile +++ b/x11-clocks/amor-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= Small animation which sits on top of active window DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs automoc4 USE_QT= moc_build qmake_build rcc_build uic_build diff --git a/x11-clocks/kteatime-kde4/Makefile b/x11-clocks/kteatime-kde4/Makefile index f68c6cf9efc5..198c06f00b8b 100644 --- a/x11-clocks/kteatime-kde4/Makefile +++ b/x11-clocks/kteatime-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= Handy timer for steeping tea DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs automoc4 USE_QT= moc_build qmake_build rcc_build uic_build diff --git a/x11-clocks/kteatime/Makefile b/x11-clocks/kteatime/Makefile index 8a22425a21db..2f64c090e029 100644 --- a/x11-clocks/kteatime/Makefile +++ b/x11-clocks/kteatime/Makefile @@ -7,7 +7,7 @@ CATEGORIES= x11-clocks kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Handy timer for steeping tea -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons crash doctools ecm \ i18n iconthemes notifications notifyconfig sonnet textwidgets \ widgetsaddons xmlgui diff --git a/x11-clocks/ktimer-kde4/Makefile b/x11-clocks/ktimer-kde4/Makefile index f2e8abe1ff7b..e5e644cc5f13 100644 --- a/x11-clocks/ktimer-kde4/Makefile +++ b/x11-clocks/ktimer-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= Countdown launcher for KDE DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= automoc4 kdelibs USE_QT= qmake_build moc_build rcc_build uic_build diff --git a/x11-clocks/ktimer/Makefile b/x11-clocks/ktimer/Makefile index 8b2d669a1dfc..962538489e2a 100644 --- a/x11-clocks/ktimer/Makefile +++ b/x11-clocks/ktimer/Makefile @@ -7,7 +7,7 @@ CATEGORIES= x11-clocks kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Countdown launcher for KDE -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets coreaddons \ dbusaddons doctools ecm i18n iconthemes jobwidgets kio \ notifications service widgetsaddons xmlgui diff --git a/x11-clocks/ktux-kde4/Makefile b/x11-clocks/ktux-kde4/Makefile index fbf00f183a4b..7f132dd34233 100644 --- a/x11-clocks/ktux-kde4/Makefile +++ b/x11-clocks/ktux-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= Tux-in-a-Spaceship screen saver DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs workspace automoc4 USE_QT= qt3support moc_build qmake_build rcc_build uic_build diff --git a/x11-fm/dolphin/Makefile b/x11-fm/dolphin/Makefile index 59d0bc0e5b96..a8fad7371b5a 100644 --- a/x11-fm/dolphin/Makefile +++ b/x11-fm/dolphin/Makefile @@ -14,7 +14,7 @@ RUN_DEPENDS= ${QT_PLUGINDIR}/ffmpegthumbs.so:multimedia/kdemultimedia-ffmpegthum ${QT_PLUGINDIR}/gsthumbnail.so:graphics/kdegraphics-thumbnailers \ ${QT_PLUGINDIR}/audiothumbnail.so:devel/kio-extras -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= activities attica auth baloo baloo-widgets bookmarks codecs \ completion config configwidgets coreaddons crash dbusaddons \ doctools ecm emoticons filemetadata i18n iconthemes init \ diff --git a/x11-fm/konqueror/Makefile b/x11-fm/konqueror/Makefile index 576f194ad771..8a8f1b98708b 100644 --- a/x11-fm/konqueror/Makefile +++ b/x11-fm/konqueror/Makefile @@ -9,7 +9,7 @@ COMMENT= KDE system log application LIB_DEPENDS= libtidy.so:www/tidy-lib -USES= cmake:outsource desktop-file-utils gettext kde:5 pkgconfig qt:5 tar:xz +USES= cmake desktop-file-utils gettext kde:5 pkgconfig qt:5 tar:xz USE_KDE= activities archive auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons guiaddons i18n iconthemes \ itemviews jobwidgets js kcmutils kdelibs4support \ diff --git a/x11-fm/krusader2-kde4/Makefile b/x11-fm/krusader2-kde4/Makefile index e6af2353674c..7bff61199a1c 100644 --- a/x11-fm/krusader2-kde4/Makefile +++ b/x11-fm/krusader2-kde4/Makefile @@ -19,7 +19,7 @@ EXPIRATION_DATE= 2018-12-31 CONFLICTS_INSTALL= krusader2-2.* -USES= cmake:outsource gettext kde:4 qt:4 tar:bzip2 +USES= cmake gettext kde:4 qt:4 tar:bzip2 USE_KDE= kdelibs automoc4 USE_QT= moc_build qmake_build rcc_build uic_build diff --git a/x11-fm/krusader2/Makefile b/x11-fm/krusader2/Makefile index 35edc9233a54..125f73d942ee 100644 --- a/x11-fm/krusader2/Makefile +++ b/x11-fm/krusader2/Makefile @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING CONFLICTS_INSTALL= krusader2-kde4 -USES= cmake:outsource gettext kde:5 qt:5 tar:xz +USES= cmake gettext kde:5 qt:5 tar:xz USE_KDE= archive auth auth bookmarks codecs completion config \ configwidgets coreaddons doctools ecm guiaddons i18n \ iconthemes itemviews jobwidgets kio notifications parts \ diff --git a/x11-fm/pcmanfm-qt/Makefile b/x11-fm/pcmanfm-qt/Makefile index c342e5cb4f74..3bf883f46e1f 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 \ libfm.so:x11/libfm \ libexif.so:graphics/libexif -USES= cmake:outsource compiler:c++11-lib desktop-file-utils \ +USES= cmake compiler:c++11-lib desktop-file-utils \ gettext-runtime localbase:ldflags lxqt pkgconfig kde:5 qt:5 tar:xz USE_QT= buildtools_build qmake_build core dbus gui linguisttools \ widgets x11extras diff --git a/x11-fm/pcmanfmqt-l10n/Makefile b/x11-fm/pcmanfmqt-l10n/Makefile index 587a6fbe5ae0..59d571d0cefa 100644 --- a/x11-fm/pcmanfmqt-l10n/Makefile +++ b/x11-fm/pcmanfmqt-l10n/Makefile @@ -13,7 +13,7 @@ COMMENT= Translations of pcmanfm-qt LICENSE= LGPL21+ -USES= cmake:outsource lxqt pkgconfig qt:5 tar:xz +USES= cmake lxqt pkgconfig qt:5 tar:xz USE_QT= buildtools_build qmake_build linguisttools USE_LXQT= buildtools diff --git a/x11-fm/wcmcommander/Makefile b/x11-fm/wcmcommander/Makefile index 92bea563bfa2..c09c2a4c4fef 100644 --- a/x11-fm/wcmcommander/Makefile +++ b/x11-fm/wcmcommander/Makefile @@ -17,7 +17,7 @@ USE_GITHUB= yes GH_ACCOUNT= corporateshark GH_PROJECT= WCMCommander -USES= compiler:c++11-lib cmake:outsource +USES= compiler:c++11-lib cmake CMAKE_ARGS= -DDATADIR="${DATADIR_REL}" USE_XORG= x11 diff --git a/x11-themes/adwaita-qt/Makefile b/x11-themes/adwaita-qt/Makefile index ddd21cd5faaa..61ddf373c805 100644 --- a/x11-themes/adwaita-qt/Makefile +++ b/x11-themes/adwaita-qt/Makefile @@ -17,7 +17,7 @@ FLAVOR?= ${FLAVORS:[1]} qt4_PKGNAMESUFFIX= 4 qt5_PKGNAMESUFFIX= 5 -USES= cmake:outsource compiler:c++11-lib localbase pkgconfig +USES= cmake compiler:c++11-lib localbase pkgconfig . if ${FLAVOR} == qt4 DEPRECATED= Qt4 has been EOL since december 2015 EXPIRATION_DATE=2019-03-15 diff --git a/x11-themes/gtk-qt4-engine/Makefile b/x11-themes/gtk-qt4-engine/Makefile index 16a5cd4919d5..6783fbe58e8e 100644 --- a/x11-themes/gtk-qt4-engine/Makefile +++ b/x11-themes/gtk-qt4-engine/Makefile @@ -22,7 +22,7 @@ USE_GITHUB= yes GH_ACCOUNT= davidsansome GH_TAGNAME= 0dc6c26 -USES= cmake gettext kde:4 pkgconfig qt:4 +USES= cmake:insource gettext kde:4 pkgconfig qt:4 USE_GNOME= cairo gdkpixbuf2 gtk20 USE_KDE= kdelibs automoc4 USE_QT= dbus corelib gui moc_build rcc_build uic_build qmake_build svg diff --git a/x11-themes/gtk3-oxygen-engine/Makefile b/x11-themes/gtk3-oxygen-engine/Makefile index 706769ee1171..ded04af87451 100644 --- a/x11-themes/gtk3-oxygen-engine/Makefile +++ b/x11-themes/gtk3-oxygen-engine/Makefile @@ -17,7 +17,7 @@ LICENSE= LGPL21 LIB_DEPENDS= libcairo.so:graphics/cairo \ libdbus-glib-1.so:devel/dbus-glib -USES= cmake:outsource compiler:c++11-lang pkgconfig tar:bzip2 +USES= cmake compiler:c++11-lang pkgconfig tar:bzip2 USE_GNOME= gtk30 .include <bsd.port.mk> diff --git a/x11-themes/kde-base-artwork-kde4/Makefile b/x11-themes/kde-base-artwork-kde4/Makefile index cd69708f40ef..97b72ca9b20b 100644 --- a/x11-themes/kde-base-artwork-kde4/Makefile +++ b/x11-themes/kde-base-artwork-kde4/Makefile @@ -14,7 +14,7 @@ LICENSE= GPLv2 DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= automoc4 kdelibs USE_QT= moc_build qmake_build rcc_build uic_build NO_BUILD= yes diff --git a/x11-themes/kde-gtk-config/Makefile b/x11-themes/kde-gtk-config/Makefile index b152d408abc5..6edd01a0f141 100644 --- a/x11-themes/kde-gtk-config/Makefile +++ b/x11-themes/kde-gtk-config/Makefile @@ -12,7 +12,7 @@ COMMENT= GTK2 and GTK3 Configurator for KDE DEPRECATED= Qt4 has been EOL since december 2015 EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource gettext kde:4 pkgconfig qt:4 tar:xz +USES= cmake gettext kde:4 pkgconfig qt:4 tar:xz USE_GNOME= gtk20 gtk30 USE_KDE= automoc4 kdelibs USE_QT= moc_build qmake_build rcc_build uic_build diff --git a/x11-themes/kde-wallpapers-kde4/Makefile b/x11-themes/kde-wallpapers-kde4/Makefile index ed1abb4270ec..54333614588a 100644 --- a/x11-themes/kde-wallpapers-kde4/Makefile +++ b/x11-themes/kde-wallpapers-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= Set of wallpapers for the KDE Plasma workspace DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= automoc4 kdelibs USE_QT= moc_build qmake_build rcc_build uic_build diff --git a/x11-themes/kde4-windeco-crystal/Makefile b/x11-themes/kde4-windeco-crystal/Makefile index 6320c7003acc..226b3b8ea64e 100644 --- a/x11-themes/kde4-windeco-crystal/Makefile +++ b/x11-themes/kde4-windeco-crystal/Makefile @@ -17,7 +17,7 @@ LICENSE= GPLv2 DEPRECATED= Qt4 has been EOL since december 2015 EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource,noninja kde:4 qt:4 tar:bzip2 +USES= cmake:noninja kde:4 qt:4 tar:bzip2 USE_KDE= kdelibs automoc4 workspace USE_QT= qmake_build moc_build rcc_build uic_build \ corelib gui qt3support diff --git a/x11-themes/kdeartwork-kde4/Makefile b/x11-themes/kdeartwork-kde4/Makefile index a098c0a7c7b7..ee5266c75dd9 100644 --- a/x11-themes/kdeartwork-kde4/Makefile +++ b/x11-themes/kdeartwork-kde4/Makefile @@ -13,7 +13,7 @@ COMMENT= KDE Artworks Themes DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs libkexiv2 workspace automoc4 USE_QT= corelib gui opengl \ moc_build qmake_build rcc_build uic_build diff --git a/x11-themes/kf5-breeze-icons/Makefile b/x11-themes/kf5-breeze-icons/Makefile index a7b1db8df84a..20d6b7c595cd 100644 --- a/x11-themes/kf5-breeze-icons/Makefile +++ b/x11-themes/kf5-breeze-icons/Makefile @@ -10,7 +10,7 @@ COMMENT= Breeze icon theme for KDE LICENSE= LGPL3+ LICENSE_FILE= ${WRKSRC}/COPYING-ICONS -USES= compiler:c++11-lang cmake:outsource kde:5 qt:5 tar:xz +USES= compiler:c++11-lang cmake kde:5 qt:5 tar:xz USE_KDE= ecm USE_QT= buildtools_build core qmake_build testlib diff --git a/x11-themes/kf5-kemoticons/Makefile b/x11-themes/kf5-kemoticons/Makefile index eeea21e2ecb6..cd1b4e11a5bf 100644 --- a/x11-themes/kf5-kemoticons/Makefile +++ b/x11-themes/kf5-kemoticons/Makefile @@ -7,7 +7,7 @@ CATEGORIES= x11-themes kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 library to convert emoticons -USES= cmake:outsource compiler:c++11-lib kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib kde:5 qt:5 tar:xz USE_KDE= archive config coreaddons ecm service USE_QT= buildtools_build core gui qmake_build widgets xml diff --git a/x11-themes/kf5-kiconthemes/Makefile b/x11-themes/kf5-kiconthemes/Makefile index b8e3b4d4a5aa..7081ce57c34d 100644 --- a/x11-themes/kf5-kiconthemes/Makefile +++ b/x11-themes/kf5-kiconthemes/Makefile @@ -7,7 +7,7 @@ CATEGORIES= x11-themes kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 library for handling icons in applications -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= archive auth codecs config configwidgets coreaddons ecm \ i18n itemviews widgetsaddons USE_QT= buildtools_build concurrent core dbus gui qmake_build \ diff --git a/x11-themes/kf5-oxygen-icons5/Makefile b/x11-themes/kf5-oxygen-icons5/Makefile index 2b6ea378d49f..03713ac805e9 100644 --- a/x11-themes/kf5-oxygen-icons5/Makefile +++ b/x11-themes/kf5-oxygen-icons5/Makefile @@ -7,7 +7,7 @@ CATEGORIES= x11-themes kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= The Oxygen icon theme for KDE -USES= cmake:outsource kde:5 qt:5 tar:xz +USES= cmake kde:5 qt:5 tar:xz USE_KDE= ecm_build # We only install icons. # The qmake dependency is only needed so that kf5-e-c-m can query qmake for diff --git a/x11-themes/kf5-qqc2-desktop-style/Makefile b/x11-themes/kf5-qqc2-desktop-style/Makefile index 2ad9ecb53661..292ccc949d94 100644 --- a/x11-themes/kf5-qqc2-desktop-style/Makefile +++ b/x11-themes/kf5-qqc2-desktop-style/Makefile @@ -7,7 +7,7 @@ CATEGORIES= x11-themes kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= Qt QuickControl2 style for KDE -USES= cmake:outsource compiler:c++11-lang kde:5 pkgconfig qt:5 tar:xz +USES= cmake compiler:c++11-lang kde:5 pkgconfig qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons ecm iconthemes \ kirigami2 widgetsaddons USE_QT= gui declarative network widgets xml \ diff --git a/x11-themes/lxqt-themes/Makefile b/x11-themes/lxqt-themes/Makefile index e62e13363316..b5f34a27bd09 100644 --- a/x11-themes/lxqt-themes/Makefile +++ b/x11-themes/lxqt-themes/Makefile @@ -11,7 +11,7 @@ COMMENT= Themes for the LXQt desktop LICENSE= LGPL21+ -USES= lxqt cmake:outsource tar:xz +USES= lxqt cmake tar:xz USE_LXQT= buildtools .include <bsd.port.mk> diff --git a/x11-themes/plasma5-breeze-gtk/Makefile b/x11-themes/plasma5-breeze-gtk/Makefile index d73454535d9c..f58c9b395d45 100644 --- a/x11-themes/plasma5-breeze-gtk/Makefile +++ b/x11-themes/plasma5-breeze-gtk/Makefile @@ -11,7 +11,7 @@ COMMENT= Plasma5 Breeze visual style for Gtk LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/COPYING.LIB -USES= cmake:outsource compiler:c++11-lang cpe kde:5 pkgconfig qt:5 \ +USES= cmake compiler:c++11-lang cpe kde:5 pkgconfig qt:5 \ tar:xz USE_GNOME= gdkpixbuf2 USE_KDE= ecm diff --git a/x11-themes/plasma5-breeze-kde4/Makefile b/x11-themes/plasma5-breeze-kde4/Makefile index 7c9d8368a29f..5eec9c184cc0 100644 --- a/x11-themes/plasma5-breeze-kde4/Makefile +++ b/x11-themes/plasma5-breeze-kde4/Makefile @@ -17,7 +17,7 @@ EXPIRATION_DATE= 2018-12-31 CMAKE_ON= USE_KDE4 -USES= cmake:outsource compiler:c++11-lang cpe gettext \ +USES= cmake compiler:c++11-lang cpe gettext \ kde:4 pkgconfig qt:4 tar:xz USE_KDE= kdelibs automoc4 USE_QT= corelib dbus gui svg \ diff --git a/x11-themes/plasma5-breeze/Makefile b/x11-themes/plasma5-breeze/Makefile index 21722d60a6f2..70a810913956 100644 --- a/x11-themes/plasma5-breeze/Makefile +++ b/x11-themes/plasma5-breeze/Makefile @@ -11,7 +11,7 @@ COMMENT= Plasma5 artwork, styles and assets for the Breeze visual style LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING -USES= cmake:outsource compiler:c++11-lib cpe \ +USES= cmake compiler:c++11-lib cpe \ gettext kde:5 pkgconfig qt:5 tar:xz USE_KDE= auth breeze-icons codecs config configwidgets coreaddons \ decoration ecm frameworkintegration guiaddons i18n kcmutils \ diff --git a/x11-themes/plasma5-kde-gtk-config/Makefile b/x11-themes/plasma5-kde-gtk-config/Makefile index 1d227ff0fa50..3ab47092fdc0 100644 --- a/x11-themes/plasma5-kde-gtk-config/Makefile +++ b/x11-themes/plasma5-kde-gtk-config/Makefile @@ -16,7 +16,7 @@ LICENSE_FILE_LGPL21= ${WRKSRC}/COPYING.LIB BUILD_DEPENDS= gsettings-desktop-schemas>=0:devel/gsettings-desktop-schemas RUN_DEPENDS= gsettings-desktop-schemas>=0:devel/gsettings-desktop-schemas -USES= cmake:outsource compiler:c++11-lib cpe gettext \ +USES= cmake compiler:c++11-lib cpe gettext \ kde:5 pkgconfig qt:5 tar:xz USE_GNOME= cairo gdkpixbuf2 gtk20 gtk30 glib20 USE_KDE= archive attica auth codecs completion config configwidgets \ diff --git a/x11-themes/plasma5-oxygen/Makefile b/x11-themes/plasma5-oxygen/Makefile index e12f09109b39..192366683b65 100644 --- a/x11-themes/plasma5-oxygen/Makefile +++ b/x11-themes/plasma5-oxygen/Makefile @@ -13,7 +13,7 @@ LICENSE_COMB= multi LICENSE_FILE= ${WRKSRC}/COPYING LICENSE_FILE_LGPL21= ${WRKSRC}/COPYING.LIB -USES= cmake:outsource compiler:c++11-lib cpe gettext \ +USES= cmake compiler:c++11-lib cpe gettext \ kde:5 pkgconfig qt:5 tar:xz USE_LDCONFIG= yes USE_KDE= auth codecs completion config configwidgets coreaddons decoration ecm \ diff --git a/x11-themes/plasma5-plasma-workspace-wallpapers/Makefile b/x11-themes/plasma5-plasma-workspace-wallpapers/Makefile index ba74b35307f0..228433a60cc1 100644 --- a/x11-themes/plasma5-plasma-workspace-wallpapers/Makefile +++ b/x11-themes/plasma5-plasma-workspace-wallpapers/Makefile @@ -12,7 +12,7 @@ LICENSE_COMB= multi LICENSE_FILE= ${WRKSRC}/COPYING LICENSE_FILE_LGPL3= ${WRKSRC}/COPYING.LGPL3 -USES= cmake:outsource cpe kde:5 qt:5 tar:xz +USES= cmake cpe kde:5 qt:5 tar:xz USE_KDE= ecm USE_QT= buildtools_build qmake_build diff --git a/x11-themes/qtcurve/Makefile b/x11-themes/qtcurve/Makefile index 5173e8bf2ac9..bbbd6237fe19 100644 --- a/x11-themes/qtcurve/Makefile +++ b/x11-themes/qtcurve/Makefile @@ -33,7 +33,7 @@ USE_GITHUB= yes GH_ACCOUNT= KDE GH_TAGNAME= a1ec5f8 -USES= compiler:c++11-lib cmake pkgconfig +USES= compiler:c++11-lib cmake:insource pkgconfig USE_XORG= x11 xcb .for i in gtk2 kde4 kf5 qt4 qt5 diff --git a/x11-toolkits/attica/Makefile b/x11-toolkits/attica/Makefile index 17fa34e8852d..730f3590663b 100644 --- a/x11-toolkits/attica/Makefile +++ b/x11-toolkits/attica/Makefile @@ -17,7 +17,7 @@ EXPIRATION_DATE= 2019-03-15 USE_QT= network qtestlib_build xml \ moc_build qmake_build rcc_build uic_build USE_LDCONFIG= yes -USES= cmake:outsource qt:4 tar:bzip2 +USES= cmake qt:4 tar:bzip2 CMAKE_ARGS= -DATTICA_ENABLE_TESTS:BOOL=OFF \ -DQT4_BUILD:BOOL=ON USE_CXXSTD= gnu++98 diff --git a/x11-toolkits/ctk/Makefile b/x11-toolkits/ctk/Makefile index c5f62d711fc9..0e01870066ac 100644 --- a/x11-toolkits/ctk/Makefile +++ b/x11-toolkits/ctk/Makefile @@ -11,7 +11,7 @@ COMMENT= Widgets and common code for medical imaging, surgical navigation, etc LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE -USES= cmake:outsource compiler:c++11-lib qt:5 +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 # see CMake/ctkMacroSetupQt.cmake diff --git a/x11-toolkits/fltk-devel/Makefile b/x11-toolkits/fltk-devel/Makefile index ae5d65e075ed..c7d46766ef18 100644 --- a/x11-toolkits/fltk-devel/Makefile +++ b/x11-toolkits/fltk-devel/Makefile @@ -17,7 +17,7 @@ LIB_DEPENDS= libpng.so:graphics/png \ libfreetype.so:print/freetype2 \ libfontconfig.so:x11-fonts/fontconfig -USES= cmake:outsource jpeg +USES= cmake jpeg USE_XORG= xft USE_GL= glu USE_LDCONFIG= ${PREFIX}/lib/fltk-devel diff --git a/x11-toolkits/kf5-attica/Makefile b/x11-toolkits/kf5-attica/Makefile index 0db75cf1e976..5c25a60f4a80 100644 --- a/x11-toolkits/kf5-attica/Makefile +++ b/x11-toolkits/kf5-attica/Makefile @@ -13,7 +13,7 @@ LICENSE= LGPL21 LGPL3 LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/COPYING -USES= cmake:outsource compiler:c++11-lib kde:5 pathfix qt:5 tar:xz +USES= cmake compiler:c++11-lib kde:5 pathfix qt:5 tar:xz USE_KDE= ecm USE_QT= buildtools_build core gui network qmake_build testlib_build widgets diff --git a/x11-toolkits/kf5-kcompletion/Makefile b/x11-toolkits/kf5-kcompletion/Makefile index 8abbf2482af1..8896a7d19c50 100644 --- a/x11-toolkits/kf5-kcompletion/Makefile +++ b/x11-toolkits/kf5-kcompletion/Makefile @@ -7,7 +7,7 @@ CATEGORIES= x11-toolkits kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 text completion helpers and widgets -USES= cmake:outsource compiler:c++11-lib kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib kde:5 qt:5 tar:xz USE_KDE= config ecm widgetsaddons USE_QT= buildtools_build core gui linguisttools qmake_build \ widgets xml diff --git a/x11-toolkits/kf5-kconfigwidgets/Makefile b/x11-toolkits/kf5-kconfigwidgets/Makefile index c6d28d4c8001..c613711a7140 100644 --- a/x11-toolkits/kf5-kconfigwidgets/Makefile +++ b/x11-toolkits/kf5-kconfigwidgets/Makefile @@ -7,7 +7,7 @@ CATEGORIES= x11-toolkits kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 widgets for configuration dialogs -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 shebangfix tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 shebangfix tar:xz USE_KDE= archive auth codecs config coreaddons doctools ecm guiaddons \ i18n widgetsaddons USE_QT= buildtools_build core dbus gui qmake_build widgets xml diff --git a/x11-toolkits/kf5-kdesignerplugin/Makefile b/x11-toolkits/kf5-kdesignerplugin/Makefile index 4bc420ab4ef8..327b6ad5e91c 100644 --- a/x11-toolkits/kf5-kdesignerplugin/Makefile +++ b/x11-toolkits/kf5-kdesignerplugin/Makefile @@ -7,7 +7,7 @@ CATEGORIES= x11-toolkits kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 integration of Frameworks widgets in Qt Designer/Creator -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons doctools ecm i18n iconthemes itemviews \ jobwidgets kdewebkit kio plotting service solid sonnet \ diff --git a/x11-toolkits/kf5-kguiaddons/Makefile b/x11-toolkits/kf5-kguiaddons/Makefile index 9ff3e969e1fc..b7729ff2984b 100644 --- a/x11-toolkits/kf5-kguiaddons/Makefile +++ b/x11-toolkits/kf5-kguiaddons/Makefile @@ -7,7 +7,7 @@ CATEGORIES= x11-toolkits kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 addons to QtGui -USES= cmake:outsource compiler:c++11-lib kde:5 pkgconfig qt:5 tar:xz +USES= cmake compiler:c++11-lib kde:5 pkgconfig qt:5 tar:xz USE_KDE= ecm USE_QT= buildtools_build core gui qmake_build testlib widgets x11extras USE_XORG= ice sm x11 xcb xext diff --git a/x11-toolkits/kf5-kirigami2/Makefile b/x11-toolkits/kf5-kirigami2/Makefile index f0a7045202bb..2aa9a6687c54 100644 --- a/x11-toolkits/kf5-kirigami2/Makefile +++ b/x11-toolkits/kf5-kirigami2/Makefile @@ -8,7 +8,7 @@ CATEGORIES= x11-toolkits kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= QtQuick based components set -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= ecm kdeclarative USE_QT= core dbus declarative gui linguisttools network \ quickcontrols2 svg testlib widgets \ diff --git a/x11-toolkits/kf5-kitemviews/Makefile b/x11-toolkits/kf5-kitemviews/Makefile index 045e5dba6f76..fefb2616cf6b 100644 --- a/x11-toolkits/kf5-kitemviews/Makefile +++ b/x11-toolkits/kf5-kitemviews/Makefile @@ -7,7 +7,7 @@ CATEGORIES= x11-toolkits kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 widget addons for Qt Model/View -USES= cmake:outsource compiler:c++11-lib kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib kde:5 qt:5 tar:xz USE_KDE= ecm USE_QT= buildtools_build core gui linguisttools qmake_build \ testlib widgets diff --git a/x11-toolkits/kf5-kjobwidgets/Makefile b/x11-toolkits/kf5-kjobwidgets/Makefile index b14ec6414550..05743491ac54 100644 --- a/x11-toolkits/kf5-kjobwidgets/Makefile +++ b/x11-toolkits/kf5-kjobwidgets/Makefile @@ -7,7 +7,7 @@ CATEGORIES= x11-toolkits kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 widgets for tracking KJob instance -USES= cmake:outsource compiler:c++11-lib kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib kde:5 qt:5 tar:xz USE_KDE= coreaddons ecm widgetsaddons USE_QT= buildtools_build core dbus gui linguisttools \ qmake_build widgets x11extras diff --git a/x11-toolkits/kf5-ktextwidgets/Makefile b/x11-toolkits/kf5-ktextwidgets/Makefile index 0e0fcc4c5b3f..d741309dce6c 100644 --- a/x11-toolkits/kf5-ktextwidgets/Makefile +++ b/x11-toolkits/kf5-ktextwidgets/Makefile @@ -7,7 +7,7 @@ CATEGORIES= x11-toolkits kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 advanced text editing widgets -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs completion config configwidgets \ coreaddons dbusaddons ecm guiaddons i18n \ iconthemes itemviews service sonnet \ diff --git a/x11-toolkits/kf5-kwidgetsaddons/Makefile b/x11-toolkits/kf5-kwidgetsaddons/Makefile index d16a30c7e2c9..95f3bad2d156 100644 --- a/x11-toolkits/kf5-kwidgetsaddons/Makefile +++ b/x11-toolkits/kf5-kwidgetsaddons/Makefile @@ -7,7 +7,7 @@ CATEGORIES= x11-toolkits kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 addons to QtWidgets -USES= cmake:outsource compiler:c++11-lib kde:5 pkgconfig qt:5 tar:xz +USES= cmake compiler:c++11-lib kde:5 pkgconfig qt:5 tar:xz USE_KDE= ecm USE_QT= buildtools_build core gui linguisttools \ qmake_build uiplugin uitools testlib widgets diff --git a/x11-toolkits/kf5-kxmlgui/Makefile b/x11-toolkits/kf5-kxmlgui/Makefile index f753c6c4004a..16ff06dbc745 100644 --- a/x11-toolkits/kf5-kxmlgui/Makefile +++ b/x11-toolkits/kf5-kxmlgui/Makefile @@ -7,7 +7,7 @@ CATEGORIES= x11-toolkits kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 user configurable main windows -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= attica5 auth codecs config configwidgets coreaddons ecm \ globalaccel i18n iconthemes itemviews sonnet textwidgets \ widgetsaddons windowsystem diff --git a/x11-toolkits/kproperty/Makefile b/x11-toolkits/kproperty/Makefile index 859868e5bd8d..1ddce2affdd7 100644 --- a/x11-toolkits/kproperty/Makefile +++ b/x11-toolkits/kproperty/Makefile @@ -10,7 +10,7 @@ DIST_SUBDIR= KDE/${PORTNAME} MAINTAINER= kde@FreeBSD.org COMMENT= Property editing framwork -USES= cmake:outsource compiler:c++11-lang gettext kde:5 qt:5 \ +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 \ diff --git a/x11-toolkits/mygui/Makefile b/x11-toolkits/mygui/Makefile index b5cfb13be8de..182d538216ad 100644 --- a/x11-toolkits/mygui/Makefile +++ b/x11-toolkits/mygui/Makefile @@ -28,7 +28,7 @@ GH_TAGNAME= b1e4bc8 MYGUI_RENDERSYSTEM?= 0 -USES= cmake compiler:c++11-lib pkgconfig +USES= cmake:insource compiler:c++11-lib pkgconfig CMAKE_ARGS= -DMYGUI_BUILD_DEMOS=FALSE \ -DMYGUI_BUILD_TOOLS=FALSE \ -DMYGUI_BUILD_DOCS=FALSE \ diff --git a/x11-toolkits/nanogui/Makefile b/x11-toolkits/nanogui/Makefile index 9e31f63d0fd0..22e18c671818 100644 --- a/x11-toolkits/nanogui/Makefile +++ b/x11-toolkits/nanogui/Makefile @@ -15,7 +15,7 @@ LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 \ libglfw.so:graphics/glfw -USES= cmake:outsource compiler:c++14-lang eigen:3,build,run +USES= cmake compiler:c++14-lang eigen:3,build,run USE_GITHUB= yes GH_ACCOUNT= wjakob GH_TAGNAME= 885e4fc diff --git a/x11-toolkits/plasma5-kdeplasma-addons/Makefile b/x11-toolkits/plasma5-kdeplasma-addons/Makefile index 714e6ca8063f..8735d2594408 100644 --- a/x11-toolkits/plasma5-kdeplasma-addons/Makefile +++ b/x11-toolkits/plasma5-kdeplasma-addons/Makefile @@ -8,7 +8,7 @@ CATEGORIES= x11-toolkits kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 addons to improve the Plasma experience -USES= cmake:outsource compiler:c++11-lib cpe gettext \ +USES= cmake compiler:c++11-lib cpe gettext \ kde:5 pkgconfig qt:5 tar:xz USE_KDE= activities archive attica auth bookmarks codecs completion \ config configwidgets coreaddons crash ecm emoticons guiaddons \ diff --git a/x11-toolkits/qtermwidget-l10n/Makefile b/x11-toolkits/qtermwidget-l10n/Makefile index c02a43b0353a..f5d7fce8efbf 100644 --- a/x11-toolkits/qtermwidget-l10n/Makefile +++ b/x11-toolkits/qtermwidget-l10n/Makefile @@ -14,7 +14,7 @@ COMMENT= Translations of Qtermwidget LICENSE= LGPL21+ -USES= cmake:outsource lxqt pkgconfig qt:5 tar:xz +USES= cmake lxqt pkgconfig qt:5 tar:xz USE_QT= buildtools_build qmake_build linguisttools USE_LXQT= buildtools diff --git a/x11-toolkits/qtermwidget/Makefile b/x11-toolkits/qtermwidget/Makefile index 3c71c57dd61f..d70a03350b23 100644 --- a/x11-toolkits/qtermwidget/Makefile +++ b/x11-toolkits/qtermwidget/Makefile @@ -12,7 +12,7 @@ COMMENT= Terminal widget for QTerminal LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/LICENSE -USES= cmake:outsource compiler:c++11-lang gettext-runtime lxqt \ +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 diff --git a/x11-wm/awesome/Makefile b/x11-wm/awesome/Makefile index 6faf48e5e0db..6061b6aba612 100644 --- a/x11-wm/awesome/Makefile +++ b/x11-wm/awesome/Makefile @@ -30,7 +30,7 @@ LIB_DEPENDS= libcairo.so:graphics/cairo \ CONFLICTS_INSTALL= awesome3-[0-9]* -USES= cmake:outsource compiler:c11 gettext iconv pkgconfig lua shebangfix +USES= cmake compiler:c11 gettext iconv pkgconfig lua shebangfix USE_GITHUB= yes GH_ACCOUNT= awesomewm SHEBANG_FILES= utils/awesome-client diff --git a/x11-wm/ctwm/Makefile b/x11-wm/ctwm/Makefile index cd541e7ca6e1..15332eb6cca6 100644 --- a/x11-wm/ctwm/Makefile +++ b/x11-wm/ctwm/Makefile @@ -13,7 +13,7 @@ COMMENT= Extension to twm, with support for multiple virtual screens LICENSE= MIT -USES= cmake:outsource jpeg tar:xz +USES= cmake jpeg tar:xz USE_XORG= x11 xext xt ice sm xpm xmu OPTIONS_DEFINE= DOCS EXAMPLES diff --git a/x11-wm/lxqt-panel/Makefile b/x11-wm/lxqt-panel/Makefile index 56beb9e5801c..1a02a01c8f12 100644 --- a/x11-wm/lxqt-panel/Makefile +++ b/x11-wm/lxqt-panel/Makefile @@ -18,7 +18,7 @@ LIB_DEPENDS= libdbusmenu-qt5.so:devel/libdbusmenu-qt@qt5 \ libsysstat-qt5.so:sysutils/libsysstat RUN_DEPENDS= lxmenu-data>=0.1.2:x11/lxmenu-data -USES= cmake:outsource compiler:c++11-lib gettext-runtime kde:5 qt:5 \ +USES= cmake compiler:c++11-lib gettext-runtime kde:5 qt:5 \ localbase:ldflags lxqt pkgconfig tar:xz USE_QT= buildtools_build qmake_build core dbus gui svg widgets \ x11extras xml diff --git a/x11-wm/obconf-qt/Makefile b/x11-wm/obconf-qt/Makefile index b79f831fd666..1f41cdbfc67b 100644 --- a/x11-wm/obconf-qt/Makefile +++ b/x11-wm/obconf-qt/Makefile @@ -17,7 +17,7 @@ LIB_DEPENDS= libobt.so:x11-wm/openbox \ libfreetype.so:print/freetype2 \ libImlib2.so:graphics/imlib2 -USES= cmake:outsource compiler:c++11-lang gettext-runtime localbase qt:5 \ +USES= cmake compiler:c++11-lang gettext-runtime localbase qt:5 \ gnome lxqt pkgconfig tar:xz USE_QT= buildtools_build qmake_build core gui linguisttools \ diff --git a/x11-wm/plasma5-kdecoration/Makefile b/x11-wm/plasma5-kdecoration/Makefile index 163bf30b02ac..9b764e1540fc 100644 --- a/x11-wm/plasma5-kdecoration/Makefile +++ b/x11-wm/plasma5-kdecoration/Makefile @@ -11,7 +11,7 @@ COMMENT= Plasma5 library to create window decorations LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/COPYING.LIB -USES= cmake:outsource compiler:c++11-lib cpe kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib cpe kde:5 qt:5 tar:xz USE_LDCONFIG= yes USE_KDE= ecm i18n USE_QT= core gui testlib buildtools_build qmake_build diff --git a/x11-wm/plasma5-kwin/Makefile b/x11-wm/plasma5-kwin/Makefile index c89d862027aa..337982759696 100644 --- a/x11-wm/plasma5-kwin/Makefile +++ b/x11-wm/plasma5-kwin/Makefile @@ -28,7 +28,7 @@ BUILD_DEPENDS= ${LOCALBASE}/include/linux/input.h:devel/evdev-proto \ Xwayland:x11-servers/xwayland RUN_DEPENDS= Xwayland:x11-servers/xwayland -USES= cmake:outsource compiler:c++11-lib cpe gettext \ +USES= cmake compiler:c++11-lib cpe gettext \ kde:5 pkgconfig qt:5 tar:xz USE_GL= egl USE_KDE= activities activities attica auth breeze codecs \ diff --git a/x11/antimicro/Makefile b/x11/antimicro/Makefile index b6592b47badc..5fbb8292e796 100644 --- a/x11/antimicro/Makefile +++ b/x11/antimicro/Makefile @@ -22,6 +22,6 @@ LDFLAGS+= -L${LOCALBASE}/lib USE_XORG= x11 xi xtst USE_QT= core gui linguisttools_build qmake_build buildtools_build widgets network USE_SDL= sdl2 -USES= cmake:outsource pkgconfig desktop-file-utils qt:5 shared-mime-info +USES= cmake pkgconfig desktop-file-utils qt:5 shared-mime-info .include <bsd.port.mk> diff --git a/x11/compton-conf/Makefile b/x11/compton-conf/Makefile index bc2007c24825..14b187f9058c 100644 --- a/x11/compton-conf/Makefile +++ b/x11/compton-conf/Makefile @@ -14,7 +14,7 @@ LICENSE= LGPL21+ LIB_DEPENDS= libconfig.so:devel/libconfig RUN_DEPENDS= compton:x11-wm/compton -USES= cmake:outsource compiler:c++11-lib localbase:ldflags lxqt qt:5 \ +USES= cmake compiler:c++11-lib localbase:ldflags lxqt qt:5 \ pkgconfig tar:xz USE_QT= buildtools_build qmake_build core dbus gui linguisttools \ widgets diff --git a/x11/kactivities/Makefile b/x11/kactivities/Makefile index 4fe449f3806f..c970ce31d0bd 100644 --- a/x11/kactivities/Makefile +++ b/x11/kactivities/Makefile @@ -13,7 +13,7 @@ COMMENT= Kactivities library DEPRECATED= Qt4 has been EOL since december 2015 EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource compiler:c++11-lib kde:4 qt:4 tar:xz +USES= cmake compiler:c++11-lib kde:4 qt:4 tar:xz USE_KDE= automoc4 kdelibs soprano nepomuk-core USE_QT= declarative moc_build qmake_build rcc_build uic_build USE_LDCONFIG= yes diff --git a/x11/kactivitymanagerd/Makefile b/x11/kactivitymanagerd/Makefile index 7dc929801e7f..fb413edbbd19 100644 --- a/x11/kactivitymanagerd/Makefile +++ b/x11/kactivitymanagerd/Makefile @@ -14,7 +14,7 @@ COMMENT= Activity Manager daemon DEPRECATED= Qt4 has been EOL since december 2015 EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource compiler:c++11-lib kde:4 qt:4 tar:xz +USES= cmake compiler:c++11-lib kde:4 qt:4 tar:xz USE_KDE= automoc4 kdelibs soprano nepomuk-core \ kactivities USE_QT= declarative opengl script sql \ diff --git a/x11/kde-baseapps-kde4/Makefile b/x11/kde-baseapps-kde4/Makefile index fb83946ea5bb..f2702e6c907c 100644 --- a/x11/kde-baseapps-kde4/Makefile +++ b/x11/kde-baseapps-kde4/Makefile @@ -14,7 +14,7 @@ EXPIRATION_DATE= 2018-12-31 LIB_DEPENDS= libtidy.so:www/tidy-lib -USES= cmake:outsource gettext kde:4 qt:4 tar:xz +USES= cmake gettext kde:4 qt:4 tar:xz USE_GNOME= glib20 USE_KDE= kdelibs baloo baloo-widgets libkonq \ automoc4 kactivities diff --git a/x11/kde-runtime-kde4/Makefile b/x11/kde-runtime-kde4/Makefile index 672590cfff2b..d98515aee30f 100644 --- a/x11/kde-runtime-kde4/Makefile +++ b/x11/kde-runtime-kde4/Makefile @@ -29,7 +29,7 @@ LIB_DEPENDS= libexiv2.so:graphics/exiv2 \ BUILD_DEPENDS= ${LOCALBASE}/lib/libssh.so:security/libssh RUN_DEPENDS= cagibid:net/cagibi -USES= cmake:outsource gettext jpeg kde:4 qt:4 samba:lib shared-mime-info \ +USES= cmake gettext jpeg kde:4 qt:4 samba:lib shared-mime-info \ shebangfix tar:xz USE_KDE= kactivities kdelibs oxygen-icons5 \ attica automoc4 pimlibs soprano strigi nepomuk-core diff --git a/x11/kde-workspace-kde4/Makefile b/x11/kde-workspace-kde4/Makefile index a58873c62189..845c1211ad6b 100644 --- a/x11/kde-workspace-kde4/Makefile +++ b/x11/kde-workspace-kde4/Makefile @@ -45,7 +45,7 @@ RUN_DEPENDS= ${KDE_PREFIX}/env/xdg-env.sh:misc/kde4-xdg-env \ ${LOCALBASE}/etc/pam.d/kde:security/pam_kde \ ${KDE_PREFIX}/share/apps/ksplash/Themes/Default/Theme.rc:x11-themes/kde-base-artwork-kde4 -USES= cmake:outsource,noninja compiler:c++11-lib gettext gmake jpeg kde:4 \ +USES= cmake:noninja compiler:c++11-lib gettext gmake jpeg kde:4 \ pkgconfig qt:4 shebangfix tar:xz USE_GL= gl glu USE_GNOME= glib20 libxml2 diff --git a/x11/kdelibs-kde4/Makefile b/x11/kdelibs-kde4/Makefile index 7a9745b9054b..e4a6fceb8b5a 100644 --- a/x11/kdelibs-kde4/Makefile +++ b/x11/kdelibs-kde4/Makefile @@ -41,7 +41,7 @@ RUN_DEPENDS= ${LOCALBASE}/share/icons/hicolor/index.theme:misc/hicolor-icon-them # kdelibs's last release was as part of KDE Applications 17.08.3 KDE_APPLICATIONS_VERSION= 17.08.3 -USES= cmake:outsource fam gettext grantlee:4 jpeg kde:4 perl5 \ +USES= cmake fam gettext grantlee:4 jpeg kde:4 perl5 \ qt:4 shared-mime-info shebangfix tar:xz ssl USE_GNOME= libxml2 libxslt USE_KDE= oxygen-icons5 \ diff --git a/x11/kf5-frameworkintegration/Makefile b/x11/kf5-frameworkintegration/Makefile index ea9559666a46..6e49b65b6478 100644 --- a/x11/kf5-frameworkintegration/Makefile +++ b/x11/kf5-frameworkintegration/Makefile @@ -7,7 +7,7 @@ CATEGORIES= x11 kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 workspace and cross-framework integration plugins -USES= cmake:outsource compiler:c++11-lib gettext kde:5 pkgconfig \ +USES= cmake compiler:c++11-lib gettext kde:5 pkgconfig \ qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons ecm i18n \ iconthemes kio newstuff notifications package widgetsaddons diff --git a/x11/kf5-kactivities-stats/Makefile b/x11/kf5-kactivities-stats/Makefile index f3b458a6af28..4eefc261115f 100644 --- a/x11/kf5-kactivities-stats/Makefile +++ b/x11/kf5-kactivities-stats/Makefile @@ -10,7 +10,7 @@ COMMENT= KF5 statistics for activities LIB_DEPENDS= libboost_system.so:devel/boost-libs RUN_DEPENDS= kactivitymanagerd:x11/plasma5-kactivitymanagerd -USES= cmake:outsource compiler:c++11-lib kde:5 pathfix qt:5 tar:xz +USES= cmake compiler:c++11-lib kde:5 pathfix qt:5 tar:xz USE_KDE= activities config ecm USE_QT= buildtools_build core dbus qmake_build sql diff --git a/x11/kf5-kactivities/Makefile b/x11/kf5-kactivities/Makefile index 646a6cce19e1..cf8d7f6e3db3 100644 --- a/x11/kf5-kactivities/Makefile +++ b/x11/kf5-kactivities/Makefile @@ -9,7 +9,7 @@ COMMENT= KF5 runtime and library to organize work in separate activities LIB_DEPENDS= libboost_system.so:devel/boost-libs -USES= cmake:outsource compiler:c++11-lib gettext kde:5 pathfix qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 pathfix qt:5 tar:xz USE_KDE= bookmarks config configwidgets coreaddons dbusaddons ecm \ globalaccel i18n kcmutils kdeclarative kio package \ service widgetsaddons windowsystem xmlgui diff --git a/x11/kf5-kded/Makefile b/x11/kf5-kded/Makefile index f94f6d820018..73cf877c59f1 100644 --- a/x11/kf5-kded/Makefile +++ b/x11/kf5-kded/Makefile @@ -7,7 +7,7 @@ CATEGORIES= x11 kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 extensible deamon for providing system level services -USES= cmake:outsource compiler:c++11-lib kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib kde:5 qt:5 tar:xz USE_KDE= config coreaddons crash dbusaddons doctools ecm \ init service USE_QT= buildtools_build core dbus gui qmake_build widgets diff --git a/x11/kf5-kdelibs4support/Makefile b/x11/kf5-kdelibs4support/Makefile index ef265da64148..b4cb59d327e4 100644 --- a/x11/kf5-kdelibs4support/Makefile +++ b/x11/kf5-kdelibs4support/Makefile @@ -9,7 +9,7 @@ COMMENT= KF5 porting aid from KDELibs4 BUILD_DEPENDS= p5-URI>=0:net/p5-URI -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 shebangfix \ +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 shebangfix \ tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons doctools emoticons globalaccel guiaddons \ diff --git a/x11/kf5-kglobalaccel/Makefile b/x11/kf5-kglobalaccel/Makefile index eb1fe18f2409..bf6948d5e9ae 100644 --- a/x11/kf5-kglobalaccel/Makefile +++ b/x11/kf5-kglobalaccel/Makefile @@ -9,7 +9,7 @@ COMMENT= KF5 library to add support for global workspace shortcuts LIB_DEPENDS= libxcb-keysyms.so:x11/xcb-util-keysyms -USES= cmake:outsource compiler:c++11-lib kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib kde:5 qt:5 tar:xz USE_KDE= ecm config coreaddons crash dbusaddons i18n service \ windowsystem USE_QT= buildtools_build core dbus gui linguisttools qmake_build \ diff --git a/x11/kf5-kinit/Makefile b/x11/kf5-kinit/Makefile index 0cd9b32ec94e..521052fba059 100644 --- a/x11/kf5-kinit/Makefile +++ b/x11/kf5-kinit/Makefile @@ -7,7 +7,7 @@ CATEGORIES= x11 kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 process launcher to speed up launching KDE applications -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= completion config coreaddons crash doctools ecm i18n \ jobwidgets kio service widgetsaddons windowsystem USE_QT= buildtools_build core dbus gui network qmake_build widgets diff --git a/x11/kf5-krunner/Makefile b/x11/kf5-krunner/Makefile index 78797f8caca5..e590db539094 100644 --- a/x11/kf5-krunner/Makefile +++ b/x11/kf5-krunner/Makefile @@ -7,7 +7,7 @@ CATEGORIES= x11 kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 parallelized query system -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= config coreaddons ecm i18n kio package plasma-framework \ service solid threadweaver USE_QT= buildtools_build core declarative gui network qmake_build \ diff --git a/x11/kf5-kwayland/Makefile b/x11/kf5-kwayland/Makefile index 986c353af48c..8a56a69ee272 100644 --- a/x11/kf5-kwayland/Makefile +++ b/x11/kf5-kwayland/Makefile @@ -15,7 +15,7 @@ LICENSE= LGPL21 LGPL3 LICENSE_COMB= dual LICENSE_FILE_LGPL21= ${WRKSRC}/COPYING.LIB -USES= cmake:outsource compiler:c++11-lib gettext kde:5 pkgconfig \ +USES= cmake compiler:c++11-lib gettext kde:5 pkgconfig \ qt:5 tar:xz USE_GL= egl USE_KDE= ecm diff --git a/x11/kf5-kwindowsystem/Makefile b/x11/kf5-kwindowsystem/Makefile index 903d5596bd2f..25d8d15302a8 100644 --- a/x11/kf5-kwindowsystem/Makefile +++ b/x11/kf5-kwindowsystem/Makefile @@ -9,7 +9,7 @@ COMMENT= KF5 library for access to the windowing system LIB_DEPENDS= libxcb-keysyms.so:x11/xcb-util-keysyms -USES= cmake:outsource compiler:c++11-lib kde:5 pkgconfig qt:5 tar:xz +USES= cmake compiler:c++11-lib kde:5 pkgconfig qt:5 tar:xz USE_KDE= ecm USE_QT= buildtools_build core gui linguisttools qmake_build \ testlib widgets x11extras diff --git a/x11/kf5-plasma-framework/Makefile b/x11/kf5-plasma-framework/Makefile index 033a14212707..c1227fb255e8 100644 --- a/x11/kf5-plasma-framework/Makefile +++ b/x11/kf5-plasma-framework/Makefile @@ -7,7 +7,7 @@ CATEGORIES= x11 kde kde-frameworks MAINTAINER= kde@FreeBSD.org COMMENT= KF5 plugin based UI runtime used to write user interfaces -USES= cmake:outsource compiler:c++11-lib gettext kde:5 pkgconfig qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 pkgconfig qt:5 tar:xz USE_GL= egl gl USE_KDE= activities archive auth codecs completion config \ configwidgets coreaddons dbusaddons doctools globalaccel \ diff --git a/x11/kgamma-kde4/Makefile b/x11/kgamma-kde4/Makefile index f2a9010b0d2c..534eed18d987 100644 --- a/x11/kgamma-kde4/Makefile +++ b/x11/kgamma-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= KDE 4 monitor calibration tool DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs automoc4 USE_QT= moc_build qmake_build rcc_build uic_build USE_XORG= x11 xxf86vm diff --git a/x11/konsole-kde4/Makefile b/x11/konsole-kde4/Makefile index 9da06b7d0d40..fe85dc9e3352 100644 --- a/x11/konsole-kde4/Makefile +++ b/x11/konsole-kde4/Makefile @@ -11,7 +11,7 @@ COMMENT= KDE terminal emulator DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= automoc4 libkonq USE_QT= xml moc_build qmake_build rcc_build uic_build USE_XORG= x11 xrender diff --git a/x11/konsole/Makefile b/x11/konsole/Makefile index c7445d0d10eb..6a1d151146b9 100644 --- a/x11/konsole/Makefile +++ b/x11/konsole/Makefile @@ -11,7 +11,7 @@ BUILD_DEPENDS= ${LOCALBASE}/share/xsl/docbook/html/docbook.xsl:textproc/docbook- docbook-xml>0:textproc/docbook-xml RUN_DEPENDS= keditbookmarks:deskutils/keditbookmarks -USES= cmake:outsource compiler:c++11-lang gettext pkgconfig kde:5 \ +USES= cmake compiler:c++11-lang gettext pkgconfig kde:5 \ qt:5 tar:xz USE_KDE= auth attica bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons ecm emoticons globalaccel guiaddons i18n \ diff --git a/x11/leechcraft/Makefile b/x11/leechcraft/Makefile index f99cc3d8fc2f..04fff73f71b4 100644 --- a/x11/leechcraft/Makefile +++ b/x11/leechcraft/Makefile @@ -23,7 +23,7 @@ LIB_DEPENDS= libqwt6.so:x11-toolkits/qwt6@qt4 \ #LC_REV= 1526-g7fdb92a INSTALLS_ICONS= yes USE_LDCONFIG= yes -USES= cmake pkgconfig qt:4 tar:xz +USES= cmake:insource pkgconfig qt:4 tar:xz USE_QT= corelib declarative gui network script sql sql-sqlite3_run \ webkit xml qmake_build moc_build rcc_build uic_build \ linguisttools_build diff --git a/x11/libfm-qt/Makefile b/x11/libfm-qt/Makefile index fa84ac02432b..1d4b726c1462 100644 --- a/x11/libfm-qt/Makefile +++ b/x11/libfm-qt/Makefile @@ -16,7 +16,7 @@ LIB_DEPENDS= libfm.so:x11/libfm \ libmenu-cache.so:x11/menu-cache \ libexif.so:graphics/libexif -USES= cmake:outsource compiler:c++11-lib gettext-runtime lxqt pkgconfig \ +USES= cmake compiler:c++11-lib gettext-runtime lxqt pkgconfig \ qt:5 shared-mime-info tar:xz USE_QT= buildtools_build qmake_build core gui linguisttools widgets \ x11extras diff --git a/x11/libfmqt-l10n/Makefile b/x11/libfmqt-l10n/Makefile index 20dc7226a01e..3b7b38c27889 100644 --- a/x11/libfmqt-l10n/Makefile +++ b/x11/libfmqt-l10n/Makefile @@ -13,7 +13,7 @@ COMMENT= Translations of libfm-qt LICENSE= LGPL21+ -USES= cmake:outsource lxqt pkgconfig qt:5 tar:xz +USES= cmake lxqt pkgconfig qt:5 tar:xz USE_QT= buildtools_build qmake_build linguisttools USE_LXQT= buildtools diff --git a/x11/libkonq-kde4/Makefile b/x11/libkonq-kde4/Makefile index 73c1841666e4..124c005bc3c0 100644 --- a/x11/libkonq-kde4/Makefile +++ b/x11/libkonq-kde4/Makefile @@ -14,7 +14,7 @@ EXPIRATION_DATE= 2018-12-31 LIB_DEPENDS= libphonon.so:multimedia/phonon@qt4 -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs automoc4 soprano USE_QT= corelib dbus gui network svg xml \ moc_build qmake_build rcc_build uic_build diff --git a/x11/lxqt-about/Makefile b/x11/lxqt-about/Makefile index 07b74556b81e..2ee2811279ca 100644 --- a/x11/lxqt-about/Makefile +++ b/x11/lxqt-about/Makefile @@ -12,7 +12,7 @@ COMMENT= About dialog of LXQt LICENSE= LGPL21+ -USES= cmake:outsource kde:5 lxqt pkgconfig tar:xz qt:5 +USES= cmake kde:5 lxqt pkgconfig tar:xz qt:5 USE_QT= buildtools_build qmake_build core dbus gui svg widgets \ x11extras xml USE_KDE= windowsystem diff --git a/x11/lxqt-globalkeys-l10n/Makefile b/x11/lxqt-globalkeys-l10n/Makefile index 4af6700f5770..ce48ad389933 100644 --- a/x11/lxqt-globalkeys-l10n/Makefile +++ b/x11/lxqt-globalkeys-l10n/Makefile @@ -14,7 +14,7 @@ COMMENT= Translations of lxqt-globalkeys LICENSE= LGPL21+ -USES= cmake:outsource lxqt pkgconfig tar:xz qt:5 +USES= cmake lxqt pkgconfig tar:xz qt:5 USE_QT= buildtools_build qmake_build linguisttools USE_LXQT= buildtools diff --git a/x11/lxqt-globalkeys/Makefile b/x11/lxqt-globalkeys/Makefile index 701859a755b3..b64d658f8cb6 100644 --- a/x11/lxqt-globalkeys/Makefile +++ b/x11/lxqt-globalkeys/Makefile @@ -11,7 +11,7 @@ COMMENT= Global keyboard shortcuts registration LICENSE= LGPL21+ -USES= cmake:outsource compiler:c++11-lib kde:5 lxqt pkgconfig qt:5 tar:xz +USES= cmake compiler:c++11-lib kde:5 lxqt pkgconfig qt:5 tar:xz USE_QT= buildtools_build qmake_build core dbus gui linguisttools \ svg widgets x11extras xml USE_KDE= windowsystem diff --git a/x11/lxqt-runner/Makefile b/x11/lxqt-runner/Makefile index e2742360f664..e4a232253843 100644 --- a/x11/lxqt-runner/Makefile +++ b/x11/lxqt-runner/Makefile @@ -14,7 +14,7 @@ LICENSE= LGPL21+ LIB_DEPENDS= libmuparser.so:math/muparser -USES= cmake:outsource compiler:c++11-lib gettext-runtime kde:5 qt:5 \ +USES= cmake compiler:c++11-lib gettext-runtime kde:5 qt:5 \ localbase lxqt pkgconfig tar:xz USE_QT= buildtools_build qmake_build core dbus gui linguisttools \ script svg widgets x11extras xml diff --git a/x11/pantheon-terminal/Makefile b/x11/pantheon-terminal/Makefile index fb6fc94bcb54..7578ea52193c 100644 --- a/x11/pantheon-terminal/Makefile +++ b/x11/pantheon-terminal/Makefile @@ -21,7 +21,7 @@ LIB_DEPENDS= libgee-0.8.so:devel/libgee \ BUILD_DEPENDS= valac:lang/vala RUN_DEPENDS= dbus-send:devel/dbus -USES= cmake:outsource desktop-file-utils gettext pkgconfig +USES= cmake desktop-file-utils gettext pkgconfig USE_GITHUB= yes GH_ACCOUNT= elementary GH_PROJECT= terminal diff --git a/x11/plasma-scriptengine-python-kde4/Makefile b/x11/plasma-scriptengine-python-kde4/Makefile index 472b32673a0d..f6c87aa73db0 100644 --- a/x11/plasma-scriptengine-python-kde4/Makefile +++ b/x11/plasma-scriptengine-python-kde4/Makefile @@ -14,7 +14,7 @@ DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 NO_ARCH= yes -USES= cmake:outsource kde:4 python:2.7 qt:4 tar:xz +USES= cmake kde:4 python:2.7 qt:4 tar:xz USE_KDE= kdelibs pykde4 automoc4 USE_QT= qmake_build moc_build uic_build rcc_build DISTINFO_FILE= ${.CURDIR:H:H}/x11/kde-workspace-kde4/distinfo diff --git a/x11/plasma-scriptengine-ruby-kde4/Makefile b/x11/plasma-scriptengine-ruby-kde4/Makefile index 58391c2f7530..5f789c9b6958 100644 --- a/x11/plasma-scriptengine-ruby-kde4/Makefile +++ b/x11/plasma-scriptengine-ruby-kde4/Makefile @@ -14,7 +14,7 @@ DEPRECATED= KDE4 is EOL upstream EXPIRATION_DATE= 2018-12-31 NO_ARCH= yes -USES= cmake:outsource kde:4 qt:4 tar:xz +USES= cmake kde:4 qt:4 tar:xz USE_KDE= kdelibs korundum automoc4 USE_QT= qmake_build moc_build uic_build rcc_build USE_RUBY= yes diff --git a/x11/plasma5-kactivitymanagerd/Makefile b/x11/plasma5-kactivitymanagerd/Makefile index b837042f9649..4d334420a037 100644 --- a/x11/plasma5-kactivitymanagerd/Makefile +++ b/x11/plasma5-kactivitymanagerd/Makefile @@ -8,7 +8,7 @@ CATEGORIES= x11 kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= System service to manage user's activities, track the usage patterns -USES= cmake:outsource compiler:c++11-lib gettext kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons dbusaddons ecm \ globalaccel i18n kio service widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus gui network sql widgets xml \ diff --git a/x11/plasma5-kgamma5/Makefile b/x11/plasma5-kgamma5/Makefile index eb9cffe3c741..e81c678bac11 100644 --- a/x11/plasma5-kgamma5/Makefile +++ b/x11/plasma5-kgamma5/Makefile @@ -8,7 +8,7 @@ CATEGORIES= x11 kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 monitor's gamma settings -USES= cmake:outsource compiler:c++11-lang cpe gettext kde:5 qt:5 \ +USES= cmake compiler:c++11-lang cpe gettext kde:5 qt:5 \ tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash doctools ecm emoticons guiaddons i18n \ diff --git a/x11/plasma5-kscreen/Makefile b/x11/plasma5-kscreen/Makefile index ce8773c96126..5849c46e241b 100644 --- a/x11/plasma5-kscreen/Makefile +++ b/x11/plasma5-kscreen/Makefile @@ -8,7 +8,7 @@ CATEGORIES= x11 kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 screen management library -USES= cmake:outsource compiler:c++11-lang cpe gettext kde:5 qt:5 \ +USES= cmake compiler:c++11-lang cpe gettext kde:5 qt:5 \ tar:xz USE_KDE= auth codecs config configwidgets coreaddons dbusaddons ecm \ globalaccel i18n kdeclarative libkscreen plasma-framework \ diff --git a/x11/plasma5-kwayland-integration/Makefile b/x11/plasma5-kwayland-integration/Makefile index 82debf0b3fa7..32d57d82f9e9 100644 --- a/x11/plasma5-kwayland-integration/Makefile +++ b/x11/plasma5-kwayland-integration/Makefile @@ -12,7 +12,7 @@ LIB_DEPENDS= libepoxy.so:graphics/libepoxy \ libwayland-client.so:graphics/wayland BUILD_DEPENDS= ${LOCALBASE}/include/linux/input.h:devel/evdev-proto -USES= cmake:outsource compiler:c++11-lib cpe kde:5 qt:5 tar:xz +USES= cmake compiler:c++11-lib cpe kde:5 qt:5 tar:xz USE_KDE= ecm idletime wayland windowsystem USE_QT= core gui widgets \ buildtools_build qmake_build diff --git a/x11/plasma5-libkscreen/Makefile b/x11/plasma5-libkscreen/Makefile index 975a1007a52b..c48e74859e88 100644 --- a/x11/plasma5-libkscreen/Makefile +++ b/x11/plasma5-libkscreen/Makefile @@ -8,7 +8,7 @@ CATEGORIES= x11 kde kde-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 screen management library -USES= cmake:outsource compiler:c++11-lib cpe kde:5 pathfix \ +USES= cmake compiler:c++11-lib cpe kde:5 pathfix \ pkgconfig qt:5 tar:xz USE_KDE= ecm wayland USE_QT= core dbus gui testlib x11extras \ diff --git a/x11/plasma5-plasma-desktop/Makefile b/x11/plasma5-plasma-desktop/Makefile index ce9ab9456878..5600d773b400 100644 --- a/x11/plasma5-plasma-desktop/Makefile +++ b/x11/plasma5-plasma-desktop/Makefile @@ -22,7 +22,7 @@ RUN_DEPENDS= iso-codes>=0:misc/iso-codes \ BUILD_DEPENDS= xf86-input-evdev>0:x11-drivers/xf86-input-evdev \ xf86-input-libinput>0:x11-drivers/xf86-input-libinput -USES= cmake:outsource compiler:c++11-lib cpe desktop-file-utils \ +USES= cmake compiler:c++11-lib cpe desktop-file-utils \ gettext kde:5 pkgconfig qt:5 tar:xz USE_GNOME= glib20 USE_KDE= activities activities-stats archive attica auth baloo \ diff --git a/x11/plasma5-plasma-integration/Makefile b/x11/plasma5-plasma-integration/Makefile index 810130ac4c03..7c45e484157f 100644 --- a/x11/plasma5-plasma-integration/Makefile +++ b/x11/plasma5-plasma-integration/Makefile @@ -10,7 +10,7 @@ COMMENT= Qt Platform Theme integration plugins for the Plasma workspaces RUN_DEPENDS= hack-font>=0:x11-fonts/hack-font -USES= cmake:outsource compiler:c++11-lib cpe gettext kde:5 pkgconfig \ +USES= cmake compiler:c++11-lib cpe gettext kde:5 pkgconfig \ qt:5 shebangfix tar:xz USE_KDE= auth bookmarks breeze codecs completion config configwidgets \ coreaddons ecm i18n iconthemes itemviews jobwidgets kio \ diff --git a/x11/plasma5-plasma-workspace/Makefile b/x11/plasma5-plasma-workspace/Makefile index 0571a5f91060..819300a5bf61 100644 --- a/x11/plasma5-plasma-workspace/Makefile +++ b/x11/plasma5-plasma-workspace/Makefile @@ -21,7 +21,7 @@ RUN_DEPENDS= ck-launch-session:sysutils/consolekit2\ ${LOCALBASE}/libdata/pkgconfig/xkeyboard-config.pc:x11/xkeyboard-config \ iso-codes>=0:misc/iso-codes -USES= cmake:outsource compiler:c++11-lib cpe gettext kde:5 pkgconfig \ +USES= cmake compiler:c++11-lib cpe gettext kde:5 pkgconfig \ qt:5 tar:xz USE_KDE= activities activitymanagerd attica auth baloo bookmarks \ codecs completion config configwidgets coreaddons crash \ diff --git a/x11/polybar/Makefile b/x11/polybar/Makefile index 068b25d9a5c0..1ba9e412ee5b 100644 --- a/x11/polybar/Makefile +++ b/x11/polybar/Makefile @@ -20,7 +20,7 @@ LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \ libxcb-util.so:x11/xcb-util \ libxcb-xrm.so:x11/xcb-util-xrm -USES= cmake:outsource compiler:c++11-lang localbase:ldflags \ +USES= cmake compiler:c++11-lang localbase:ldflags \ pkgconfig python:2.7,build USE_GITHUB= yes GH_ACCOUNT= jaagr diff --git a/x11/qterminal-l10n/Makefile b/x11/qterminal-l10n/Makefile index 216e7bcdeef0..34bf1095a910 100644 --- a/x11/qterminal-l10n/Makefile +++ b/x11/qterminal-l10n/Makefile @@ -13,7 +13,7 @@ COMMENT= Translations of Qterminal LICENSE= LGPL21+ -USES= cmake:outsource lxqt pkgconfig qt:5 tar:xz +USES= cmake lxqt pkgconfig qt:5 tar:xz USE_QT= buildtools_build qmake_build linguisttools USE_LXQT= buildtools diff --git a/x11/qterminal/Makefile b/x11/qterminal/Makefile index 1adf6c6914b5..ffe91c831b15 100644 --- a/x11/qterminal/Makefile +++ b/x11/qterminal/Makefile @@ -15,7 +15,7 @@ LIB_DEPENDS= libqtermwidget5.so:x11-toolkits/qtermwidget RUN_DEPENDS= liberation-fonts-ttf>=2.00:x11-fonts/liberation-fonts-ttf \ qterminal-l10n>0:x11/qterminal-l10n -USES= cmake:outsource compiler:c++11-lang gettext-runtime \ +USES= cmake compiler:c++11-lang gettext-runtime \ localbase:ldflags lxqt pkgconfig qt:5 tar:xz USE_QT= buildtools_build core gui qmake_build dbus linguisttools \ widgets x11extras diff --git a/x11/qxkb/Makefile b/x11/qxkb/Makefile index 89f490f04f0e..4f4bcbe577b6 100644 --- a/x11/qxkb/Makefile +++ b/x11/qxkb/Makefile @@ -16,7 +16,7 @@ EXPIRATION_DATE= 2019-03-15 LIB_DEPENDS= libxkbfile.so:x11/libxkbfile -USES= cmake qt:4 +USES= cmake:insource qt:4 USE_QT= linguisttools_build moc_build qmake_build rcc_build uic_build \ corelib gui svg diff --git a/x11/rsibreak/Makefile b/x11/rsibreak/Makefile index 9d314bb51165..5e3f1ccc216a 100644 --- a/x11/rsibreak/Makefile +++ b/x11/rsibreak/Makefile @@ -12,7 +12,7 @@ COMMENT= KDE RSI prevention tool LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING -USES= cmake:outsource gettext kde:5 qt:5 tar:xz +USES= cmake gettext kde:5 qt:5 tar:xz USE_KDE= auth codecs config configwidgets coreaddons crash dbusaddons doctools ecm \ iconthemes i18n idletime notifications notifyconfig \ sonnet textwidgets xmlgui widgetsaddons windowsystem diff --git a/x11/sddm/Makefile b/x11/sddm/Makefile index fb0a715a59ae..c0a3cbda0eee 100644 --- a/x11/sddm/Makefile +++ b/x11/sddm/Makefile @@ -20,7 +20,7 @@ LICENSE_FILE_CC-BY-3.0= ${WRKSRC}/LICENSE.CC-BY-3.0 RUN_DEPENDS= dbus-run-session:devel/dbus -USES= cmake:outsource compiler:c++11-lang kde:5 qt:5 +USES= cmake compiler:c++11-lang kde:5 qt:5 USE_GITHUB= yes USE_KDE= ecm USE_QT= core declarative dbus gui network \ diff --git a/x11/thingylaunch/Makefile b/x11/thingylaunch/Makefile index c31d46c87826..7f22d79cfb56 100644 --- a/x11/thingylaunch/Makefile +++ b/x11/thingylaunch/Makefile @@ -21,7 +21,7 @@ OPTIONS_DEFAULT= LIBX11 USE_XORG= xorgproto USE_CXXSTD= c++11 -USES= cmake:outsource compiler:c++11-lib +USES= cmake compiler:c++11-lib .include <bsd.port.options.mk> diff --git a/x11/tint/Makefile b/x11/tint/Makefile index 3d07ebbf798e..1121c266824f 100644 --- a/x11/tint/Makefile +++ b/x11/tint/Makefile @@ -15,7 +15,7 @@ LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \ libImlib2.so:graphics/imlib2 \ libstartup-notification-1.so:x11/startup-notification -USES= alias cmake:outsource desktop-file-utils gettext-runtime \ +USES= alias cmake desktop-file-utils gettext-runtime \ pkgconfig shared-mime-info USE_GNOME= cairo glib20 gtk20 librsvg2 pango USE_XORG= x11 xcomposite xdamage xext xfixes xinerama xrandr xrender diff --git a/x11/xfce4-whiskermenu-plugin/Makefile b/x11/xfce4-whiskermenu-plugin/Makefile index eaf3019e814b..230dadcc29f9 100644 --- a/x11/xfce4-whiskermenu-plugin/Makefile +++ b/x11/xfce4-whiskermenu-plugin/Makefile @@ -14,7 +14,7 @@ COMMENT= Alternate menu for the Xfce Desktop LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING -USES= cmake:outsource compiler:c++14-lang gettext-tools localbase pkgconfig \ +USES= cmake compiler:c++14-lang gettext-tools localbase pkgconfig \ tar:bzip2 xfce:gtk3 USE_GNOME= gtk30 cairo USE_XFCE= panel diff --git a/x11/yakuake/Makefile b/x11/yakuake/Makefile index 979dd69557d5..b51e4b19b385 100644 --- a/x11/yakuake/Makefile +++ b/x11/yakuake/Makefile @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING RUN_DEPENDS= konsole:x11/konsole -USES= cmake:outsource gettext kde:5 qt:5 tar:xz +USES= cmake gettext kde:5 qt:5 tar:xz USE_KDE= attica auth archive codecs completion config configwidgets \ coreaddons crash dbusaddons ecm globalaccel i18n iconthemes \ jobwidgets kio newstuff notifications notifyconfig parts \ |