diff options
author | mezz <mezz@FreeBSD.org> | 2006-08-08 02:04:55 +0800 |
---|---|---|
committer | mezz <mezz@FreeBSD.org> | 2006-08-08 02:04:55 +0800 |
commit | 3befc259fb9798607e419b7a49f06effaf6ff618 (patch) | |
tree | 864d1b17f5a98d84596eebe15a78ca39a73e4f5d /finance | |
parent | 6a85cb29e39f2fb31b58d89a94c125767c7cb625 (diff) | |
download | freebsd-ports-gnome-3befc259fb9798607e419b7a49f06effaf6ff618.tar.gz freebsd-ports-gnome-3befc259fb9798607e419b7a49f06effaf6ff618.tar.zst freebsd-ports-gnome-3befc259fb9798607e419b7a49f06effaf6ff618.zip |
- Mark it as BROKEN, Does not build on FreeBSD 4.x. Also, I don't support
FreeBSD 4.x.
- While I am here, change the home prefix from X11BASE to LOCALBASE. Bump the
PORTREVISION.
Reported by: krismail
Diffstat (limited to 'finance')
-rw-r--r-- | finance/homebank/Makefile | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/finance/homebank/Makefile b/finance/homebank/Makefile index 60f89584200a..e9ffc068b32a 100644 --- a/finance/homebank/Makefile +++ b/finance/homebank/Makefile @@ -7,6 +7,7 @@ PORTNAME= homebank DISTVERSION= 3.2alpha2 +PORTREVISION= 1 CATEGORIES= finance MASTER_SITES= http://homebank.free.fr/public/ @@ -14,17 +15,23 @@ MAINTAINER= mezz@FreeBSD.org COMMENT= Manage your personal accounts at home WRKSRC= ${WRKDIR}/${PORTNAME} +USE_XLIB= yes USE_GMAKE= yes USE_GNOME= gtk20 USE_GETTEXT= yes USE_DOS2UNIX= src/* -USE_X_PREFIX= yes GNU_CONFIGURE= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" DOCS= AUTHORS COPYING ChangeLog LICENSE NEWS README +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 500000 +BROKEN= Does not build on FreeBSD 4.x +.endif + post-extract: @${RM} -rf ${WRKSRC}/autom4te.cache ${WRKSRC}/po/*.gmo @@ -36,4 +43,4 @@ post-install: .endfor .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |