81d715ad4e
- Allow staging as a regular user
28 lines
901 B
Makefile
28 lines
901 B
Makefile
# Created by: Lukasz Stelmach <lukasz.stelmach@iem.pw.edu.pl>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= MathJax
|
|
PORTVERSION= 2.4.0
|
|
CATEGORIES= www
|
|
|
|
MAINTAINER= lukasz.stelmach@iem.pw.edu.pl
|
|
COMMENT= Cross-browser JavaScript display engine for mathematics
|
|
|
|
NO_BUILD= yes
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= mathjax
|
|
GH_COMMIT= bd9f6e0
|
|
|
|
# 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}
|
|
@(cd ${STAGEDIR}${PREFIX}; ${FIND} -s -d ${WWWDIR_REL} -type d) \
|
|
| ${SED} -ne 's,^,@dirrm ,p' >> ${TMPPLIST}
|
|
|
|
.include <bsd.port.mk>
|