freebsd-ports/finance/skrooge/Makefile
Tobias C. Berner afd6367e3c finance/skrooge: update to 2.29.0
* Correction bug 459775: User must be able to unlink the current
   account connected with a credit card account
 * Correction bug 459378: Merging imported operation with an existing
   one fails when both have the same property
 * Correction bug 456895: Skrooge seems to work better under Wayland, so
   remove broken Wayland override
 * Correction bug 455427: Allow to add operations to a scheduled
   operation
 * Correction bug 409705: Add category adds as subcategory of selected,
   which doesn't match the Name line
 * Correction bug 463245: Exchange rates converter no longer works
 * Correction bug 465335: Skrooge v2.28.0 AppImage Icons Don't show
 * Correction: When a document is open, settings stored in the document
   (underligned) must be reload
 * Correction: Remove deprecated api for loading plugins
 * Feature: Change of XML export and addition of XML import (this will
   facilitate some other XML import like ISO 20022)
 * Feature: Import ISO 20022
 * Feature: Align the category of all single operations with the
   category of their payee (quality check + view + auto correction)

Changelog: https://skrooge.org/news/2023-02-12-skrooge_2.29.0_released/
2023-02-17 20:25:14 +01:00

53 lines
1.9 KiB
Makefile

PORTNAME= skrooge
DISTVERSION= 2.29.0
CATEGORIES= finance kde
MASTER_SITES= KDE/stable/${PORTNAME}
DIST_SUBDIR= KDE/${PORTNAME}
MAINTAINER= kde@FreeBSD.org
COMMENT= Personal finance manager
WWW= https://skrooge.org
LICENSE= GPLv2+
LICENSE_FILE= ${WRKSRC}/COPYING
BUILD_DEPENDS= xsltproc:textproc/libxslt
LIB_DEPENDS= libofx.so:finance/libofx \
libsqlcipher.so:databases/sqlcipher
USES= cmake compiler:c++11-lib desktop-file-utils gettext grantlee:5 \
kde:5 pkgconfig python:3.4+ qca qt:5 shared-mime-info \
shebangfix sqlite:3 tar:xz xorg
USE_KDE= activities archive attica5 auth bookmarks codecs completion \
config configwidgets coreaddons crash dbusaddons emoticons \
guiaddons i18n iconthemes init itemmodels itemviews jobwidgets \
kio newstuff notifications notifyconfig package parts \
plasma-framework runner service solid sonnet textwidgets \
unitconversion wallet widgetsaddons windowsystem xmlgui \
doctools:build ecm:build
# designerplugin is weird: it's defined as a _run dependency, but
# skrooge checks for it at build-time.
USE_KDE+= designerplugin:build
USE_QT= concurrent core dbus declarative designer gui network \
printsupport script sql svg webkit widgets xml xmlpatterns \
buildtools:build designer:build qmake:build testlib:build
USE_XORG= x11
SHEBANG_FILES= plugins/import/skrooge_import_backend/skrooge-sabb.py \
skgbankmodeler/skrooge-coinmarketcap.py \
skgbankmodeler/skrooge-cryptocompare.py \
skgbankmodeler/skrooge-exchangerates.py \
skgbankmodeler/skrooge-exchangerates_apilayer.py \
skgbankmodeler/skrooge-ratesapi.py \
skgbankmodeler/skrooge-yahoodl.py
USE_LDCONFIG= yes
PLIST_SUB= SHLIB_VER="${PORTVERSION}"
# Skrooge creates several empty directories due to how it calls CMake's
# install(DIRECTORY ...) function, so we need some code to remove them.
post-install:
${FIND} ${STAGEDIR}${PREFIX}/share/skrooge/html \
-type d -empty -delete
.include <bsd.port.mk>