5ea94c2399
Changelog: * bugfix: updating currency rate was not updating file changes (and enable save) * bugfix: #1689308 category usage count does not get updated for split transactions * bugfix: #1687117 statistic report filter do not update date range * bugfix: #1683646 only one changed icon is displayed in accounts window when an internal transfer is edited * bugfix: #1681532 segfault when pressing escape while editing a new transaction * bugfix: #1678476 french translation is missing in filter * bugfix: #1678230 time report show all category may be wrong if split * bugfix: #1676162 can't set transaction amount to 6 decimal points * bugfix: #1674020 statistics Report: sorting by amount does not work with "Expenses and Income" * bugfix: #1672209 account window "0.00" balance sometimes displayed in warning color * bugfix: #1672205 "Show # days in advance the current date" preference doesn't work * bugfix: #1672135 BYN - new Belorussian currency is not in the list * bugfix: #1668036 cannot filter on memo if split transaction * bugfix: #1667201 original account shows edits when inheriting transaction into another account * bugfix: #1664916 balance report does not include accounts with no transactions
36 lines
811 B
Makefile
36 lines
811 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= homebank
|
|
PORTVERSION= 5.1.5
|
|
CATEGORIES= finance
|
|
MASTER_SITES= http://homebank.free.fr/public/
|
|
|
|
MAINTAINER= pawel@FreeBSD.org
|
|
COMMENT= Free, easy, personal accounting for everyone
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libsoup-2.4.so:devel/libsoup \
|
|
libosp.so:textproc/opensp
|
|
|
|
GNU_CONFIGURE= yes
|
|
USES= desktop-file-utils gettext gmake localbase pkgconfig \
|
|
shared-mime-info
|
|
USE_GNOME= cairo gtk30 intltool
|
|
INSTALLS_ICONS= yes
|
|
|
|
PORTDOCS= AUTHORS ChangeLog NEWS README
|
|
|
|
OPTIONS_DEFINE= DOCS OFX
|
|
OFX_DESC= OFX file format support
|
|
OPTIONS_DEFAULT=OFX
|
|
|
|
OFX_CONFIGURE_WITH= ofx
|
|
OFX_LIB_DEPENDS= libofx.so:finance/libofx
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|