# New ports collection Makefile for:	cdash
# Date created:				12 August 2011
# Whom:					gahr
#
# $FreeBSD: ports/devel/cdash/Makefile,v 1.3 2012/03/02 15:27:17 gahr Exp $
#

PORTNAME=	cdash
PORTVERSION=	2.0.2
CATEGORIES=	devel
MASTER_SITES=	http://www.cdash.org/download/
DISTNAME=	CDash-${PORTVERSION}

MAINTAINER=	gahr@FreeBSD.org
COMMENT=	A web-based software testing server

LICENSE=	BSD

OPTIONS=	MYSQL	"Use MySQL" on \
		PGSQL	"Use PostgreSQL" off

USE_ZIP=	yes
USE_CMAKE=	yes
CMAKE_OUTSOURCE=yes
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 (!defined(WITH_MYSQL) && !defined(WITH_PGSQL)) || (defined(WITH_MYSQL) && defined(WITH_PGSQL))
IGNORE=		please run 'make config' and select either MYSQL or PGSQL, but not both
.endif

.if defined(WITH_MYSQL)
#USE_MYSQL=	yes
#USE_PHP+=	mysql
DB_TYPE=	mysql
.endif

.if defined(WITH_PGSQL)
#USE_PGSQL=	yes
#USE_PHP+=	pgsql
DB_TYPE=	pgsql
.endif

do-install:
	${MKDIR} ${PREFIX}/www/CDash
	${RM} -f ${WRKSRC}/CMakeLists.txt.orig
	cd ${WRKSRC} && ${COPYTREE_SHARE} \* ${PREFIX}/www/CDash
	${CHOWN} www ${PREFIX}/www/CDash/backup ${PREFIX}/www/CDash/rss

post-install:
	@${ECHO}
	@${CAT} ${PKGMESSAGE}
	@${ECHO}

.include <bsd.port.mk>
