b3c2858eaa
Changelog: * change: filter, reworked the layout * change: filter, category select change now propagate to subcategories * wish : #1661806 show overdraft amount in account window (balance column) * wish : #1655542 improve handling of end of month scheduled transactions * bugfix: sanity was not checking dst_account * bugfix: sanity orphaned account was not working * bugfix: #1663795 "show all" shows as enabled after opening another file * bugfix: #1663789 both sides of internal transfers' accounts not changed * bugfix: #1663399 display Order of Account Types (5.1.3) * bugfix: #1662197 main window's upcoming transactions pane shifts downwards on every startup * bugfix: #1662189 main window size/position saved only when using wm close (X) button * bugfix: #1661279 memory Fault on homebank-5.1.1-1.fc25.x86_64 and later * bugfix: #1660910 main window layout is not persisted * bugfix: #1658538 balance Report crash when no txn at all * bugfix: #1656720 save button in main window disabled despite pending changes * bugfix: #1655626 libofx for windows bad utf-8 char import corrupt xml file
36 lines
811 B
Makefile
36 lines
811 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= homebank
|
|
PORTVERSION= 5.1.4
|
|
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>
|