blob: 49dbb3cbeb76f8d3a0939c3c2785b8ed9e2a86bc (
plain) (
blame)
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
# New ports collection makefile for: sgwi
# Date created: 11 March 2008
# Whom: Lukasz Wasikowski <lukasz@wasikowski.net>
#
# $FreeBSD$
#
PORTNAME= sgwi
PORTVERSION= 1.1.5
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 <bsd.port.mk>
|