From owner-svn-ports-all@freebsd.org Wed Jul 26 22:31:38 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A5A77DB2246; Wed, 26 Jul 2017 22:31:38 +0000 (UTC) (envelope-from lme@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7356B7DCEA; Wed, 26 Jul 2017 22:31:38 +0000 (UTC) (envelope-from lme@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v6QMVbTK020725; Wed, 26 Jul 2017 22:31:37 GMT (envelope-from lme@FreeBSD.org) Received: (from lme@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v6QMVbB3020720; Wed, 26 Jul 2017 22:31:37 GMT (envelope-from lme@FreeBSD.org) Message-Id: <201707262231.v6QMVbB3020720@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lme set sender to lme@FreeBSD.org using -f From: Lars Engels Date: Wed, 26 Jul 2017 22:31:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r446700 - in head/net-mgmt: . icingaweb2-module-map X-SVN-Group: ports-head X-SVN-Commit-Author: lme X-SVN-Commit-Paths: in head/net-mgmt: . icingaweb2-module-map X-SVN-Commit-Revision: 446700 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Jul 2017 22:31:38 -0000 Author: lme Date: Wed Jul 26 22:31:37 2017 New Revision: 446700 URL: https://svnweb.freebsd.org/changeset/ports/446700 Log: Add net-mgmt/icingaweb2-module-map The Icinga Web 2 Module Map displays hosts and their status on OpenStreetMap using http://leafletjs.com/ WWW: https://github.com/nbuchwitz/icingaweb2-module-map Added: head/net-mgmt/icingaweb2-module-map/ head/net-mgmt/icingaweb2-module-map/Makefile (contents, props changed) head/net-mgmt/icingaweb2-module-map/distinfo (contents, props changed) head/net-mgmt/icingaweb2-module-map/pkg-descr (contents, props changed) head/net-mgmt/icingaweb2-module-map/pkg-plist (contents, props changed) Modified: head/net-mgmt/Makefile Modified: head/net-mgmt/Makefile ============================================================================== --- head/net-mgmt/Makefile Wed Jul 26 21:44:37 2017 (r446699) +++ head/net-mgmt/Makefile Wed Jul 26 22:31:37 2017 (r446700) @@ -89,6 +89,7 @@ SUBDIR += icingaweb2-module-cube SUBDIR += icingaweb2-module-director SUBDIR += icingaweb2-module-generictts + SUBDIR += icingaweb2-module-map SUBDIR += icli SUBDIR += icmpmonitor SUBDIR += icmpquery Added: head/net-mgmt/icingaweb2-module-map/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/icingaweb2-module-map/Makefile Wed Jul 26 22:31:37 2017 (r446700) @@ -0,0 +1,28 @@ +# $FreeBSD$ + +PORTNAME= icingaweb2-module-map +PORTVERSION= 0.0.1.20170717 +CATEGORIES= net-mgmt www + +MAINTAINER= lme@FreeBSD.org +COMMENT= Display hosts on OpenStreetMap + +LICENSE= GPLv2 + +RUN_DEPENDS= icingaweb2>=2.4.1:net-mgmt/icingaweb2 + +USE_GITHUB= yes +GH_ACCOUNT= nbuchwitz +GH_TAGNAME= 8323484 + +NO_BUILD= yes +NO_ARCH= yes + +WWWDIR?= ${PREFIX}/www/icingaweb2/modules/${PORTNAME:C/^.*-//} + +do-install: + @${MKDIR} ${STAGEDIR}${WWWDIR} + (cd ${WRKSRC} && \ + ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR}) + +.include Added: head/net-mgmt/icingaweb2-module-map/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/icingaweb2-module-map/distinfo Wed Jul 26 22:31:37 2017 (r446700) @@ -0,0 +1,3 @@ +TIMESTAMP = 1501107787 +SHA256 (nbuchwitz-icingaweb2-module-map-0.0.1.20170717-8323484_GH0.tar.gz) = 640156252961419fe6379dec2343227c6d3d533aad5229f60002187490320273 +SIZE (nbuchwitz-icingaweb2-module-map-0.0.1.20170717-8323484_GH0.tar.gz) = 1187340 Added: head/net-mgmt/icingaweb2-module-map/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/icingaweb2-module-map/pkg-descr Wed Jul 26 22:31:37 2017 (r446700) @@ -0,0 +1,4 @@ +The Icinga Web 2 Module Map displays hosts and their status on +OpenStreetMap using http://leafletjs.com/ + +WWW: https://github.com/nbuchwitz/icingaweb2-module-map Added: head/net-mgmt/icingaweb2-module-map/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/icingaweb2-module-map/pkg-plist Wed Jul 26 22:31:37 2017 (r446700) @@ -0,0 +1,34 @@ +%%WWWDIR%%/README.md +%%WWWDIR%%/application/controllers/ConfigController.php +%%WWWDIR%%/application/controllers/DataController.php +%%WWWDIR%%/application/controllers/IndexController.php +%%WWWDIR%%/application/controllers/MapdataController.php +%%WWWDIR%%/application/forms/Config/GeneralConfigForm.php +%%WWWDIR%%/application/views/scripts/config/index.phtml +%%WWWDIR%%/application/views/scripts/index/index.phtml +%%WWWDIR%%/configuration.php +%%WWWDIR%%/module.info +%%WWWDIR%%/public/css/module.less +%%WWWDIR%%/public/css/third-party/MarkerCluster.Default.css +%%WWWDIR%%/public/css/third-party/MarkerCluster.css +%%WWWDIR%%/public/css/third-party/leaflet.css +%%WWWDIR%%/public/img/layers-2x.png +%%WWWDIR%%/public/img/layers.png +%%WWWDIR%%/public/img/marker-icon-blue.png +%%WWWDIR%%/public/img/marker-icon-green.png +%%WWWDIR%%/public/img/marker-icon-grey.png +%%WWWDIR%%/public/img/marker-icon-orange.png +%%WWWDIR%%/public/img/marker-icon-red.png +%%WWWDIR%%/public/img/marker-icon-violet.png +%%WWWDIR%%/public/img/marker-icon-yellow.png +%%WWWDIR%%/public/img/marker-icon.png +%%WWWDIR%%/public/img/marker-shadow.png +%%WWWDIR%%/public/js/icons.js +%%WWWDIR%%/public/js/module.js +%%WWWDIR%%/public/js/third-party/leaflet.js +%%WWWDIR%%/public/js/third-party/leaflet.markercluster.js +%%WWWDIR%%/screenshots/clustered-map.png +%%WWWDIR%%/screenshots/clustered-map2.png +%%WWWDIR%%/screenshots/configuration-tab.png +%%WWWDIR%%/screenshots/detailed-map.png +%%WWWDIR%%/screenshots/host-detail.png