diff options
author | clement <clement@FreeBSD.org> | 2005-11-04 05:57:47 +0800 |
---|---|---|
committer | clement <clement@FreeBSD.org> | 2005-11-04 05:57:47 +0800 |
commit | 635c42fc0ed24d867c5b5393cedd863b8a387e93 (patch) | |
tree | 74736be846aebe01d7a6ccb23ebd6cdcc442e8d8 /news | |
parent | 795d6b6cc9683053ae962e8664ceb7fa8a9959c3 (diff) | |
download | freebsd-ports-gnome-635c42fc0ed24d867c5b5393cedd863b8a387e93.tar.gz freebsd-ports-gnome-635c42fc0ed24d867c5b5393cedd863b8a387e93.tar.zst freebsd-ports-gnome-635c42fc0ed24d867c5b5393cedd863b8a387e93.zip |
- Mark broken on 4.x since it requires atoll
Reported by: pointyhat via kris
Diffstat (limited to 'news')
-rw-r--r-- | news/nntpswitch/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/news/nntpswitch/Makefile b/news/nntpswitch/Makefile index e65bc8f93b40..5446461a6e10 100644 --- a/news/nntpswitch/Makefile +++ b/news/nntpswitch/Makefile @@ -55,6 +55,11 @@ ALL_TARGET+= ldap PLIST_FILES+= lib/${PORTNAME}/auth_ldap.so .endif +.include <bsd.port.pre.mk> +.if ${OSVERSION} < 500029 +BROKEN= "${PORTNAME} requires atoll(3)" +.endif + do-configure: @${REINPLACE_CMD} -e 's,%%PREFIX%%,${PREFIX},' ${WRKSRC}/nntpswitch.conf.in @@ -65,4 +70,5 @@ post-install: .endfor ${INSTALL_DATA} ${WRKSRC}/nntpswitch.conf-dist ${ETC_DIR}/ ${INSTALL_SCRIPT} ${FILESDIR}/nntpswitch.sh ${PREFIX}/etc/rc.d/nntpswitch.sh-dist -.include <bsd.port.mk> + +.include <bsd.port.post.mk> |