In preparation of changing the PHP default version from 5.6 to 7.0 i found a number of ports not building with the new version and all later versions. Therefore i set IGNORE_WITH_PHP and notice all maintainer about the change. Approved by: portmgr (blanket)
30 lines
741 B
Makefile
30 lines
741 B
Makefile
# Created by: Amir Husaini <amir.husaini@bsdit.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= zikula
|
|
PORTVERSION= 1.3.5
|
|
PORTREVISION= 1
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://www.bsdit.com/pub/ \
|
|
http://zikula.at/
|
|
DISTNAME= Zikula_Core-${PORTVERSION}.build20
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= MVC web application framework (PHP/MySQL)
|
|
|
|
IGNORE_WITH_PHP= 70 71 72
|
|
|
|
WRKSRC= ${WRKDIR}/Zikula_Core-${PORTVERSION}
|
|
USES= zip php:web mysql
|
|
NO_BUILD= yes
|
|
USE_PHP= ctype tokenizer pdo mysql filter mbstring session json pdo_mysql hash
|
|
IGNORE_WITH_MYSQL= 41 50
|
|
|
|
PLIST_SUB= WWWOWN="${WWWOWN}" WWWGRP="${WWWGRP}"
|
|
SUB_FILES= pkg-message
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${WWWDIR}
|
|
(cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR})
|
|
|
|
.include <bsd.port.mk>
|