diff options
author | sunpoet <sunpoet@FreeBSD.org> | 2010-10-10 00:55:56 +0800 |
---|---|---|
committer | sunpoet <sunpoet@FreeBSD.org> | 2010-10-10 00:55:56 +0800 |
commit | 597150f74b2fd2cb0a77a7678c74c25d4cae78c0 (patch) | |
tree | 15c33a1d0d54e9d1928e0aeab41774b4375d93f6 /databases | |
parent | a49f29b9d15976a56f1eb016a9d256ce971a80a6 (diff) | |
download | freebsd-ports-gnome-597150f74b2fd2cb0a77a7678c74c25d4cae78c0.tar.gz freebsd-ports-gnome-597150f74b2fd2cb0a77a7678c74c25d4cae78c0.tar.zst freebsd-ports-gnome-597150f74b2fd2cb0a77a7678c74c25d4cae78c0.zip |
- 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)
Diffstat (limited to 'databases')
-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} |