diff options
author | obrien <obrien@FreeBSD.org> | 2004-08-17 16:26:08 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2004-08-17 16:26:08 +0000 |
commit | 074b94d5d3e69cbb2ef5b1d84774a3b226a90e11 (patch) | |
tree | 8c51ac55c7f80a2edc5cab13cc3b379d6342c72b /print | |
parent | 08008cedbe4b628b26a44484695650788f87d192 (diff) | |
download | FreeBSD-ports-074b94d5d3e69cbb2ef5b1d84774a3b226a90e11.zip FreeBSD-ports-074b94d5d3e69cbb2ef5b1d84774a3b226a90e11.tar.gz |
Preprocess the heck out of this to bring it in line with C++98.
Diffstat (limited to 'print')
-rw-r--r-- | print/mp-letter/Makefile | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/print/mp-letter/Makefile b/print/mp-letter/Makefile index bd5fdb3..a560fcb 100644 --- a/print/mp-letter/Makefile +++ b/print/mp-letter/Makefile @@ -18,11 +18,8 @@ DISTNAME= mp-3.0.1 MAINTAINER= obrien@FreeBSD.org COMMENT= A PostScript printing util for ASCII files, email, USENET news articles, etc -.include <bsd.port.pre.mk> -.if ${OSVERSION} > 500000 -USE_GCC= 3.3 -.endif WRKSRC= ${WRKDIR}/mp +USE_REINPLACE= yes MAN1= mp.1 MLINKS= mp.1 digestp.1 - filep.1 - filofaxp.1 \ - franklinp.1 - mailp.1 - newsp.1 \ @@ -30,10 +27,15 @@ MLINKS= mp.1 digestp.1 - filep.1 - filofaxp.1 \ PAPERSIZE?= letter .if ${PAPERSIZE} == a4 -INSTALL_TARGET= install-a4 +INSTALL_TARGET= install-a4 .endif pre-patch: @${CP} ${WRKSRC}/Makefile.dist ${WRKSRC}/Makefile + @${REINPLACE_CMD} -e 's/<iostream\.h>/<iostream>
using namespace std;/' \ + -e 's/enum action_type/action_type/g' \ + -e 's/enum text_type/text_type/g' \ + ${WRKSRC}/header.cc ${WRKSRC}/input.cc ${WRKSRC}/main.cc \ + ${WRKSRC}/print.cc ${WRKSRC}/print.hh -.include <bsd.port.post.mk> +.include <bsd.port.mk> |