Revision: 20807 http://trac.macosforge.org/projects/macports/changeset/20807 Author: mas@macports.org Date: 2006-11-29 12:25:04 -0800 (Wed, 29 Nov 2006) Log Message: ----------- change the default behaviour to include p5-finance-quote and aqbanking; don't use libofx by default because it does not yet reliably build for everyone, but variant enable_ofx is still available Modified Paths: -------------- trunk/dports/gnome/gnucash/Portfile Modified: trunk/dports/gnome/gnucash/Portfile =================================================================== --- trunk/dports/gnome/gnucash/Portfile 2006-11-29 19:57:03 UTC (rev 20806) +++ trunk/dports/gnome/gnucash/Portfile 2006-11-29 20:25:04 UTC (rev 20807) @@ -2,8 +2,8 @@ PortSystem 1.0 name gnucash -version 2.0.2 -revision 4 +version 2.0.2 +revision 5 categories gnome x11 maintainers mas@seligma.com description a personal and small-business financial-accounting software @@ -14,10 +14,13 @@ stocks, income and expenses. As quick and intuitive to \ use as a checkbook register, it is based on professional \ accounting principles to ensure balanced books and \ - accurate reports. \ + accurate reports. -- \ GnuCash is supposed to run as root once after initial \ installation. This port does not work around this \ - decision at the moment. + decision at the moment. -- \ + Use variant +enable_ofx to get OFX connectivity built in. \ + HBCI and online stock quote retrieval are now enabled by \ + default. homepage http://www.gnucash.org/ master_sites http://www.gnucash.org/pub/gnucash/sources/stable/ checksums md5 e1db168e36fb742590f834a6eee235d0 @@ -34,6 +37,8 @@ lib:libgtkhtml-3:libgtkhtml3 \ lib:libgsf:libgsf \ lib:libgoffice:goffice \ + lib:aqbanking:aqbanking \ + lib:Finance/Quote.pm:p5-finance-quote \ port:gnucash-docs depends_build bin:glibtoolize:libtool @@ -41,18 +46,21 @@ CFLAGS="-L${prefix}/lib -I${prefix}/include" \ LDFLAGS=-L${prefix}/lib configure.args --disable-glibtest --disable-debug --disable-profile \ - --disable-dependency-tracking + --disable-dependency-tracking --enable-hbci -variant enable_quotes { - depends_lib-append lib:Finance/Quote.pm:p5-finance-quote +variant without_quotes { + depends_lib-delete lib:Finance/Quote.pm:p5-finance-quote } -variant enable_hbci { - depends_lib-append lib:aqbanking:aqbanking - configure.args-append --enable-hbci +variant without_hbci { + depends_lib-delete lib:aqbanking:aqbanking + configure.args-delete --enable-hbci } variant enable_ofx { + # ofx is not enabled by default since some of the ports required + # by libofx have problems (distfile for mkcatalog is unavailable; + # openjade requires gcc33 which reportedly does not work on Intel) depends_lib-append lib:libofx:libofx configure.args-append --enable-ofx }