29 lines
720 B
Makefile
29 lines
720 B
Makefile
# Created by: Gerrit Beine <tux@pinguru.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= phprojekt
|
|
PORTVERSION= 6.0.5
|
|
CATEGORIES= deskutils www
|
|
MASTER_SITES= http://www.phprojekt.com/downloads/
|
|
DISTNAME= ${PORTNAME}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= An open source groupware suite
|
|
|
|
USE_PHP= session imap mysql
|
|
WANT_PHP_WEB= yes
|
|
|
|
NO_BUILD= yes
|
|
|
|
NO_STAGE= yes
|
|
do-install:
|
|
@${CP} -r ${WRKSRC} ${PREFIX}/www/${PORTNAME}
|
|
@${CHOWN} -R ${WWWOWN}:${WWWGRP} ${PREFIX}/www/${PORTNAME}
|
|
|
|
post-install:
|
|
@${FIND} ${WRKSRC}/${file} -not -type d \
|
|
| ${SED} -ne 's,^${WRKSRC},www/${PORTNAME},p' >> ${TMPPLIST}
|
|
@${FIND} -d ${WRKSRC}/${file} -type d \
|
|
| ${SED} -ne 's,^${WRKSRC},@dirrm www/${PORTNAME},p' >> ${TMPPLIST}
|
|
|
|
.include <bsd.port.mk>
|