pkgsrc/finance/gnucash2/options.mk
wiz 5c3bfe6cc0 finance/gnucash2: import gnucash-2.6.19nb1
From finance/gnucash, to make space for new major version 3.

GnuCash is a personal finance manager. A check-book like register
GUI allows you to enter and track bank accounts, stocks, income
and even currency trades. A full set of reports allow you to see
the state of your finances. The interface is designed to be simple
and easy to use, but is backed with double-entry accounting principles
to ensure balanced books.  Features include:
  - Scheduled Transactions
  - Small Business Accounting Features
  - OFX and Quicken File Import and HBCI Support
  - Reconcile window with running reconciled and cleared balances
  - Stock/Mutual Fund Portfolios
  - Get Stock & Mutual Fund quotes from various web sites, update
    portfolio automatically (more funds being added regularly).
  - Reports
  - Multiple Currencies & Currency Trading
  - New Multi-Currency Transaction Handling
  - Chart of Accounts
  - Split Transactions
  - Double Entry
  - Income/Expense Account Types (Categories)
  - General Ledger
  - International date handling, many different translations.

This package contains the old major version 2 of gnucash.
2018-04-09 08:40:53 +00:00

24 lines
536 B
Makefile

# $NetBSD: options.mk,v 1.1 2018/04/09 08:40:53 wiz Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.gnucash
PKG_SUPPORTED_OPTIONS= libdbi libofx
PKG_SUGGESTED_OPTIONS= libdbi libofx
.include "../../mk/bsd.options.mk"
PLIST_VARS+= dbi ofx
.if !empty(PKG_OPTIONS:Mlibofx)
PLIST.ofx= yes
.include "../../finance/libofx/buildlink3.mk"
.else
CONFIGURE_ARGS+= --disable-ofx
.endif
.if !empty(PKG_OPTIONS:Mlibdbi)
CONFIGURE_ARGS+= --enable-dbi
PLIST.dbi= yes
.include "../../databases/libdbi/buildlink3.mk"
.else
CONFIGURE_ARGS+= --disable-dbi
.endif