diff options
author | ehaupt <ehaupt@FreeBSD.org> | 2014-03-14 20:59:33 +0800 |
---|---|---|
committer | ehaupt <ehaupt@FreeBSD.org> | 2014-03-14 20:59:33 +0800 |
commit | 662544b87ebaebec3612bb2df28969b91bc67f2c (patch) | |
tree | 2e0a1a8ea5b27eb890b22f2034299a044c5c9d92 /biology | |
parent | cd3aa99013978cec6bda6082883377ac11d977a6 (diff) | |
download | freebsd-ports-gnome-662544b87ebaebec3612bb2df28969b91bc67f2c.tar.gz freebsd-ports-gnome-662544b87ebaebec3612bb2df28969b91bc67f2c.tar.zst freebsd-ports-gnome-662544b87ebaebec3612bb2df28969b91bc67f2c.zip |
Support staging
Diffstat (limited to 'biology')
-rw-r--r-- | biology/paml/Makefile | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/biology/paml/Makefile b/biology/paml/Makefile index 74d9c54e1df5..65e416280f80 100644 --- a/biology/paml/Makefile +++ b/biology/paml/Makefile @@ -17,21 +17,15 @@ MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS}" BINARIES= baseml basemlg chi2 codeml evolver pamp yn00 DOC_FILES= MCMCtreeDoc.pdf pamlDOC.pdf pamlFAQs.pdf pamlHistory.txt -NO_STAGE= yes - OPTIONS_DEFINE= DOCS -.include <bsd.port.options.mk> - do-install: .for f in ${BINARIES} - ${INSTALL_PROGRAM} ${WRKSRC}/${f} ${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/${f} ${STAGEDIR}${PREFIX}/bin .endfor -.if ${PORT_OPTIONS:MDOCS} - ${MKDIR} ${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} .for f in ${DOC_FILES} - ${INSTALL_DATA} ${WRKDIR}/${PORTNAME}44/doc/${f} ${DOCSDIR} + ${INSTALL_DATA} ${WRKDIR}/${PORTNAME}44/doc/${f} ${STAGEDIR}${DOCSDIR} .endfor -.endif .include <bsd.port.mk> |