From owner-svn-ports-branches@freebsd.org Thu Jul 30 14:30:13 2015 Return-Path: Delivered-To: svn-ports-branches@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 04C779AF425; Thu, 30 Jul 2015 14:30:13 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 E8705167; Thu, 30 Jul 2015 14:30:12 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.14.9/8.14.9) with ESMTP id t6UEUClv067686; Thu, 30 Jul 2015 14:30:12 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.14.9/8.14.9/Submit) id t6UEUBdB067679; Thu, 30 Jul 2015 14:30:11 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201507301430.t6UEUBdB067679@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 30 Jul 2015 14:30:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r393247 - in branches/2015Q3/net-mgmt: pandorafms_agent pandorafms_console pandorafms_server X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 30 Jul 2015 14:30:13 -0000 Author: amdmi3 Date: Thu Jul 30 14:30:10 2015 New Revision: 393247 URL: https://svnweb.freebsd.org/changeset/ports/393247 Log: MFH: r393246 - Fix shebangs Approved by: portmgr blanket Approved by: ports-secteam (shebang fix blanket) Modified: branches/2015Q3/net-mgmt/pandorafms_agent/Makefile branches/2015Q3/net-mgmt/pandorafms_console/Makefile branches/2015Q3/net-mgmt/pandorafms_server/Makefile branches/2015Q3/net-mgmt/pandorafms_server/bsd.pandora.mk Directory Properties: branches/2015Q3/ (props changed) Modified: branches/2015Q3/net-mgmt/pandorafms_agent/Makefile ============================================================================== --- branches/2015Q3/net-mgmt/pandorafms_agent/Makefile Thu Jul 30 14:22:00 2015 (r393246) +++ branches/2015Q3/net-mgmt/pandorafms_agent/Makefile Thu Jul 30 14:30:10 2015 (r393247) @@ -14,7 +14,8 @@ OPTIONS_DEFINE= DOCS TENTACLE_SERVER OPTIONS_DEFAULT= DOCS TENTACLE_SERVER TENTACLE_SERVER_DESC= Install tentalce_server -USES= perl5 +USES= perl5 shebangfix +SHEBANG_FILES= plugins/pandora_netusage SUB_FILES= pkg-message Modified: branches/2015Q3/net-mgmt/pandorafms_console/Makefile ============================================================================== --- branches/2015Q3/net-mgmt/pandorafms_console/Makefile Thu Jul 30 14:22:00 2015 (r393246) +++ branches/2015Q3/net-mgmt/pandorafms_console/Makefile Thu Jul 30 14:30:10 2015 (r393247) @@ -12,6 +12,16 @@ LICENSE_FILE= ${PANDORA_LICENSE_FILE} RUN_DEPENDS= ${LOCALBASE}/bin/twopi:${PORTSDIR}/graphics/graphviz +USES= shebangfix +SHEBANG_FILES= include/languages/util-all \ + include/languages/util-bzr-update \ + include/languages/util-compile-mo \ + include/languages/util-create-po \ + include/languages/util-create-template \ + include/languages/util-generate-tarball \ + include/languages/util-update-po \ + pandora_console_upgrade + OPTIONS_DEFINE= DOCS PGSQL DOCS_DESC= Install AUTHORS and ChangeLog PGSQL_DESC= Use PostgreSQL backend (experimental) Modified: branches/2015Q3/net-mgmt/pandorafms_server/Makefile ============================================================================== --- branches/2015Q3/net-mgmt/pandorafms_server/Makefile Thu Jul 30 14:22:00 2015 (r393246) +++ branches/2015Q3/net-mgmt/pandorafms_server/Makefile Thu Jul 30 14:30:10 2015 (r393247) @@ -37,7 +37,28 @@ PGSQL_DESC= Use PostgreSQL backend (expe ORACLE_DESC= Use Oracle backend (experimental) EXTRAS_DESC= Extra dependencies for util scripts -USES= perl5 +USES= perl5 shebangfix +SHEBANG_FILES= FreeBSD/pandora_server \ + bin/pandora_server \ + util/integrity_check \ + util/pandora_backup.sh \ + util/pandora_count.sh \ + util/pandora_diagnostic.sh \ + util/pandora_remote_agent.sh \ + util/pandora_server \ + util/pandora_watchdog.sh \ + util/plugin/babel_plugin/babel_plugin.sh \ + util/plugin/create_integria_incident.sh \ + util/plugin/dns_plugin.sh \ + util/plugin/integria_plugin/integria_plugin.sh \ + util/plugin/mysql_plugin.sh \ + util/plugin/packet_loss.sh \ + util/plugin/ssh_pandoraplugin.sh \ + util/plugin/udp_nmap_plugin.sh \ + util/plugin/webcheck_plugin.sh \ + util/snmptrap_gen.sh \ + util/tentacle_serverd \ + util/trap_rate.sh USE_PERL5= build run SUB_LIST+= PERL="${PERL}" DATADIR="${DATADIR}" SUB_FILES= pkg-message Modified: branches/2015Q3/net-mgmt/pandorafms_server/bsd.pandora.mk ============================================================================== --- branches/2015Q3/net-mgmt/pandorafms_server/bsd.pandora.mk Thu Jul 30 14:22:00 2015 (r393246) +++ branches/2015Q3/net-mgmt/pandorafms_server/bsd.pandora.mk Thu Jul 30 14:30:10 2015 (r393247) @@ -13,6 +13,7 @@ PANDORA_INSTALLER= ${PORTNAME}_installer PANDORA_INSTALLER_ARGS= --install PORTVERSION= ${PANDORA_VERSION:C/SP/./} +PORTREVISION= 1 MASTER_SITES?= SF/pandora/Pandora%20FMS%20${PANDORA_VERSION:C/(SP[0-9]*)/\/\1/}Final/Tarball .if ${PORTNAME} == "pandora_agent"