1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-04 01:48:54 +00:00

www/lessc: Moving building out of stage phase, fix stage-QA

This port would build and install in the stage phase, but building is
supposed to be complete by then.  Moreover, stage QA checks complain
about thousands of "orphaned" files and symbolic links with absolute
paths.  Fix all the problems by installing in a temporary build directory
and moving just the lessc files over the stage directory, and fix the
symbolic link by defining a relative path instead.

Functionally, the new package is the same as the old one, so no revbump
is required.

PR:		210567
Approved by:	maintainer timeout (2 months)
This commit is contained in:
John Marino 2016-08-27 21:34:27 +00:00
parent ed87e5902c
commit 1ffef42c19
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=420999

View File

@ -14,14 +14,26 @@ LICENSE= APACHE20
BUILD_DEPENDS= npm>=0:www/npm
RUN_DEPENDS= npm>=0:www/npm
NO_BUILD= yes
USE_GITHUB= yes
GH_ACCOUNT= less
GH_PROJECT= less.js
# npm install both builds and installs. To avoid building in the stage phase,
# allow npm to install in a temporary directory and move from there.
# Moreover, only a fraction of what is installed by npm needs to be packaged
do-build:
${MKDIR} ${WRKDIR}/build-lib
(cd ${WRKDIR}/build-lib && \
${SETENV} HOME=${WRKDIR} npm install ${WRKSRC})
do-install:
(cd ${STAGEDIR}${PREFIX}/lib ; ${SETENV} HOME=${WRKDIR} npm install ${WRKSRC})
# this is a dirty hack
${LN} -s ${PREFIX}/lib/node_modules/.bin/lessc ${STAGEDIR}${PREFIX}/bin/lessc
${MKDIR} ${STAGEDIR}${PREFIX}/bin \
${STAGEDIR}${PREFIX}/lib/node_modules/.bin
${MV} ${WRKDIR}/build-lib/node_modules/less \
${STAGEDIR}${PREFIX}/lib/node_modules
${MV} ${WRKDIR}/build-lib/node_modules/.bin/lessc \
${STAGEDIR}${PREFIX}/lib/node_modules/.bin
(cd ${STAGEDIR}${PREFIX}/bin && \
${LN} -s ../lib/node_modules/.bin/lessc lessc)
.include <bsd.port.mk>