Index: head/finance/alkimia/Makefile =================================================================== --- head/finance/alkimia/Makefile (revision 568210) +++ head/finance/alkimia/Makefile (revision 568211) @@ -1,44 +1,73 @@ # $FreeBSD$ PORTNAME= alkimia -PORTVERSION= 7.0.2 -PORTREVISION= 4 +PORTVERSION= 8.1.0 CATEGORIES= finance kde MASTER_SITES= KDE/stable/${PORTNAME}/${PORTVERSION} MAINTAINER= jhale@FreeBSD.org COMMENT= KDE financial data handling library LICENSE= LGPL21+ 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 +RUN_DEPENDS= p5-Date-Manip>=0:devel/p5-Date-Manip \ + p5-Finance-Quote>=0:finance/p5-Finance-Quote \ + p5-XML-Parser>=0:textproc/p5-XML-Parser \ + p5-XML-Writer>=0:textproc/p5-XML-Writer \ + p5-libwww>=0:www/p5-libwww -USES= cmake compiler:c++11-lang pathfix qt:5 tar:xz +USES= cmake compiler:c++11-lang kde:5 pathfix perl5 qt:5 \ + shebangfix tar:xz USE_LDCONFIG= yes -USE_QT= core dbus \ +USE_KDE= attica auth codecs completion config configwidgets coreaddons \ + i18n iconthemes jobwidgets kio newstuff service sonnet \ + textwidgets widgetsaddons windowsystem xmlgui ecm_build +USE_PERL5= run +USE_QT= concurrent core dbus declarative gui network widgets xml \ buildtools_build qmake_build -CMAKE_ON= KDE_INSTALL_USE_QT_SYS_PATHS +CMAKE_OFF= BUILD_DOXYGEN_DOCS PLIST_SUB= VER=${PORTVERSION:R} +SHEBANG_FILES= src/financequote.pl +OPTIONS_RADIO= BROWSER +OPTIONS_RADIO_BROWSER= WEBKIT WEBENGINE OPTIONS_SINGLE= MPLIB OPTIONS_SINGLE_MPLIB= GMP MPIR -OPTIONS_DEFINE= TEST -OPTIONS_DEFAULT= MPIR +OPTIONS_DEFINE= PLASMA TEST TOOLS +OPTIONS_DEFAULT= MPIR TOOLS WEBKIT OPTIONS_SUB= yes +BROWSER_DESC= Web browser support MPLIB_DESC= Multi-precision library (MPIR preferred) GMP_LIB_DEPENDS= libgmp.so:math/gmp GMP_CMAKE_BOOL= CMAKE_DISABLE_FIND_PACKAGE_MPIR MPIR_DESC= MPIR (multiple precision arithmetic) support MPIR_LIB_DEPENDS= libmpir.so:math/mpir +PLASMA_DESC= Build Plasma applets +PLASMA_USE= KDE=package,plasma-framework +PLASMA_CMAKE_BOOL= BUILD_APPLETS + TEST_USE= QT=testlib TEST_CMAKE_BOOL= BUILD_TESTING TEST_TEST_TARGET= test + +TOOLS_DESC= Build tools +TOOLS_CMAKE_BOOL= BUILD_TOOLS + +WEBENGINE_DESC= Qt Web Engine support +WEBENGINE_USE= QT=webengine +WEBENGINE_CMAKE_BOOL= BUILD_WITH_WEBENGINE + +WEBKIT_DESC= Qt WebKit support +WEBKIT_USE= QT=webkit +WEBKIT_CMAKE_BOOL= BUILD_WITH_WEBKIT + +pre-configure: + ${FIND} ${WRKSRC} -type f \( -name '*.bak' -o -name '*.orig' \) -exec ${RM} {} \; .include Index: head/finance/alkimia/distinfo =================================================================== --- head/finance/alkimia/distinfo (revision 568210) +++ head/finance/alkimia/distinfo (revision 568211) @@ -1,3 +1,3 @@ -TIMESTAMP = 1524008329 -SHA256 (alkimia-7.0.2.tar.xz) = 59e6b10d819479bc8dde53a8b10e6ec05e9d465c5e035528a5c0b036456a2454 -SIZE (alkimia-7.0.2.tar.xz) = 38420 +TIMESTAMP = 1615051962 +SHA256 (alkimia-8.1.0.tar.xz) = 916807352707b0490cdd9ca65682eff73b00ca523029bda6fe7a2749a1bc927c +SIZE (alkimia-8.1.0.tar.xz) = 230804 Index: head/finance/alkimia/files/patch-CMakeLists.txt =================================================================== --- head/finance/alkimia/files/patch-CMakeLists.txt (revision 568210) +++ head/finance/alkimia/files/patch-CMakeLists.txt (revision 568211) @@ -1,31 +1,21 @@ Make tests conditional ---- CMakeLists.txt.orig 2018-04-11 16:05:28 UTC +--- CMakeLists.txt.orig 2021-01-21 22:50:19 UTC +++ CMakeLists.txt -@@ -15,7 +15,7 @@ include(FeatureSummary) +@@ -37,7 +37,7 @@ include(FeatureSummary) # check for PkgConfig, Qt and MPIR/GMP find_package(PkgConfig) if(BUILD_QT4) -- find_package(Qt4 REQUIRED COMPONENTS QtCore QtDBus QtTest) -+ find_package(Qt4 REQUIRED COMPONENTS QtCore QtDBus) +- find_package(Qt4 REQUIRED COMPONENTS QtCore QtGui QtDBus QtTest QtWebKit QtDeclarative) ++ find_package(Qt4 REQUIRED COMPONENTS QtCore QtGui QtDBus QtWebKit QtDeclarative) set(QT_USE_LIBSPREFIX Qt4::Qt) set(ALKIMIA_LIB_SUFFIX "") set(ALKIMIA_INCLUDE_SUFFIX "Qt4") -@@ -23,7 +23,7 @@ if(BUILD_QT4) - set(PC_TARGET_QTPREFIX Qt) - set(PC_TARGET_SUFFIX) - else() -- find_package(Qt5 REQUIRED COMPONENTS Core DBus Test) -+ find_package(Qt5 REQUIRED COMPONENTS Core DBus) - set(QT_USE_LIBSPREFIX Qt5::) - set(ALKIMIA_LIB_SUFFIX "5") - set(ALKIMIA_INCLUDE_SUFFIX "Qt5") -@@ -59,4 +59,7 @@ add_definitions(-DQT_USE_FAST_CONCATENATION -DQT_USE_F - include_directories(${MP_INCLUDE_DIR}) +@@ -107,7 +107,6 @@ else() - add_subdirectory(src) --add_subdirectory(autotests) -+ -+if(BUILD_TESTING) -+ add_subdirectory(autotests) -+endif() + find_package(Qt5 REQUIRED COMPONENTS + Core +- Test + ${QT_BROWSER_COMPONENT} + Qml + ) Index: head/finance/alkimia/files/patch-autotests_CMakeLists.txt =================================================================== --- head/finance/alkimia/files/patch-autotests_CMakeLists.txt (revision 568210) +++ head/finance/alkimia/files/patch-autotests_CMakeLists.txt (revision 568211) @@ -1,15 +1,15 @@ Find testlib (moved from ../CMakeLists.txt) ---- autotests/CMakeLists.txt.orig 2018-03-15 19:28:26 UTC +--- autotests/CMakeLists.txt.orig 2020-10-23 16:11:34 UTC +++ autotests/CMakeLists.txt -@@ -1,8 +1,10 @@ +@@ -1,4 +1,10 @@ include(ECMAddTests) - - if(BUILD_QT4) ++if(BUILD_QT4) + find_package(Qt4 REQUIRED COMPONENTS QtTest) - set(TEST_LIB ${QT_QTTEST_LIBRARY}) - else() ++else() + find_package(Qt5 REQUIRED COMPONENTS Test) - set(TEST_LIB Qt5::Test) - endif() - ++endif() ++ + set(TEST_LIB + alkimia + alkimia-internal Index: head/finance/alkimia/files/patch-src_alkwebpage.h =================================================================== --- head/finance/alkimia/files/patch-src_alkwebpage.h (nonexistent) +++ head/finance/alkimia/files/patch-src_alkwebpage.h (revision 568211) @@ -0,0 +1,32 @@ +Fix build when both the WEBKIT and WEBENGINE options are set to OFF. + +/wrkdirs/usr/ports/finance/alkimia/work/alkimia-8.1.0/tools/onlinequoteseditor/mainwindow.cpp:52:28: error: member access into incomplete type 'const QUrl' + d->urlLine->setText(url.toString()); + ^ +/usr/local/include/qt5/QtCore/qmetatype.h:2089:1: note: forward declaration of 'QUrl' +QT_FOR_EACH_STATIC_CORE_CLASS(QT_FORWARD_DECLARE_STATIC_TYPES_ITER) +^ +/usr/local/include/qt5/QtCore/qmetatype.h:121:17: note: expanded from macro 'QT_FOR_EACH_STATIC_CORE_CLASS' + F(QUrl, 17, QUrl) \ + ^ +/wrkdirs/usr/ports/finance/alkimia/work/alkimia-8.1.0/tools/onlinequoteseditor/mainwindow.cpp:57:63: error: 'QUrl' is an incomplete type + AlkOnlineQuotesProfileManager::instance().webPage()->load(QUrl(d->urlLine->text()), d->quotesWidget->acceptLanguage()); + ^ +/usr/local/include/qt5/QtCore/qmetatype.h:2089:1: note: forward declaration of 'QUrl' +QT_FOR_EACH_STATIC_CORE_CLASS(QT_FORWARD_DECLARE_STATIC_TYPES_ITER) +^ +/usr/local/include/qt5/QtCore/qmetatype.h:121:17: note: expanded from macro 'QT_FOR_EACH_STATIC_CORE_CLASS' + F(QUrl, 17, QUrl) \ + ^ +2 errors generated. + +--- src/alkwebpage.h.orig 2021-03-10 18:46:11 UTC ++++ src/alkwebpage.h +@@ -83,6 +83,7 @@ class ALK_EXPORT AlkWebPage : public QWebView (private + + #else + ++#include + #include + + /** Property changes on: head/finance/alkimia/files/patch-src_alkwebpage.h ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/finance/alkimia/pkg-plist =================================================================== --- head/finance/alkimia/pkg-plist (revision 568210) +++ head/finance/alkimia/pkg-plist (revision 568211) @@ -1,14 +1,145 @@ +%%TOOLS%%bin/onlinequoteseditor5 include/alkimia/Qt5/alkimia/alk_export.h include/alkimia/Qt5/alkimia/alkcompany.h -include/alkimia/Qt5/alkimia/alkquoteitem.h +include/alkimia/Qt5/alkimia/alkonlinequote.h +include/alkimia/Qt5/alkimia/alkonlinequotesource.h +include/alkimia/Qt5/alkimia/alkonlinequotesprofile.h +include/alkimia/Qt5/alkimia/alkonlinequotesprofilemanager.h +include/alkimia/Qt5/alkimia/alkonlinequoteswidget.h include/alkimia/Qt5/alkimia/alkvalue.h +include/alkimia/Qt5/alkimia/alkversion.h +include/alkimia/Qt5/alkimia/alkwebpage.h %%GMP%%lib/cmake/LibAlkimia5-%%VER%%/FindGMP.cmake %%MPIR%%lib/cmake/LibAlkimia5-%%VER%%/FindMPIR.cmake lib/cmake/LibAlkimia5-%%VER%%/LibAlkimia5Config.cmake lib/cmake/LibAlkimia5-%%VER%%/LibAlkimia5ConfigVersion.cmake lib/cmake/LibAlkimia5-%%VER%%/LibAlkimia5Targets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/LibAlkimia5-%%VER%%/LibAlkimia5Targets.cmake lib/libalkimia5.so -lib/libalkimia5.so.7 -lib/libalkimia5.so.7.0.2 +lib/libalkimia5.so.8 +lib/libalkimia5.so.8.1.0 +%%QT_QMLDIR%%/org/kde/alkimia/libqmlalkimia.so +%%QT_QMLDIR%%/org/kde/alkimia/qmldir libdata/pkgconfig/libalkimia5.pc +%%TOOLS%%share/applications/org.kde.onlinequoteseditor5.desktop +%%TOOLS%%share/icons/hicolor/128x128/apps/onlinequoteseditor5.png +%%TOOLS%%share/icons/hicolor/16x16/apps/onlinequoteseditor5.png +%%TOOLS%%share/icons/hicolor/22x22/apps/onlinequoteseditor5.png +%%TOOLS%%share/icons/hicolor/32x32/apps/onlinequoteseditor5.png +%%TOOLS%%share/icons/hicolor/48x48/apps/onlinequoteseditor5.png +%%TOOLS%%share/icons/hicolor/64x64/apps/onlinequoteseditor5.png +%%TOOLS%%share/icons/hicolor/scalable/apps/onlinequoteseditor5.svgz +share/knsrcfiles/alkimia-quotes.knsrc +share/knsrcfiles/kmymoney-quotes.knsrc +share/knsrcfiles/skrooge-quotes.knsrc +%%PLASMA%%share/kservices5/plasma-applet-org.wincak.foreigncurrencies2.desktop +share/locale/ca/LC_MESSAGES/alkimia.mo +share/locale/ca/LC_MESSAGES/onlinequoteseditor.mo +share/locale/ca/LC_MESSAGES/plasma_applet_onlinequote.mo +share/locale/ca/LC_MESSAGES/plasma_applet_org.wincak.foreigncurrencies2.mo +share/locale/ca@valencia/LC_MESSAGES/alkimia.mo +share/locale/ca@valencia/LC_MESSAGES/onlinequoteseditor.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_onlinequote.mo +share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.wincak.foreigncurrencies2.mo +share/locale/cs/LC_MESSAGES/alkimia.mo +share/locale/cs/LC_MESSAGES/onlinequoteseditor.mo +share/locale/cs/LC_MESSAGES/plasma_applet_onlinequote.mo +share/locale/cs/LC_MESSAGES/plasma_applet_org.wincak.foreigncurrencies2.mo +share/locale/de/LC_MESSAGES/alkimia.mo +share/locale/de/LC_MESSAGES/onlinequoteseditor.mo +share/locale/de/LC_MESSAGES/plasma_applet_onlinequote.mo +share/locale/de/LC_MESSAGES/plasma_applet_org.wincak.foreigncurrencies2.mo +share/locale/el/LC_MESSAGES/alkimia.mo +share/locale/el/LC_MESSAGES/onlinequoteseditor.mo +share/locale/el/LC_MESSAGES/plasma_applet_onlinequote.mo +share/locale/el/LC_MESSAGES/plasma_applet_org.wincak.foreigncurrencies2.mo +share/locale/en_GB/LC_MESSAGES/alkimia.mo +share/locale/en_GB/LC_MESSAGES/onlinequoteseditor.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_onlinequote.mo +share/locale/en_GB/LC_MESSAGES/plasma_applet_org.wincak.foreigncurrencies2.mo +share/locale/es/LC_MESSAGES/alkimia.mo +share/locale/es/LC_MESSAGES/onlinequoteseditor.mo +share/locale/es/LC_MESSAGES/plasma_applet_onlinequote.mo +share/locale/es/LC_MESSAGES/plasma_applet_org.wincak.foreigncurrencies2.mo +share/locale/et/LC_MESSAGES/alkimia.mo +share/locale/et/LC_MESSAGES/onlinequoteseditor.mo +share/locale/et/LC_MESSAGES/plasma_applet_onlinequote.mo +share/locale/et/LC_MESSAGES/plasma_applet_org.wincak.foreigncurrencies2.mo +share/locale/fi/LC_MESSAGES/alkimia.mo +share/locale/fi/LC_MESSAGES/plasma_applet_org.wincak.foreigncurrencies2.mo +share/locale/fr/LC_MESSAGES/alkimia.mo +share/locale/fr/LC_MESSAGES/onlinequoteseditor.mo +share/locale/fr/LC_MESSAGES/plasma_applet_onlinequote.mo +share/locale/fr/LC_MESSAGES/plasma_applet_org.wincak.foreigncurrencies2.mo +share/locale/gl/LC_MESSAGES/alkimia.mo +share/locale/gl/LC_MESSAGES/onlinequoteseditor.mo +share/locale/gl/LC_MESSAGES/plasma_applet_onlinequote.mo +share/locale/gl/LC_MESSAGES/plasma_applet_org.wincak.foreigncurrencies2.mo +share/locale/ia/LC_MESSAGES/alkimia.mo +share/locale/ia/LC_MESSAGES/onlinequoteseditor.mo +share/locale/ia/LC_MESSAGES/plasma_applet_onlinequote.mo +share/locale/ia/LC_MESSAGES/plasma_applet_org.wincak.foreigncurrencies2.mo +share/locale/it/LC_MESSAGES/alkimia.mo +share/locale/it/LC_MESSAGES/onlinequoteseditor.mo +share/locale/it/LC_MESSAGES/plasma_applet_onlinequote.mo +share/locale/it/LC_MESSAGES/plasma_applet_org.wincak.foreigncurrencies2.mo +share/locale/ko/LC_MESSAGES/alkimia.mo +share/locale/ko/LC_MESSAGES/onlinequoteseditor.mo +share/locale/ko/LC_MESSAGES/plasma_applet_onlinequote.mo +share/locale/ko/LC_MESSAGES/plasma_applet_org.wincak.foreigncurrencies2.mo +share/locale/nl/LC_MESSAGES/alkimia.mo +share/locale/nl/LC_MESSAGES/onlinequoteseditor.mo +share/locale/nl/LC_MESSAGES/plasma_applet_onlinequote.mo +share/locale/nl/LC_MESSAGES/plasma_applet_org.wincak.foreigncurrencies2.mo +share/locale/nn/LC_MESSAGES/alkimia.mo +share/locale/nn/LC_MESSAGES/onlinequoteseditor.mo +share/locale/nn/LC_MESSAGES/plasma_applet_onlinequote.mo +share/locale/nn/LC_MESSAGES/plasma_applet_org.wincak.foreigncurrencies2.mo +share/locale/pl/LC_MESSAGES/alkimia.mo +share/locale/pl/LC_MESSAGES/onlinequoteseditor.mo +share/locale/pl/LC_MESSAGES/plasma_applet_onlinequote.mo +share/locale/pl/LC_MESSAGES/plasma_applet_org.wincak.foreigncurrencies2.mo +share/locale/pt/LC_MESSAGES/alkimia.mo +share/locale/pt/LC_MESSAGES/onlinequoteseditor.mo +share/locale/pt/LC_MESSAGES/plasma_applet_onlinequote.mo +share/locale/pt/LC_MESSAGES/plasma_applet_org.wincak.foreigncurrencies2.mo +share/locale/pt_BR/LC_MESSAGES/alkimia.mo +share/locale/pt_BR/LC_MESSAGES/onlinequoteseditor.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_onlinequote.mo +share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.wincak.foreigncurrencies2.mo +share/locale/ru/LC_MESSAGES/alkimia.mo +share/locale/ru/LC_MESSAGES/onlinequoteseditor.mo +share/locale/ru/LC_MESSAGES/plasma_applet_onlinequote.mo +share/locale/ru/LC_MESSAGES/plasma_applet_org.wincak.foreigncurrencies2.mo +share/locale/sk/LC_MESSAGES/alkimia.mo +share/locale/sk/LC_MESSAGES/onlinequoteseditor.mo +share/locale/sk/LC_MESSAGES/plasma_applet_onlinequote.mo +share/locale/sk/LC_MESSAGES/plasma_applet_org.wincak.foreigncurrencies2.mo +share/locale/sv/LC_MESSAGES/alkimia.mo +share/locale/sv/LC_MESSAGES/onlinequoteseditor.mo +share/locale/sv/LC_MESSAGES/plasma_applet_onlinequote.mo +share/locale/sv/LC_MESSAGES/plasma_applet_org.wincak.foreigncurrencies2.mo +share/locale/uk/LC_MESSAGES/alkimia.mo +share/locale/uk/LC_MESSAGES/onlinequoteseditor.mo +share/locale/uk/LC_MESSAGES/plasma_applet_onlinequote.mo +share/locale/uk/LC_MESSAGES/plasma_applet_org.wincak.foreigncurrencies2.mo +share/locale/zh_CN/LC_MESSAGES/alkimia.mo +share/locale/zh_CN/LC_MESSAGES/onlinequoteseditor.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_onlinequote.mo +share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.wincak.foreigncurrencies2.mo +share/locale/zh_TW/LC_MESSAGES/alkimia.mo +share/locale/zh_TW/LC_MESSAGES/onlinequoteseditor.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_onlinequote.mo +share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.wincak.foreigncurrencies2.mo +%%PLASMA%%share/metainfo/org.wincak.foreigncurrencies2.appdata.xml +%%PLASMA%%share/plasma/plasmoids/org.wincak.foreigncurrencies2/LICENSE +%%PLASMA%%share/plasma/plasmoids/org.wincak.foreigncurrencies2/README +%%PLASMA%%share/plasma/plasmoids/org.wincak.foreigncurrencies2/contents/config/config.qml +%%PLASMA%%share/plasma/plasmoids/org.wincak.foreigncurrencies2/contents/config/main.xml +%%PLASMA%%share/plasma/plasmoids/org.wincak.foreigncurrencies2/contents/icons/currency.svg +%%PLASMA%%share/plasma/plasmoids/org.wincak.foreigncurrencies2/contents/ui/Currency.qml +%%PLASMA%%share/plasma/plasmoids/org.wincak.foreigncurrencies2/contents/ui/Okno.qml +%%PLASMA%%share/plasma/plasmoids/org.wincak.foreigncurrencies2/contents/ui/config/ConfigGeneral.qml +%%PLASMA%%share/plasma/plasmoids/org.wincak.foreigncurrencies2/contents/ui/main.qml +%%PLASMA%%share/plasma/plasmoids/org.wincak.foreigncurrencies2/metadata.desktop +%%PLASMA%%share/plasma/plasmoids/org.wincak.foreigncurrencies2/metadata.json Index: head/finance/kmymoney/Makefile =================================================================== --- head/finance/kmymoney/Makefile (revision 568210) +++ head/finance/kmymoney/Makefile (revision 568211) @@ -1,113 +1,113 @@ # $FreeBSD$ PORTNAME= kmymoney PORTVERSION= 5.1.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= finance kde MASTER_SITES= KDE/stable/${PORTNAME}/${PORTVERSION}/src PATCH_SITES= https://invent.kde.org/office/kmymoney/-/commit/ PATCHFILES+= a9722f40ec94bd7fdda078e393807dc1e78bbec3.diff:-p1 # Python 3.8 compat MAINTAINER= jhale@FreeBSD.org COMMENT= KDE personal finance manager LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libalkimia5.so:finance/alkimia \ libKChart.so:graphics/kdiagram USES= cmake compiler:c++14-lang desktop-file-utils gettext kde:5 \ pkgconfig qt:5 shared-mime-info shebangfix tar:xz USE_QT= buildtools_build core dbus gui network printsupport qmake_build \ sql testlib_build xml webkit widgets USE_KDE= activities archive auth bookmarks codecs completion config \ configwidgets coreaddons doctools_build ecm_build i18n \ iconthemes itemmodels itemviews jobwidgets kcmutils \ kio notifications textwidgets service solid sonnet \ wallet widgetsaddons xmlgui USE_LDCONFIG= yes SHEBANG_FILES= kmymoney/misc/financequote.pl OPTIONS_GROUP= PLUGINS OPTIONS_GROUP_PLUGINS= CALENDAR KBANKING OFX SQLCIPHER WEBOOB WEB_DESC= Web content renderer OPTIONS_SINGLE= WEB OPTIONS_SINGLE_WEB= KDEWEBKIT QTWEBENGINE OPTIONS_DEFINE= ADDRESSBOOK GNUPG HOLIDAYS QUOTES OPTIONS_DEFAULT= CALENDAR GNUPG HOLIDAYS KBANKING KDEWEBKIT OFX QUOTES OPTIONS_SUB= yes ADDRESSBOOK_DESC= Address book support ADDRESSBOOK_USE= kde=akonadi,contacts,identitymanagement,pimtextedit ADDRESSBOOK_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_KF5Akonadi \ CMAKE_DISABLE_FIND_PACKAGE_KF5Contacts \ CMAKE_DISABLE_FIND_PACKAGE_KF5IdentityManagement CALENDAR_DESC= iCalendar exporter CALENDAR_LIB_DEPENDS= libical.so:devel/libical CALENDAR_CMAKE_BOOL= ENABLE_LIBICAL GNUPG_LIB_DEPENDS= libgpgme.so:security/gpgme \ libgpgmepp.so:security/gpgme-cpp \ libassuan.so:security/libassuan \ libgpg-error.so:security/libgpg-error GNUPG_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_Gpgmepp \ CMAKE_DISABLE_FIND_PACKAGE_KF5Gpgmepp HOLIDAYS_DESC= Holidays support HOLIDAYS_USE= kde=holidays HOLIDAYS_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_KF5Holidays KBANKING_DESC= Online banking via KBanking (AqBanking) KBANKING_LIB_DEPENDS= libgwenhywfar.so:devel/gwenhywfar \ libgwengui-qt5.so:devel/gwenhywfar-qt5 \ libaqbanking.so:finance/aqbanking KBANKING_USE= qt=declarative KBANKING_CMAKE_BOOL= ENABLE_KBANKING KDEWEBKIT_DESC= Web content rendering via KDEWebKit KDEWEBKIT_USE= kde=kdewebkit OFX_DESC= OFX (Open Financial Exchange) importer OFX_LIB_DEPENDS= libofx.so:finance/libofx OFX_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_LibOfx QTWEBENGINE_DESC= Web content rendering via QtWebEngine QTWEBENGINE_USE= qt=location,webchannel,webengine QTWEBENGINE_CMAKE_BOOL= ENABLE_WEBENGINE QUOTES_DESC= Online stock and currency price quotes QUOTES_USES= perl5 QUOTES_USE= PERL5=run QUOTES_RUN_DEPENDS= p5-Date-Manip>=0:devel/p5-Date-Manip \ p5-Finance-Quote>=0:finance/p5-Finance-Quote \ p5-XML-Parser>=0:textproc/p5-XML-Parser \ p5-XML-Writer>=0:textproc/p5-XML-Writer \ p5-libwww>=0:www/p5-libwww SQLCIPHER_DESC= KMyMoney database encryption SQLCIPHER_LIB_DEPENDS= libsqlcipher.so:databases/sqlcipher SQLCIPHER_CMAKE_BOOL= ENABLE_SQLCIPHER WEBOOB_DESC= Online banking via Web Outside Of Browsers WEBOOB_BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}weboob-qt>0:www/py-weboob-qt@${PY_FLAVOR} WEBOOB_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}weboob-qt>0:www/py-weboob-qt@${PY_FLAVOR} WEBOOB_USES= python:3.7+ WEBOOB_USE= qt=concurrent WEBOOB_CMAKE_BOOL= ENABLE_WEBOOB .if defined(MAINTAINER_MODE) # Apply additional substitutions to pkg-plist generated by the 'makeplist' target create-plist: stage @(cd ${.CURDIR} && ${MAKE} makeplist > pkg-plist && \ ${SED} -i "" -e '1d' \ -e '/icalendar/s|^|%%CALENDAR%%|g' -e '/kbanking/s|^|%%KBANKING%%|g' \ -e '/ofximport/s|^|%%OFX%%|g' -e '/qsqlcipher/s|^|%%SQLCIPHER%%|g' \ -e '/weboob/s|^|%%WEBOOB%%|g' \ pkg-plist) .endif .include