blob: 09b67b3daee0419fe295cdd703a59ac19654bbe7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# Created by: Lars Eggert <lars.eggert@gmx.net>
# $FreeBSD$
PORTNAME= crp
PORTVERSION= 20031012
PORTREVISION= 1
CATEGORIES= www science
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/Oct-12-2003
DISTNAME= CRP
EXTRACT_SUFX= .tgz
MAINTAINER= lars.eggert@gmx.net
COMMENT= Automates the process of being the program chair of a conference
USE_PHP= yes
WANT_PHP_WEB= yes
NO_BUILD= yes
PLIST_SUB= WWWOWN="${WWWOWN}" WWWGRP="${WWWGRP}"
SPOOLDIR?= /var/spool/conference
PKGMESSAGE= ${WRKDIR}/pkg-message
post-patch:
@${SED} -e 's|%%WWWDIR%%|${WWWDIR}|g; s|%%DISTNAME%%|${DISTNAME}|g' \
${MASTERDIR}/pkg-message > ${PKGMESSAGE}
do-install:
@${MKDIR} -m 755 ${STAGEDIR}${WWWDIR} ${STAGEDIR}${SPOOLDIR}
@${CP} -R ${WRKSRC}/ ${STAGEDIR}${WWWDIR}/
@${SED} -e 's#/var/www/html#${WWWDIR}#' \
${WRKSRC}/Code/confHeader.inc > ${STAGEDIR}${WWWDIR}/Code/confHeader.inc
.include <bsd.port.mk>
|