mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
6a71defe29
Current port www/mathjax is for now legacy version, v2. Current version of MathJax is v3. v2 is still supported and gets patch releases, but v3 is intended for new deployments. Upgrading v2 to v3 is not in-place upgrade, url of the script changes, which also requires change config of web server which hosts it. Therefore I think it is better to introduce new version as mathjax3. PR: 248796 Submitted by: Marko Cupać (maintainer)
32 lines
810 B
Makefile
32 lines
810 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= MathJax3
|
|
DISTVERSION= 3.1.2
|
|
CATEGORIES= www math
|
|
|
|
MAINTAINER= marko.cupac@mimar.rs
|
|
COMMENT= Cross-browser JavaScript display engine for mathematics
|
|
|
|
LICENSE= APACHE20
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= mathjax
|
|
GH_PROJECT= MathJax
|
|
GH_TAGNAME= c829235
|
|
|
|
NO_BUILD= yes
|
|
NO_ARCH= yes
|
|
|
|
# Changing permissions of 30k files with find -exec (COPYTREE) is way
|
|
# too slow.
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${WWWDIR}
|
|
(cd ${WRKSRC} && \
|
|
${FIND} -d . | ${CPIO} -dumpl ${STAGEDIR}${WWWDIR} >/dev/null 2>&1)
|
|
${FIND} -d ${STAGEDIR}${WWWDIR} -type d -print0 | ${XARGS} -0 ${CHMOD} 755
|
|
${FIND} -d ${STAGEDIR}${WWWDIR} -type f -print0 | ${XARGS} -0 ${CHMOD} ${SHAREMODE}
|
|
@(cd ${STAGEDIR}${PREFIX}; ${FIND} -s ${WWWDIR_REL} -not -type d) >> ${TMPPLIST}
|
|
|
|
.include <bsd.port.mk>
|