b6ec06f079
Ports 02f27a83b4 fixed the ports tree to the C locale so it would work
correctly in environments where users use a locale that isn't compatible
with the C locale, e.g. xx_YY.UTF-8 where [A-Z] includes more than just
upper case letters. USE_LOCALE was introduced to let ports use another
locale if they needed it. The C.UTF-8 locale was created later on to be
mostly compatible with the C locale.
Switch the ports tree locale to C.UTF-8 and remove USE_LOCALE. The
world has moved to Unicode so all ports either require it or know how to
build correctly in a Unicode environment.
PR: 295945
Exp-run by: antoine
78 lines
2.6 KiB
Makefile
78 lines
2.6 KiB
Makefile
PORTNAME= write-good
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 1.0.8
|
|
PORTREVISION= 4
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= LOCAL/0mp/:npm
|
|
DISTFILES= ${_NPM_DISTFILES}
|
|
|
|
MAINTAINER= 0mp@FreeBSD.org
|
|
COMMENT= Naive linter for English prose
|
|
WWW= https://github.com/btford/write-good
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
BUILD_DEPENDS= npm:www/npm
|
|
|
|
USES= nodejs:run
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= btford
|
|
|
|
NO_ARCH= yes
|
|
NO_BUILD= yes
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
PORTDOCS= README.md
|
|
|
|
.if !defined(MAINTAINER_MODE)
|
|
_NPM_DISTFILES= ${_NPM_DISTFILE_cache}:npm \
|
|
${_NPM_DISTFILE_modules}:npm
|
|
.endif
|
|
_NPM_DISTFILE_cache= ${PORTNAME}-${DISTVERSION}.cache${EXTRACT_SUFX}
|
|
_NPM_DISTFILE_modules= ${PORTNAME}-${DISTVERSION}.modules${EXTRACT_SUFX}
|
|
|
|
_UNNECESSARY_FILES= test .dockerignore \
|
|
.eslintrc .gitignore .npmignore .pre-commit-hooks.yaml \
|
|
.travis.yml Dockerfile LICENSE README.md
|
|
_LIBEXEC_REL= libexec/${PORTNAME}
|
|
_LIBEXEC= ${STAGEDIR}${PREFIX}/${_LIBEXEC_REL}
|
|
|
|
do-install:
|
|
@${MKDIR} ${_LIBEXEC}
|
|
(cd ${WRKSRC} && ${COPYTREE_SHARE} . ${_LIBEXEC})
|
|
|
|
${RLN} ${_LIBEXEC}/bin/${PORTNAME}.js ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
|
|
${CHMOD} +x ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
|
|
${RLN} ${_LIBEXEC}/bin/${PORTNAME}.js ${STAGEDIR}${PREFIX}/bin/writegood
|
|
${CHMOD} +x ${STAGEDIR}${PREFIX}/bin/writegood
|
|
|
|
(cd ${_LIBEXEC} && ${RM} -r ${_UNNECESSARY_FILES})
|
|
|
|
post-install:
|
|
# Build plist automatically to avoid listing all the node_modules files.
|
|
(cd ${STAGEDIR}${PREFIX} && \
|
|
${FIND} ${_LIBEXEC_REL}/node_modules -not -type d >> ${TMPPLIST})
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_MAN} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}
|
|
|
|
# - Requires npm (e.g., from www/npm).
|
|
# - Remember to set MAINTAINER_MODE,
|
|
# e.g., "make -DMAINTAINER_MODE _npm-regenerate".
|
|
_npm-regenerate:
|
|
${MAKE} clean patch
|
|
(cd ${WRKSRC} && ${SETENV} ${_NPM_ENV} npm install --ignore-scripts)
|
|
${FIND} ${WRKDIR}/.npm ${WRKSRC}/node_modules -exec ${TOUCH} -h -d 1970-01-01T00:00:00Z {} \;
|
|
(cd ${WRKDIR} && \
|
|
${FIND} .npm/_cacache -print0 | ${SORT} -z | \
|
|
${TAR} czf ${WRKDIR}/${_NPM_DISTFILE_cache} --format=ustar --uid 0 --gid 0 --options gzip:!timestamp --no-recursion --null -T -)
|
|
(cd ${WRKDIR} && \
|
|
${FIND} ${WRKSRC:T}/node_modules -print0 | ${SORT} -z | \
|
|
${TAR} czf ${WRKDIR}/${_NPM_DISTFILE_modules} --format=ustar --uid 0 --gid 0 --options gzip:!timestamp --no-recursion --null -T -)
|
|
scp ${WRKDIR}/${_NPM_DISTFILE_cache} ${WRKDIR}/${_NPM_DISTFILE_modules} 0mp@freefall.freebsd.org:public_distfiles/
|
|
cp ${WRKDIR}/${_NPM_DISTFILE_cache} ${WRKDIR}/${_NPM_DISTFILE_modules} ${DISTDIR}/
|
|
|
|
.include <bsd.port.mk>
|