summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Linimon <linimon@FreeBSD.org>2003-10-29 08:24:22 +0000
committerMark Linimon <linimon@FreeBSD.org>2003-10-29 08:24:22 +0000
commit27469af6ac2e10d2704c0ee097fcd6ff4cfee3c1 (patch)
treee39c2e03a5ddd8e2907f5d9df486669257532abd
parent. Add fix for "runaway process" problem. It should fix of stalled (diff)
Mark as broken on 5.x for the usual gcc reasons. Pet portlint.
Notes
Notes: svn path=/head/; revision=92541
-rw-r--r--print/cpp2latex/Makefile12
1 files changed, 9 insertions, 3 deletions
diff --git a/print/cpp2latex/Makefile b/print/cpp2latex/Makefile
index 99ce71f4c256..282d7af5ddaf 100644
--- a/print/cpp2latex/Makefile
+++ b/print/cpp2latex/Makefile
@@ -17,12 +17,18 @@ COMMENT= Convert C++ source to a file you can input in an LaTeX-document
GNU_CONFIGURE= yes
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
+.include <bsd.port.pre.mk>
+
+.if ${OSVERSION} >= 501000
+BROKEN= "Does not compile on FreeBSD ${OSVERSION}"
+.endif
+
.if !defined(NOPORTDOCS)
post-install:
@${MKDIR} ${DOCSDIR}
-.for file in AUTHORS ChangeLog README TODO
- ${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
+.for docfile in AUTHORS ChangeLog README TODO
+ ${INSTALL_DATA} ${WRKSRC}/${docfile} ${DOCSDIR}
.endfor
.endif
-.include <bsd.port.mk>
+.include <bsd.port.post.mk>