Date: Wed, 26 Feb 2014 07:40:07 +0000 (UTC) From: Martin Wilke <miwi@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r346135 - head/math/djbfft Message-ID: <201402260740.s1Q7e7KW077536@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: miwi Date: Wed Feb 26 07:40:07 2014 New Revision: 346135 URL: http://svnweb.freebsd.org/changeset/ports/346135 QAT: https://qat.redports.org/buildarchive/r346135/ Log: - Stage support Modified: head/math/djbfft/Makefile Modified: head/math/djbfft/Makefile ============================================================================== --- head/math/djbfft/Makefile Wed Feb 26 07:39:56 2014 (r346134) +++ head/math/djbfft/Makefile Wed Feb 26 07:40:07 2014 (r346135) @@ -20,7 +20,6 @@ HEADER_FILES= complex4.h complex8.h fftc fftr4.h fftr8.h real4.h real8.h LIB_FILES= libdjbfft.a -NO_STAGE= yes post-patch: @${FIND} ${WRKSRC} -type f -exec \ ${REINPLACE_CMD} -E -e 's!(djbfft.a)!lib\1!' {} \; @@ -41,14 +40,14 @@ do-configure: .endif pre-su-install: - @${MKDIR} ${PREFIX}/include/${PORTNAME} + @${MKDIR} ${STAGEDIR}${PREFIX}/include/${PORTNAME} do-install: .for file in ${HEADER_FILES} - @${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/include/${PORTNAME} + @${INSTALL_DATA} ${WRKSRC}/${file} ${STAGEDIR}${PREFIX}/include/${PORTNAME} .endfor .for file in ${LIB_FILES} - @${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/lib + @${INSTALL_DATA} ${WRKSRC}/${file} ${STAGEDIR}${PREFIX}/lib .endfor .include <bsd.port.pre.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201402260740.s1Q7e7KW077536>