1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-26 00:55:14 +00:00
freebsd-ports/www/joomla15/Makefile
Jimmy Olgeni 96a38c7c3a Remove indefinite articles and trailing periods from COMMENT, plus
minor COMMENT typos and surrounding whitespace fixes. A few Makefiles
where not included as they contain Latin-1 characters that break
the Phabricator workflow. Category W.

CR:		D510
Approved by:	portmgr (bapt)
2014-08-06 09:11:57 +00:00

41 lines
1.1 KiB
Makefile

# Created by: Roberto Nunnari <robi@nunnisoft.ch>
# $FreeBSD$
PORTNAME= joomla15
PORTVERSION= 1.5.24
CATEGORIES= www
MASTER_SITES= http://joomlacode.org/gf/download/frsrelease/15898/68912/ \
http://linux3.dti.supsi.ch/downloads/
DISTNAME= Joomla_${PORTVERSION}-Stable-Full_Package
MAINTAINER= robi@nunnisoft.ch
COMMENT= Dynamic web content management system (CMS)
LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/LICENSE.php
FETCH_CMD= fetch -Rr
USES= tar:bzip2
NO_BUILD= yes
USE_MYSQL= yes
USE_PHP= mysql pcre xml zlib session gd pdf
WANT_PHP_WEB= yes
PKGMESSAGE= ${WRKDIR}/pkg-message
SUB_FILES= pkg-message
SUB_LIST+= PORTVERSION="${PORTVERSION}"
do-extract:
@${MKDIR} ${WRKSRC}
@${TAR} -yxf ${DISTDIR}/${DIST_SUBDIR}/${DISTNAME}${EXTRACT_SUFX} -C ${WRKSRC}
do-install:
@${MKDIR} ${STAGEDIR}${WWWDIR}
@cd ${WRKSRC} && \
${FIND} . -type d -exec ${MKDIR} ${STAGEDIR}${WWWDIR}/{} \; \
-exec ${CHOWN} ${WWWOWN}:${WWWGRP} ${STAGEDIR}${WWWDIR}/{} \;
@cd ${WRKSRC} && \
${FIND} . \! -type d -exec ${INSTALL_DATA} {} ${STAGEDIR}${WWWDIR}/{} \; \
-exec ${CHOWN} ${WWWOWN}:${WWWGRP} ${STAGEDIR}${WWWDIR}/{} \;
.include <bsd.port.mk>