Bug 169027 - [PATCH] net-mgmt/bsnmp-regex: update to 0.6
Summary: [PATCH] net-mgmt/bsnmp-regex: update to 0.6
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Kubilay Kocak
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-06-13 11:30 UTC by koobs
Modified: 2013-03-24 06:10 UTC (History)
1 user (show)

See Also:


Attachments
bsnmp-regex-0.6.patch (2.06 KB, patch)
2012-06-13 11:30 UTC, koobs
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description koobs 2012-06-13 11:30:05 UTC
- Update to 0.6
- Update pkg-desc (WWW)
- Add LICENSE
- Add CPPFLAGS to fix pcre preprocessor warning
- OPTIONSng'ify
- Add DEBUG knob

Port maintainer (brock@cotcomsol.com) is cc'd.

Generated with FreeBSD Port Tools 0.99_6 (mode: update, diff: ports)
Comment 1 Sylvio Cesar Teixeira freebsd_committer freebsd_triage 2012-06-13 12:14:20 UTC
Responsible Changed
From-To: freebsd-ports-bugs->sylvio

I'll take it.
Comment 2 kubilay.kocak 2012-08-29 09:57:53 UTC
Adding redports build log to push this along:

https://redports.org/buildarchive/20120813100537-58229/
Comment 3 Jason E. Hale freebsd_committer freebsd_triage 2012-10-16 13:33:08 UTC
Responsible Changed
From-To: sylvio->jhale

I'll take it.
Comment 4 Kubilay Kocak freebsd_committer freebsd_triage 2013-03-23 23:18:17 UTC
Responsible Changed
From-To: jhale->koobs

I'll take it.
Comment 5 dfilter service freebsd_committer freebsd_triage 2013-03-24 05:47:43 UTC
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 <bsd.port.options.mk>
 
+.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/
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 6 Kubilay Kocak freebsd_committer freebsd_triage 2013-03-24 06:10:15 UTC
State Changed
From-To: open->closed

Committed, with minor changes. Thanks!