From owner-svn-ports-head@FreeBSD.ORG Sun Mar 24 05:47:36 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 908DB9DC; Sun, 24 Mar 2013 05:47:36 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 755AB11F; Sun, 24 Mar 2013 05:47:36 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r2O5lamf043538; Sun, 24 Mar 2013 05:47:36 GMT (envelope-from koobs@svn.freebsd.org) Received: (from koobs@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r2O5lZKv043535; Sun, 24 Mar 2013 05:47:35 GMT (envelope-from koobs@svn.freebsd.org) Message-Id: <201303240547.r2O5lZKv043535@svn.freebsd.org> From: Kubilay Kocak Date: Sun, 24 Mar 2013 05:47:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r315101 - head/net-mgmt/bsnmp-regex X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Mar 2013 05:47:36 -0000 Author: koobs Date: Sun Mar 24 05:47:35 2013 New Revision: 315101 URL: http://svnweb.freebsd.org/changeset/ports/315101 Log: - Update to 0.6 - Take maintainership - Add LICENSE - Add CPPFLAGS to fix pcre preprocessor warning - Add DEBUG OPTION - Update WWW: and Tab->space in pkg-descr - Update COMMENT according to standards - Remove ABI version from pcre LIB_DEPENDS PR: ports/169027 Approved by: rm (mentor) Modified: head/net-mgmt/bsnmp-regex/Makefile (contents, props changed) head/net-mgmt/bsnmp-regex/distinfo (contents, props changed) head/net-mgmt/bsnmp-regex/pkg-descr (contents, props changed) Modified: head/net-mgmt/bsnmp-regex/Makefile ============================================================================== --- head/net-mgmt/bsnmp-regex/Makefile Sun Mar 24 05:34:07 2013 (r315100) +++ head/net-mgmt/bsnmp-regex/Makefile Sun Mar 24 05:47:35 2013 (r315101) @@ -2,23 +2,31 @@ # $FreeBSD$ PORTNAME= bsnmp-regex -PORTVERSION= 0.5 -PORTREVISION= 2 +PORTVERSION= 0.6 CATEGORIES= net-mgmt -MASTER_SITES= http://memberwebs.com/stef/software/bsnmp-regex/ +MASTER_SITES= http://thewalter.net/stef/software/bsnmp-regex/ -MAINTAINER= ports@FreeBSD.org -COMMENT= A bsnmpd module allowing creation of counters from log files +MAINTAINER= koobs@FreeBSD.org +COMMENT= bsnmpd module allowing creation of counters from log files + +LICENSE= BSD GNU_CONFIGURE= yes +CPPFLAGS+= "-I${LOCALBASE}/include" -OPTIONS_DEFINE= PCRE +OPTIONS_DEFINE= DEBUG PCRE PCRE_DESC= Use PCRE instead of the default regex library .include +.if ${PORT_OPTIONS:MDEBUG} +CONFIGURE_ARGS+=--enable-debug +.else +CONFIGURE_ARGS+=--disable-debug +.endif + .if ${PORT_OPTIONS:MPCRE} -LIB_DEPENDS+= pcre.3:${PORTSDIR}/devel/pcre +LIB_DEPENDS+= pcre:${PORTSDIR}/devel/pcre CONFIGURE_ARGS+= --enable-pcre .else CONFIGURE_ARGS+= --disable-pcre Modified: head/net-mgmt/bsnmp-regex/distinfo ============================================================================== --- head/net-mgmt/bsnmp-regex/distinfo Sun Mar 24 05:34:07 2013 (r315100) +++ head/net-mgmt/bsnmp-regex/distinfo Sun Mar 24 05:47:35 2013 (r315101) @@ -1,2 +1,2 @@ -SHA256 (bsnmp-regex-0.5.tar.gz) = fefebcb5412c22f7f18cd81177b91310481d3e8d553caf42b9cbf60a0d79cd4f -SIZE (bsnmp-regex-0.5.tar.gz) = 293547 +SHA256 (bsnmp-regex-0.6.tar.gz) = 5e0ac1112a62c40719e031c04061f5154e5f43d2d6515c4987e774b34ea146bc +SIZE (bsnmp-regex-0.6.tar.gz) = 326579 Modified: head/net-mgmt/bsnmp-regex/pkg-descr ============================================================================== --- head/net-mgmt/bsnmp-regex/pkg-descr Sun Mar 24 05:34:07 2013 (r315100) +++ head/net-mgmt/bsnmp-regex/pkg-descr Sun Mar 24 05:47:35 2013 (r315101) @@ -3,4 +3,4 @@ files, program output or other text data to count the number of matches, or parse out specific text/numbers. The resulting data can then be queried or graphed with the usual SNMP tools. -WWW: http://memberwebs.com/stef/software/bsnmp-regex/ +WWW: http://thewalter.net/stef/software/bsnmp-regex/