8664861b1a
Braces are not shell metacharacters, and they do not need to be quoted. By the time find parses its arguments and dicovers them, the quoting will have been removed by the shell anyway. Sponsored by: Absolight
30 lines
743 B
Makefile
30 lines
743 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= gitphp
|
|
PORTVERSION= 0.2.8
|
|
PORTREVISION= 1
|
|
CATEGORIES= devel www
|
|
MASTER_SITES= https://github.com/xiphux/gitphp/releases/download/${PORTVERSION}/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Web based git repository browser written in PHP
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USES= gettext tar:bzip2
|
|
USE_PHP= bz2 fileinfo mbstring memcache posix simplexml spl zlib
|
|
WANT_PHP_WEB= yes
|
|
NO_BUILD= yes
|
|
|
|
PLIST_SUB= WWWOWN="${WWWOWN}" WWWGRP="${WWWGRP}"
|
|
SUB_FILES= pkg-message
|
|
|
|
RUN_DEPENDS+= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/xdiff.so:textproc/pecl-xdiff
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${WWWDIR}
|
|
(cd ${WRKSRC} \
|
|
&& ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR})
|
|
${FIND} ${STAGEDIR}${WWWDIR} -type f -exec ${CHMOD} 644 {} +
|
|
|
|
.include <bsd.port.mk>
|