1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-27 05:10:36 +00:00
freebsd-ports/net-mgmt/netams-front/Makefile
Martin Wilke 1543d98ef3 NetAms Front - is an alternative to builtin web interface for NeTAMS software.
One of the main advantages of this interface is use of PHP for generation of
dynamic page allowing highly configurable web statistic available for system
administrator with NeTAMS.

Features:

- View traffic for all the configured networks and peers

- Manage accounting policies with web interface

- Manage NeTAMS peers: clusters, networks, groups, hosts and users with web
  interface

- NeTAMS database service

WWW: http://netams.it2k.ru

PR:		ports/134426
Submitted by:	Alexey V. Degtyarev
2009-05-10 22:36:07 +00:00

53 lines
1.3 KiB
Makefile

# New ports collection makefile for: netams-front
# Date created: Sun 10 May 2009
# Whom: Alexey V. Degtyarev
#
# $FreeBSD$
#
PORTNAME= netams-front
PORTVERSION= 0.4
CATEGORIES= net-mgmt www
MASTER_SITES= ftp://ftp.renatasystems.org/pub/FreeBSD/ports/distfiles/
MAINTAINER= alexey@renatasystems.org
COMMENT= PHP-based web interface for NeTAMS software
NO_BUILD= yes
USE_MYSQL= yes
WANT_PHP_WEB= yes
USE_PHP= mysql pcre
SUB_FILES= pkg-message
# This target is only meant to be used by the port maintainer.
x-generate-plist: build
cd ${WRKSRC}/www; \
${FIND} . ! -type d ! -name '*.orig' | ${SORT} | \
${SED} -e "s,^\.,%%WWWDIR%%," >${.CURDIR}/pkg-plist.tmp ; \
${FIND} . -type d | ${SORT} -r | ${SED} \
-e "s,^\.$$,@dirrmtry %%WWWDIR%%," \
-e "s,^\.,@dirrm %%WWWDIR%%," >>${.CURDIR}/pkg-plist.tmp
do-install:
@cd ${WRKSRC}/www; \
for src in $$( ${FIND} . ! -name '*.orig' -a \
! -name 'config.php.simple' ) ; do \
dst=${WWWDIR}$${src#.} ; \
if ${TEST} -d $$src ; then \
${MKDIR} $$dst ; \
else \
${INSTALL_DATA} $$src $$dst ; \
fi \
done
@${MKDIR} ${EXAMPLESDIR}
@${INSTALL_DATA} ${WRKSRC}/www/config.php.simple \
${EXAMPLESDIR}/config.php
@if ! ${TEST} -f ${WWWDIR}/config.php; then \
${INSTALL_DATA} ${WRKSRC}/www/config.php.simple \
${WWWDIR}/config.php; \
fi
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>