mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-15 07:56:36 +00:00
59d1d8b0d4
Changelog: * Correction bug 440271: 2.26.1 still installs skrooge_unit.knsrc to depreciated /etc/xdg/ location * Correction bug 446353: you can't tab to the number and duration fields in Operations "Show" table filter * Correction bug 446915: Import from Woob using Ofx * Correction: Weeks without operation are missing in reports * Correction: Crash when the dashboard is closed during animation * Feature: New release process for appimage * Feature: Unit values can be negative now (see https://forum.kde.org/viewtopic.php?f=210&t=173318) * Feature: Skrooge uses now the LC_MONETARY environement variable to use the specific locale for currency format
53 lines
1.8 KiB
Makefile
53 lines
1.8 KiB
Makefile
PORTNAME= skrooge
|
|
DISTVERSION= 2.27.0
|
|
CATEGORIES= finance kde
|
|
MASTER_SITES= KDE/stable/${PORTNAME}
|
|
DIST_SUBDIR= KDE/${PORTNAME}
|
|
|
|
MAINTAINER= kde@FreeBSD.org
|
|
COMMENT= Personal finance manager
|
|
|
|
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
|
|
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 gui network printsupport \
|
|
script sql svg webkit widgets xml \
|
|
buildtools_build designer_build qmake_build testlib_build
|
|
SHEBANG_FILES= plugins/import/skrooge_import_backend/skrooge-sabb.py \
|
|
skgbankmodeler/skrooge-coinmarketcap.py \
|
|
skgbankmodeler/skrooge-cryptocompare.py \
|
|
skgbankmodeler/skrooge-exchangerates.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>
|