mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
eae222a552
Feature safe: yes
41 lines
800 B
Makefile
41 lines
800 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= dotproject
|
|
PORTVERSION= 2.1.7
|
|
CATEGORIES= www devel
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/dotProject%20Version%20${PORTVERSION}
|
|
|
|
MAINTAINER= garga@FreeBSD.org
|
|
COMMENT= Open Source Project Management tool
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
NO_BUILD= yes
|
|
USE_PHP= gd mysql session zlib
|
|
WANT_PHP_WEB= yes
|
|
USE_APACHE_RUN= 22+
|
|
|
|
SUB_FILES= pkg-message
|
|
|
|
OPTIONS_DEFINE= LDAP
|
|
OPTIONS_DEFAULT=LDAP
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${PORT_OPTIONS:MLDAP}
|
|
USE_PHP+= ldap xml
|
|
.endif
|
|
|
|
post-extract:
|
|
@${FIND} ${WRKSRC} -type d -name '.svn' | ${XARGS} ${RM} -rf
|
|
@${FIND} ${WRKSRC} -type f -name '.cvsignore' -delete
|
|
|
|
do-install:
|
|
${MKDIR} ${WWWDIR}
|
|
${CP} -R ${WRKSRC}/* ${WWWDIR}
|
|
${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR}
|
|
|
|
post-install:
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.post.mk>
|