diff options
author | vanilla <vanilla@FreeBSD.org> | 2014-06-18 17:24:03 +0800 |
---|---|---|
committer | vanilla <vanilla@FreeBSD.org> | 2014-06-18 17:24:03 +0800 |
commit | 32ae7b00eab5d239a9225d8c676117e6af701e61 (patch) | |
tree | ec9a56bd6589cfdc1257449a0041735e117e8e71 /math | |
parent | e7e421003ef6bfdfa95b4d2288b229566a526500 (diff) | |
download | freebsd-ports-gnome-32ae7b00eab5d239a9225d8c676117e6af701e61.tar.gz freebsd-ports-gnome-32ae7b00eab5d239a9225d8c676117e6af701e61.tar.zst freebsd-ports-gnome-32ae7b00eab5d239a9225d8c676117e6af701e61.zip |
1: Stagify.
2: new syntax of LIB_DEPENDS.
Approved by: portmgr@
Diffstat (limited to 'math')
-rw-r--r-- | math/crlibm/Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/math/crlibm/Makefile b/math/crlibm/Makefile index aeabcec47992..a99fc4921e1c 100644 --- a/math/crlibm/Makefile +++ b/math/crlibm/Makefile @@ -25,7 +25,6 @@ OPTIONS_DEFINE= TEST OPTIONS_DEFAULT= TEST TEST_DESC= Include all test capabilities (requires MPFR) -NO_STAGE= yes .include <bsd.port.options.mk> .if make(makesum) || ${PORT_OPTIONS:MDOCS} DISTFILES+= crlibm-1.0beta3.pdf:2,4 tripledoubleprocedures-1.0beta3.pdf:3,4 @@ -49,7 +48,7 @@ CONFIGURE_ARGS+= --enable-sse2 .if ${PORT_OPTIONS:MTEST} CONFIGURE_ARGS+= --enable-mpfr -LIB_DEPENDS+= mpfr.4:${PORTSDIR}/math/mpfr +LIB_DEPENDS+= libmpfr.so:${PORTSDIR}/math/mpfr .else CONFIGURE_ARGS+= --disable-mpfr .endif @@ -62,8 +61,8 @@ check regression-test test: build PORTDOCS= ${DISTFILES:C|\:.*||:M*.pdf} post-install: - @${MKDIR} ${DOCSDIR} - @cd ${_DISTDIR}; ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} + @cd ${_DISTDIR}; ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR} .endif |