diff options
author | sylvio <sylvio@FreeBSD.org> | 2012-05-26 05:28:53 +0800 |
---|---|---|
committer | sylvio <sylvio@FreeBSD.org> | 2012-05-26 05:28:53 +0800 |
commit | 1c83b3eb40531684b831b2403ac30059372855ea (patch) | |
tree | 516b6ff4e91800e51aec8118beb9ba218a579a4a /ftp/bftpd | |
parent | 311a7f25fab69df290f0f5d8d94fe65c47a07ada (diff) | |
download | freebsd-ports-gnome-1c83b3eb40531684b831b2403ac30059372855ea.tar.gz freebsd-ports-gnome-1c83b3eb40531684b831b2403ac30059372855ea.tar.zst freebsd-ports-gnome-1c83b3eb40531684b831b2403ac30059372855ea.zip |
- Marked BROKEN. Does not compile on FreeBSD 7.x and 8.x
Reported by: pav@
Diffstat (limited to 'ftp/bftpd')
-rw-r--r-- | ftp/bftpd/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/ftp/bftpd/Makefile b/ftp/bftpd/Makefile index 901a1ac554bd..365da8bbd948 100644 --- a/ftp/bftpd/Makefile +++ b/ftp/bftpd/Makefile @@ -24,6 +24,12 @@ PLIST_FILES= sbin/${PORTNAME} etc/${PORTNAME}.conf.sample MAN8= bftpd.8 PORTDOCS= en pl sk +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 900000 +BROKEN= does not compile on FreeBSD 7.x and 8.x +.endif + post-patch: @${REINPLACE_CMD} -e 's,/etc/bftpd.conf,${PREFIX}/etc/bftpd.conf,' \ ${WRKSRC}/mypaths.h @@ -38,4 +44,4 @@ do-install: @cd ${WRKSRC}/doc && ${COPYTREE_SHARE} . ${DOCSDIR} .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |