diff options
author | Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2010-10-09 16:55:56 +0000 |
---|---|---|
committer | Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2010-10-09 16:55:56 +0000 |
commit | 0a83a99405ea4ed1d2a02d0e2c50cbdafe7c3a09 (patch) | |
tree | db5f52e7b97cbbe91ce39f2f1fbb19f8110ea541 /databases/mantis | |
parent | caa293ca4edc2fbe51320fe4e5473a4e4af4cd7f (diff) |
- Add missing PHP dependency: hash & session
- Bump PORTREVISION
- While I'm here, remove outdated no-op pre-everything::
PR: ports/151267
Submitted by: Frederic Praca <frederic.praca@freebsd-fr.org>
Approved by: Dan Langille <dan@langille.org> (maintainer), pgollucci (mentor, implicit)
Notes
Notes:
svn path=/head/; revision=262696
Diffstat (limited to 'databases/mantis')
-rw-r--r-- | databases/mantis/Makefile | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/databases/mantis/Makefile b/databases/mantis/Makefile index ece672d25a69..ae2e72eec32e 100644 --- a/databases/mantis/Makefile +++ b/databases/mantis/Makefile @@ -7,6 +7,7 @@ PORTNAME= mantis PORTVERSION= 1.2.3 +PORTREVISION= 1 CATEGORIES= databases www MASTER_SITES= SF/${PORTNAME}bt/${PORTNAME}-stable/${PORTVERSION} DISTNAME= mantisbt-${PORTVERSION} @@ -16,18 +17,15 @@ COMMENT= A bug tracking system written in PHP NO_BUILD= yes USE_MYSQL= yes -USE_PHP= pcre +USE_PHP= hash pcre session SUB_FILES= pkg-message -pre-everything:: - @${ECHO_CMD} ${DMSG} - do-install: @${ECHO} "Installing in WWWDIR: ${WWWDIR}" - ${MKDIR} ${WWWDIR} - ${CP} -R ${WRKSRC}/* ${WWWDIR} - ${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR} + ${MKDIR} ${WWWDIR}/ + ${CP} -R ${WRKSRC}/* ${WWWDIR}/ + ${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR}/ post-install: @${CAT} ${PKGMESSAGE} |