diff options
author | rafan <rafan@FreeBSD.org> | 2007-09-25 19:26:03 +0800 |
---|---|---|
committer | rafan <rafan@FreeBSD.org> | 2007-09-25 19:26:03 +0800 |
commit | 0b43ad857565c1a1c7e9f1baf98c81e590e3a1e4 (patch) | |
tree | 94822c49bb99a428c21d3426a8734a58973d2c33 /news | |
parent | 422a417880f72a6024d69cfb1785832c532f1dab (diff) | |
download | freebsd-ports-graphics-0b43ad857565c1a1c7e9f1baf98c81e590e3a1e4.tar.gz freebsd-ports-graphics-0b43ad857565c1a1c7e9f1baf98c81e590e3a1e4.tar.zst freebsd-ports-graphics-0b43ad857565c1a1c7e9f1baf98c81e590e3a1e4.zip |
- Mark broken with gcc 4.x as this project is no longer under active
development. Quote from SourceForge page:
"As of 2004-10-08 10:20, this project is no longer under active development."
PR: ports/116616
Submitted by: Lewis Thompson <lewiz at compsoc.man.ac.uk> (maintainer)
Diffstat (limited to 'news')
-rw-r--r-- | news/nzbget/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/news/nzbget/Makefile b/news/nzbget/Makefile index d64fec98961..193c7578f22 100644 --- a/news/nzbget/Makefile +++ b/news/nzbget/Makefile @@ -26,10 +26,16 @@ USE_GETOPT_LONG= yes PLIST_FILES= bin/nzbget etc/nzbget.cfg.example +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 700042 +BROKEN= Broken with gcc 4.2 +.endif + post-patch: @${REINPLACE_CMD} -e 's/-lpthread/${PTHREAD_LIBS}/g' ${WRKSRC}/configure post-install: ${INSTALL_DATA} ${WRKSRC}/nzbget.cfg.example ${PREFIX}/etc -.include <bsd.port.mk> +.include <bsd.port.post.mk> |