aboutsummaryrefslogtreecommitdiffstats
path: root/sysutils/ganglia-webfrontend/Makefile
blob: 5149e5d06c3db79d5bdc4f31327bcbc51b4d21d5 (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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# Ports collection makefile for:    ganglia-webfrontend
# Date created:             Thu Fed 20, 2003
# Whom:                 Brooks Davis <brooks@freebsd.org>
#
# $FreeBSD$
#

PORTNAME=   ganglia-webfrontend
PORTVERSION=    2.5.5
CATEGORIES= sysutils net parallel www
MASTER_SITES=   ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ganglia

MAINTAINER= brooks@FreeBSD.org
COMMENT=    "Ganglia cluster monitor, web frontend"

RUN_DEPENDS+=   ${LOCALBASE}/sbin/gmetad:${PORTSDIR}/sysutils/ganglia-monitor-core

PKGMESSAGE= ${WRKDIR}/pkg-message
PLIST_SUB+= WEBFRONTDIR="${WEBFRONTDIR}"
NO_BUILD=   yes
USE_REINPLACE=  yes
USE_PHP=    yes
WANT_PHP_MOD=   yes

# The Ganglia Web Frontend port supports a number of options that may be
# tweaked at buildtime.  Perform a "make options" to see more
# information on these variables.
WEBFRONTDIR?=   www/ganglia
WWWOWN?=    www
WWWGRP?=    www

# Set custom variables:
#
PKGOPTS=    ${FILESDIR}/pkg-opts
EXCEPTFILES=    AUTHORS ChangeLog COPYING addons webfrontend.spec

pre-everything::
    @${ECHO} ""
    @${ECHO} "You have to configure PHP with GD support to allow "
    @${ECHO} "the Ganglia Webfrontend draw some standard graphs.
    @${ECHO} ""
    @${ECHO} "If you have already compiled PHP without GD,"
    @${ECHO} "press CTRL+C now and rebuild it before installing"
    @${ECHO} "the Ganglia Webfrontend."
    @${ECHO} ""

pre-patch:
    @${SED} -e 's|%%PREFIX%%|${PREFIX}|g' \
        -e 's|%%WEBFRONTDIR%%|${WEBFRONTDIR}|g' \
        ${.CURDIR}/pkg-message > ${PKGMESSAGE}

options:
    @ ${ECHO_MSG} "===>  Build options for ${PKGNAME}:"
    @ ${CAT} ${PKGOPTS}

post-extract:
.if !defined(BATCH)
    @ ${TEST} -r ${PKGOPTS} && \
        (${ECHO_MSG} '-------------------------------------------------------------------------'; \
         ${ECHO_MSG} 'Perform a "make options" to see a list of available installation options.'; \
         ${ECHO_MSG} '-------------------------------------------------------------------------')
.endif

post-patch:
    @ ${REINPLACE_CMD} -e "s|%%PREFIX%%|${PREFIX}|g" ${WRKSRC}/conf.php

do-install:
    ${MKDIR} ${PREFIX}/${WEBFRONTDIR}
    ${MKDIR} -m 0775 ${PREFIX}/${WEBFRONTDIR}
    cd ${WRKSRC} && ${FIND} * \( -name conf.php\* \
        ${EXCEPTFILES:S/^/-o -name /} \) \
        -a -prune -o -print \
        | ${TAR} cTf - - | ${TAR} xUCf ${PREFIX}/${WEBFRONTDIR} -
    ${CHOWN} -R ${WWWOWN}:${WWWGRP} ${PREFIX}/${WEBFRONTDIR}
    ${INSTALL} -c -o ${WWWOWN} -g ${WWWGRP} \
        ${WRKSRC}/conf.php ${PREFIX}/${WEBFRONTDIR}/conf.php.sample
    @if [ ! -f ${PREFIX}/${WEBFRONTDIR}/conf.php ]; then \
        ${INSTALL} -c -o ${WWWOWN} -g ${WWWGRP} \
            ${WRKSRC}/conf.php ${PREFIX}/${WEBFRONTDIR} ;\
    fi

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

.include <bsd.port.mk>