diff options
-rw-r--r-- | biology/fastdnaml/Makefile | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/biology/fastdnaml/Makefile b/biology/fastdnaml/Makefile index 4ed24a0d5de6..1d165af42414 100644 --- a/biology/fastdnaml/Makefile +++ b/biology/fastdnaml/Makefile @@ -20,16 +20,12 @@ PORTDOCS= fastDNAml_doc_1.2.txt fastDNAml_scripts.txt OPTIONS_DEFINE= DOCS -NO_STAGE= yes -.include <bsd.port.options.mk> - do-install: - ${INSTALL_PROGRAM} ${BUILD_WRKSRC}/fastDNAml ${PREFIX}/bin - @${MKDIR} ${PREFIX}/bin/${PORTNAME} - ${INSTALL_SCRIPT} ${WRKSRC}/scripts/* ${PREFIX}/bin/${PORTNAME} -.if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/docs/*.txt ${DOCSDIR} -.endif + ${INSTALL_PROGRAM} ${BUILD_WRKSRC}/fastDNAml ${STAGEDIR}${PREFIX}/bin + @${MKDIR} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} + ${INSTALL_SCRIPT} ${WRKSRC}/scripts/* \ + ${STAGEDIR}${PREFIX}/bin/${PORTNAME} + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/docs/*.txt ${STAGEDIR}${DOCSDIR} .include <bsd.port.mk> |