diff options
author | Jeremy Messenger <mezz@FreeBSD.org> | 2006-08-07 18:04:55 +0000 |
---|---|---|
committer | Jeremy Messenger <mezz@FreeBSD.org> | 2006-08-07 18:04:55 +0000 |
commit | fd5b69f7abcdb70e08f919a7bedeed0f5057ee4b (patch) | |
tree | 4ef917406778785aa16cabfcacf05275dbe9ac06 /finance | |
parent | cc2dd0e99b4e73f77f79d83a1399b628e7d28975 (diff) |
- 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
Notes
Notes:
svn path=/head/; revision=170021
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> |