diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-08-29 18:33:30 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-08-29 18:33:30 +0000 |
commit | 3b410f7bff4bc19187930f804d2bace9f5536c68 (patch) | |
tree | 384507b4e712a4b357807ac7605de859da54ce51 /science | |
parent | 1ce38e6fcc138aa0cd74d68026019d4d39b28be1 (diff) | |
download | ports-3b410f7bff4bc19187930f804d2bace9f5536c68.tar.gz ports-3b410f7bff4bc19187930f804d2bace9f5536c68.zip |
Support stage
PR: 146413
Submitted by: pfg
Notes
Notes:
svn path=/head/; revision=366549
Diffstat (limited to 'science')
-rw-r--r-- | science/fasthenry/Makefile | 27 |
1 files changed, 12 insertions, 15 deletions
diff --git a/science/fasthenry/Makefile b/science/fasthenry/Makefile index 28234c633147..57eb29e55126 100644 --- a/science/fasthenry/Makefile +++ b/science/fasthenry/Makefile @@ -9,11 +9,12 @@ MASTER_SITES= http://www.wrcad.com/ftp/pub/ LOCAL/bf MAINTAINER= ports@FreeBSD.org COMMENT= Multipole-accelerated inductance analysis program +OPTIONS_DEFINE= DOCS EXAMPLES + HAS_CONFIGURE= yes CONFIGURE_SCRIPT= config WRKSRC= ${WRKDIR}/fasthenry-3.0wr -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -Ee '/CFLAGS =/{s/=/+=/;s/-O[[:digit:]]*//;}' \ ${WRKSRC}/src/fasthenry/Makefile.default \ @@ -47,19 +48,15 @@ post-patch: ${WRKSRC}/src/fasthenry/mulMats.c do-install: - @${INSTALL_PROGRAM} ${WRKSRC}/bin/fasthenry ${PREFIX}/bin/ - @${INSTALL_PROGRAM} ${WRKSRC}/bin/zbuf ${PREFIX}/bin -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} - ${CAT} ${WRKSRC}/README ${WRKSRC}/README.mit > ${DOCSDIR}/readme - ${CAT} ${WRKSRC}/doc/manual_*.ps > ${DOCSDIR}/manual.ps - ${CAT} ${WRKSRC}/doc/nonuniform_manual_*.ps > ${DOCSDIR}/nonuniform_manual.ps - ${INSTALL_DATA} ${WRKSRC}/doc/ms_thesis.ps ${DOCSDIR} - ${GZIP_CMD} ${DOCSDIR}/* -.endif -.if !defined(NOPORTEXAMPLES) - ${MKDIR} ${EXAMPLESDIR} - ${INSTALL_DATA} ${WRKSRC}/examples/* ${EXAMPLESDIR} -.endif + @${INSTALL_PROGRAM} ${WRKSRC}/bin/fasthenry ${STAGEDIR}${PREFIX}/bin/ + @${INSTALL_PROGRAM} ${WRKSRC}/bin/zbuf ${STAGEDIR}${PREFIX}/bin + ${MKDIR} ${STAGEDIR}${DOCSDIR} + ${CAT} ${WRKSRC}/README ${WRKSRC}/README.mit > ${STAGEDIR}${DOCSDIR}/readme + ${CAT} ${WRKSRC}/doc/manual_*.ps > ${STAGEDIR}${DOCSDIR}/manual.ps + ${CAT} ${WRKSRC}/doc/nonuniform_manual_*.ps > ${STAGEDIR}${DOCSDIR}/nonuniform_manual.ps + ${INSTALL_DATA} ${WRKSRC}/doc/ms_thesis.ps ${STAGEDIR}${DOCSDIR} + ${GZIP_CMD} ${STAGEDIR}${DOCSDIR}/* + ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/examples/* ${STAGEDIR}${EXAMPLESDIR} .include <bsd.port.mk> |