diff options
author | pav <pav@FreeBSD.org> | 2005-02-06 00:50:02 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2005-02-06 00:50:02 +0800 |
commit | 27d9ad94a8b68635c9fa550853a03b6bb6da3256 (patch) | |
tree | 72cfd5903db5c4c714241d01c75d7c7b8ccf4c7d | |
parent | f9a99a7d2f1132b143189450f229492eec0ef8f6 (diff) | |
download | freebsd-ports-graphics-27d9ad94a8b68635c9fa550853a03b6bb6da3256.tar.gz freebsd-ports-graphics-27d9ad94a8b68635c9fa550853a03b6bb6da3256.tar.zst freebsd-ports-graphics-27d9ad94a8b68635c9fa550853a03b6bb6da3256.zip |
- Move perl invocation to post-build, just to be sure
-rw-r--r-- | security/php4-cryptopp/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/security/php4-cryptopp/Makefile b/security/php4-cryptopp/Makefile index 1c540189ff8..3af9b58bbeb 100644 --- a/security/php4-cryptopp/Makefile +++ b/security/php4-cryptopp/Makefile @@ -32,13 +32,13 @@ CONFIGURE_ARGS= --with-cryptopp PORTDOCS= README ${PORTNAME}.doc .endif -post-extract: -# convert sgml documentation to plain text - @${PERL} -e '$$/=">";' -e 'while(<>){s/<.*>//;print;}' < ${WRKSRC}/docs/${PORTNAME}.sgml > ${WRKSRC}/${PORTNAME}.doc - post-patch: @${REINPLACE_CMD} -e 's|-march=pentium3 -O3 -g -pipe -fomit-frame-pointer|${CFLAGS}|' ${WRKSRC}/config.m4 +post-build: +# convert sgml documentation to plain text + @${PERL} -e '$$/=">";' -e 'while(<>){s/<.*>//;print;}' < ${WRKSRC}/docs/${PORTNAME}.sgml > ${WRKSRC}/${PORTNAME}.doc + post-install: .if !defined(NOPORTDOCS) ${MKDIR} ${DOCSDIR} |