diff options
author | kris <kris@FreeBSD.org> | 2002-12-02 00:31:53 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2002-12-02 00:31:53 +0000 |
commit | 395ff75926ee4757bc9fdf3a6f787286f2043237 (patch) | |
tree | 99e3e5fbb0553fccce0eac33ed35b270a9b22555 | |
parent | 17f65bc9804dd840988ae942aa62a472b0b1537f (diff) | |
download | FreeBSD-ports-395ff75926ee4757bc9fdf3a6f787286f2043237.zip FreeBSD-ports-395ff75926ee4757bc9fdf3a6f787286f2043237.tar.gz |
BROKEN: Does not compile on 5.0
-rw-r--r-- | news/grn/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/news/grn/Makefile b/news/grn/Makefile index aa5a3cf..851aba8 100644 --- a/news/grn/Makefile +++ b/news/grn/Makefile @@ -23,6 +23,12 @@ CONFIGURE_ENV= glibpath="${GLIB_CONFIG}" \ CPPFLAGS="-I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib" +.include <bsd.port.pre.mk> + +.if ${OSVERSION} > 500000 +BROKEN= "Does not compile" +.endif + pre-patch: @${PERL} -pi -e 's|-lpthread|${PTHREAD_LIBS}|g ; \ s|DATADIRNAME=lib|DATADIRNAME=share|g ; \ @@ -32,4 +38,4 @@ pre-patch: 's|\$$\(datadir\)/gnome/|\$$\(datadir\)/|g ; \ s|\$$\(datadir\)/locale|\$$\(prefix\)/share/locale|g' -.include <bsd.port.mk> +.include <bsd.port.post.mk> |