diff options
author | krion <krion@FreeBSD.org> | 2003-11-03 19:37:53 +0000 |
---|---|---|
committer | krion <krion@FreeBSD.org> | 2003-11-03 19:37:53 +0000 |
commit | 0727f97c24c4993e83e487c13f246117883a9d56 (patch) | |
tree | d93f49c18a647e950bd3b6ae9eecbcff4af6df0b /print/cpp2latex | |
parent | af5f3b6f0cf21a9637f41dd4709bfcab2652162c (diff) | |
download | FreeBSD-ports-0727f97c24c4993e83e487c13f246117883a9d56.zip FreeBSD-ports-0727f97c24c4993e83e487c13f246117883a9d56.tar.gz |
- Fix build on -current
PR: 58879
Submitted by: Ports Fury
Diffstat (limited to 'print/cpp2latex')
-rw-r--r-- | print/cpp2latex/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/print/cpp2latex/Makefile b/print/cpp2latex/Makefile index 282d7af..20dc880 100644 --- a/print/cpp2latex/Makefile +++ b/print/cpp2latex/Makefile @@ -14,17 +14,17 @@ MASTER_SITES= http://www.arnoldarts.de/ MAINTAINER= ports@FreeBSD.org COMMENT= Convert C++ source to a file you can input in an LaTeX-document +USE_REINPLACE= yes 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 +post-patch: + @${REINPLACE_CMD} -e 's|-pedantic||g' ${WRKSRC}/configure -.if !defined(NOPORTDOCS) post-install: +.if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} .for docfile in AUTHORS ChangeLog README TODO ${INSTALL_DATA} ${WRKSRC}/${docfile} ${DOCSDIR} |