6cd965adcf
Weathermap is a network visualisation tool, to take data you already have and show you an overview of your network in map form. Extensive customisation features and an optional map editor are provided. Support is built in for RRD, MRTG (RRD and old log-format), and tab-delimited text files. Other sources are via plugins or external scripts. Weathermap can also be integrated with Cacti.
47 lines
927 B
Makefile
47 lines
927 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2009/11/11 21:10:33 sthen Exp $
|
|
|
|
COMMENT= graphical network traffic map
|
|
|
|
DISTNAME= php-weathermap-0.96a
|
|
EXTRACT_SUFX= .zip
|
|
|
|
CATEGORIES= net www
|
|
|
|
HOMEPAGE= http://www.network-weathermap.com/
|
|
|
|
MAINTAINER= Stuart Henderson <sthen@openbsd.org>
|
|
|
|
# GPLv2
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${HOMEPAGE}files/
|
|
|
|
RUN_DEPENDS= :pear-*:www/pear \
|
|
:php5-gd-*:www/php5/extensions,-gd \
|
|
:php5-core-*:www/php5/core
|
|
|
|
NO_REGRESS= Yes
|
|
|
|
PKG_ARCH= *
|
|
WRKDIST= ${WRKDIR}/weathermap
|
|
|
|
PREFIX= /var/www
|
|
INSTDIR= ${PREFIX}/weathermap
|
|
SUBST_VARS= INSTDIR
|
|
|
|
do-build:
|
|
chmod 644 ${WRKSRC}/editor.*
|
|
.for i in weathermap.conf configs/simple.conf
|
|
mv ${WRKSRC}/$i ${WRKSRC}/$i-dist
|
|
.endfor
|
|
|
|
do-install:
|
|
${INSTALL_DATA_DIR} ${INSTDIR}
|
|
cd ${WRKSRC}; pax -rw * ${INSTDIR}
|
|
chown -R ${SHAREOWN}:${SHAREGRP} ${INSTDIR}
|
|
|
|
.include <bsd.port.mk>
|