mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-21 00:25:50 +00:00
76c7f8fbe6
minor COMMENT typos and surrounding whitespace fixes. Categories D-F. CR: D196 Approved by: portmgr (bapt)
56 lines
1.1 KiB
Makefile
56 lines
1.1 KiB
Makefile
# Created by: gahr
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= cdash
|
|
PORTVERSION= 2.0.2
|
|
PORTREVISION= 1
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://www.cdash.org/download/
|
|
DISTNAME= CDash-${PORTVERSION}
|
|
|
|
MAINTAINER= gahr@FreeBSD.org
|
|
COMMENT= Web-based software testing server
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
|
|
OPTIONS_MULTI= DB
|
|
OPTIONS_MULTI_DB= MYSQL PGSQL
|
|
OPTIONS_DEFAULT=MYSQL
|
|
|
|
USES= cmake:outsource zip
|
|
CMAKE_ARGS+= -DCDASH_DB_NAME:STRING=cdash \
|
|
-DCDASH_DB_LOGIN:STRING=cdash \
|
|
-DCDASH_DB_TYPE:STRING=${DB_TYPE}
|
|
USE_PHP= curl gd xsl
|
|
|
|
WRKSRC= ${WRKDIR}/${DISTNAME:S/./-/g}
|
|
SUB_FILES= pkg-message
|
|
SUB_LIST+= DB_TYPE=${DB_TYPE}
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MMYSQL}
|
|
USE_MYSQL= yes
|
|
USE_PHP+= mysql
|
|
DB_TYPE= mysql
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MPGSQL}
|
|
USE_PGSQL= yes
|
|
USE_PHP+= pgsql
|
|
DB_TYPE= pgsql
|
|
.endif
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/www/CDash
|
|
${RM} -f ${WRKSRC}/CMakeLists.txt.orig
|
|
cd ${WRKSRC} && ${COPYTREE_SHARE} \* ${STAGEDIR}${PREFIX}/www/CDash
|
|
${CHOWN} www ${STAGEDIR}${PREFIX}/www/CDash/backup ${STAGEDIR}${PREFIX}/www/CDash/rss
|
|
|
|
post-install:
|
|
@${ECHO}
|
|
@${CAT} ${PKGMESSAGE}
|
|
@${ECHO}
|
|
|
|
.include <bsd.port.mk>
|