mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-16 03:24:07 +00:00
139816a064
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)
43 lines
942 B
Makefile
43 lines
942 B
Makefile
# Created by: Carsten Jensen <carsten@sitracker.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= sit
|
|
PORTVERSION= 3.67
|
|
PORTREVISION= 1
|
|
CATEGORIES= www
|
|
MASTER_SITES= SF/sitracker/stable/${PORTVERSION}/
|
|
DISTNAME= sit_${PORTVERSION}p1
|
|
|
|
MAINTAINER= carsten@sitracker.org
|
|
COMMENT= PHP incident tracking system / Helpdesk
|
|
|
|
LICENSE= GPLv2
|
|
|
|
IGNORE_WITH_PHP= 70 71 72
|
|
|
|
USES= php:web
|
|
USE_PHP= pcre mysql session zlib mbstring
|
|
|
|
NO_BUILD= yes
|
|
WRKSRC= ${WRKDIR}/sit-${PORTVERSION}
|
|
|
|
SUB_FILES= pkg-message
|
|
|
|
OPTIONS_DEFINE= IMAP MBSTRING LDAP
|
|
OPTIONS_DEFAULT= IMAP MBSTRING
|
|
IMAP_DESC= Email Support
|
|
MBSTRING_DESC= Inbound email feature
|
|
|
|
IMAP_USE= PHP=imap
|
|
MBSTRING_USE= PHP=mbstring
|
|
LDAP_USE= PHP=ldap
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${WWWDIR}
|
|
cd ${WRKSRC}; ${FIND} . \
|
|
| ${CPIO} -pdm -R ${WWWOWN}:${WWWGRP} ${STAGEDIR}${WWWDIR}
|
|
${CHMOD} -R ${BINMODE} ${STAGEDIR}${WWWDIR}
|
|
${FIND} ${STAGEDIR}${WWWDIR} ! -type d | ${XARGS} ${CHMOD} ${NOBINMODE}
|
|
|
|
.include <bsd.port.mk>
|