diff options
author | antoine <antoine@FreeBSD.org> | 2014-02-16 00:14:26 +0800 |
---|---|---|
committer | antoine <antoine@FreeBSD.org> | 2014-02-16 00:14:26 +0800 |
commit | b49d1ed436fee7a645c97c17962e0591db78acaa (patch) | |
tree | 69df7ee36cdccf81891e14b1025072a6496ec63c /devel/cl-infix | |
parent | 88f6ccc40561bb96493e5bf0df9bfd09506a422d (diff) | |
download | freebsd-ports-gnome-b49d1ed436fee7a645c97c17962e0591db78acaa.tar.gz freebsd-ports-gnome-b49d1ed436fee7a645c97c17962e0591db78acaa.tar.zst freebsd-ports-gnome-b49d1ed436fee7a645c97c17962e0591db78acaa.zip |
Stage support
Diffstat (limited to 'devel/cl-infix')
-rw-r--r-- | devel/cl-infix/Makefile | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/devel/cl-infix/Makefile b/devel/cl-infix/Makefile index 0baeb7795d9b..9bce5c8bce5c 100644 --- a/devel/cl-infix/Makefile +++ b/devel/cl-infix/Makefile @@ -21,22 +21,21 @@ NO_CDROM= No fees or compensation can be charged USE_ASDF= yes -NO_STAGE= yes +OPTIONS_DEFINE= DOCS + post-extract: @${MV} ${WRKSRC}/infix.cl ${WRKSRC}/infix.lisp do-install: - @${MKDIR} ${ASDF_PATHNAME} - @${INSTALL_DATA} ${WRKSRC}/*.lisp ${ASDF_PATHNAME} - @${INSTALL_DATA} ${WRKSRC}/infix.asd ${ASDF_PATHNAME} - @${INSTALL_DATA} ${WRKSRC}/infix.system ${ASDF_PATHNAME} - @${LN} -sf ${ASDF_PATHNAME}/*.asd ${ASDF_REGISTRY} -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} + @${MKDIR} ${STAGEDIR}${ASDF_PATHNAME} ${STAGEDIR}${ASDF_REGISTRY} + @${INSTALL_DATA} ${WRKSRC}/*.lisp ${STAGEDIR}${ASDF_PATHNAME} + @${INSTALL_DATA} ${WRKSRC}/infix.asd ${STAGEDIR}${ASDF_PATHNAME} + @${INSTALL_DATA} ${WRKSRC}/infix.system ${STAGEDIR}${ASDF_PATHNAME} + @${LN} -sf ${ASDF_PATHNAME}/infix.asd ${STAGEDIR}${ASDF_REGISTRY} + @${MKDIR} ${STAGEDIR}${DOCSDIR} .for FILE in COPYING infix.3lisp - @${INSTALL_DATA} ${WRKSRC}/${FILE} ${DOCSDIR} + @${INSTALL_DATA} ${WRKSRC}/${FILE} ${STAGEDIR}${DOCSDIR} .endfor -.endif .include "${.CURDIR}/../../devel/cl-asdf/bsd.cl-asdf.mk" .include <bsd.port.mk> |