# New ports collection makefile for: sgwi # Date created: 11 March 2008 # Whom: Lukasz Wasikowski # # $FreeBSD$ # PORTNAME= sgwi PORTVERSION= 1.1.2 CATEGORIES= mail www MASTER_SITES= http://www.vanheusden.com/sgwi/ DISTNAME= sqlgreywebinterface-${PORTVERSION} EXTRACT_SUFX= .tgz MAINTAINER= lukasz@wasikowski.net COMMENT= PHP web interface to SQLGrey LICENSE= GPLv2 NO_BUILD= yes SUB_FILES+= pkg-message pkg-install SUB_LIST= WWWOWN=${WWWOWN} WWWGRP=${WWWGRP} OPTIONS= MYSQL "MySQL back-end (use mysql PHP extension)" on OPTIONS+= PGSQL "PostgreSQL back-end (use pgsql PHP extension)" off .if !defined(WITHOUT_MYSQL) USE_PHP+= mysql .endif .if defined(WITH_PGSQL) USE_PHP+= pgsql .endif .if defined(WITHOUT_MYSQL) && !defined(WITH_PGSQL) IGNORE= needs at least one database back-end .endif WANT_PHP_WEB= yes post-patch: ${FIND} ${WRKSRC} -name '*.orig' -delete do-install: @[ ! -f ${WRKSRC}/.htpasswd ] || ${MV} ${WRKSRC}/.htpasswd ${WRKSRC}/.htpasswd.sample @[ ! -f ${WRKSRC}/.htaccess ] || ${MV} ${WRKSRC}/.htaccess ${WRKSRC}/.htaccess.sample @[ ! -f ${WRKSRC}/includes/config.inc.php ] || ${MV} ${WRKSRC}/includes/config.inc.php ${WRKSRC}/includes/config.inc.php.sample @${MKDIR} ${WWWDIR} @${MKDIR} ${WWWDIR}/includes @${INSTALL_DATA} ${WRKSRC}/*.php ${WWWDIR} @${INSTALL_DATA} ${WRKSRC}/*.txt ${WWWDIR} @${INSTALL_DATA} ${WRKSRC}/*.css ${WWWDIR} @${INSTALL_DATA} ${WRKSRC}/.ht* ${WWWDIR} @${INSTALL_DATA} ${WRKSRC}/includes/*.sample ${WWWDIR}/includes/ @${INSTALL_DATA} ${WRKSRC}/includes/*.php ${WWWDIR}/includes/ @if [ -f ${WWWDIR}/config.inc.php ]; then \ ${MV} ${WWWDIR}/config.inc.php ${WWWDIR}/includes/config.inc.php; \ fi @[ -f ${WWWDIR}/includes/config.inc.php ] || \ ${CP} ${WWWDIR}/includes/config.inc.php.sample ${WWWDIR}/includes/config.inc.php @[ -f ${WWWDIR}/.htpasswd ] || \ ${CP} ${WWWDIR}/.htpasswd.sample ${WWWDIR}/.htpasswd @[ -f ${WWWDIR}/.htaccess ] || \ ${CP} ${WWWDIR}/.htaccess.sample ${WWWDIR}/.htaccess post-install: @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR}/ @${CHOWN} root ${WWWDIR}/.ht* ${WWWDIR}/includes/config.inc.php* @${CHMOD} -R 0640 ${WWWDIR}/*.php ${WWWDIR}/*.txt ${WWWDIR}/*.css ${WWWDIR}/.ht* ${WWWDIR}/includes/*.php ${WWWDIR}/includes/*.sample @${CAT} ${PKGMESSAGE} .include