diff options
author | mezz <mezz@FreeBSD.org> | 2008-12-04 07:12:40 +0800 |
---|---|---|
committer | mezz <mezz@FreeBSD.org> | 2008-12-04 07:12:40 +0800 |
commit | 30981d77c4f4702cc9594afac0288caf49742534 (patch) | |
tree | 40ab7c78f95e41ff707b58298ef1f4305853face /finance | |
parent | b7885bf2cba0e85c8a1c3bd8b6af91e0a070e79e (diff) | |
download | freebsd-ports-graphics-30981d77c4f4702cc9594afac0288caf49742534.tar.gz freebsd-ports-graphics-30981d77c4f4702cc9594afac0288caf49742534.tar.zst freebsd-ports-graphics-30981d77c4f4702cc9594afac0288caf49742534.zip |
Mark it as IGNORE on under FreeBSD 7 as it does not build. Might be fixed in
4.0.1.
Diffstat (limited to 'finance')
-rw-r--r-- | finance/homebank/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/finance/homebank/Makefile b/finance/homebank/Makefile index 0b406586374..e807e90d9cc 100644 --- a/finance/homebank/Makefile +++ b/finance/homebank/Makefile @@ -30,6 +30,12 @@ CONFIGURE_ARGS+=--with-ofx CONFIGURE_ARGS+=--without-ofx .endif +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 700000 +IGNORE=does not compile on FreeBSD 6.x and below, might be fixed in 4.0.1 +.endif + post-install: .ifndef (NOPORTDOCS) @${MKDIR} ${DOCSDIR} @@ -40,4 +46,4 @@ post-install: @-update-desktop-database @-update-mime-database ${PREFIX}/share/mime -.include <bsd.port.mk> +.include <bsd.port.post.mk> |