From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Apr 18 23:10:03 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 835D91065673 for ; Wed, 18 Apr 2012 23:10:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5A12E8FC16 for ; Wed, 18 Apr 2012 23:10:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q3INA3wp082349 for ; Wed, 18 Apr 2012 23:10:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q3INA3GJ082348; Wed, 18 Apr 2012 23:10:03 GMT (envelope-from gnats) Resent-Date: Wed, 18 Apr 2012 23:10:03 GMT Resent-Message-Id: <201204182310.q3INA3GJ082348@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Matthew Luckie Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D6B6C106566C for ; Wed, 18 Apr 2012 23:06:55 +0000 (UTC) (envelope-from mjl@caida.org) Received: from caida.org (rommie.caida.org [192.172.226.78]) by mx1.freebsd.org (Postfix) with ESMTP id BC1F88FC0C for ; Wed, 18 Apr 2012 23:06:55 +0000 (UTC) Received: from sorcerer.caida.org (sorcerer.caida.org [192.172.226.95]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by caida.org (Postfix) with ESMTP id 34291B9CA for ; Wed, 18 Apr 2012 16:06:55 -0700 (PDT) Received: from mjl by sorcerer.caida.org with local (Exim 4.77 (FreeBSD)) (envelope-from ) id 1SKdxf-0005la-4R for FreeBSD-gnats-submit@freebsd.org; Wed, 18 Apr 2012 16:06:55 -0700 Message-Id: Date: Wed, 18 Apr 2012 16:06:55 -0700 From: Matthew Luckie Sender: Matthew Luckie To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/167082: [patch] update net/libbgpdump to 1.4.99.13 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Matthew Luckie List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Apr 2012 23:10:03 -0000 >Number: 167082 >Category: ports >Synopsis: [patch] update net/libbgpdump to 1.4.99.13 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Wed Apr 18 23:10:02 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Matthew Luckie >Release: FreeBSD 9.0-RELEASE i386 >Organization: >Environment: System: FreeBSD sorcerer.caida.org 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:15:25 UTC 2012 root@obrian.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: Take maintainer. Update libbgpdump to a more recent version. The only material change in the libbgpdump code is an updated configure script which is not relevant to FreeBSD. Don't install header files only used to build the library. Install doc and example. >How-To-Repeat: N/A >Fix: --- patch-libbgpdump begins here --- diff -uNr libbgpdump/Makefile libbgpdump-new/Makefile --- libbgpdump/Makefile 2011-09-01 17:31:04.000000000 -0700 +++ libbgpdump-new/Makefile 2012-04-18 15:59:52.000000000 -0700 @@ -7,11 +7,12 @@ # PORTNAME= libbgpdump -PORTVERSION= 1.4.99.12 +PORTVERSION= 1.4.99.13 CATEGORIES= net MASTER_SITES= http://www.ris.ripe.net/source/bgpdump/ +EXTRACT_SUFX= .tgz -MAINTAINER= ports@FreeBSD.org +MAINTAINER= mjl@luckie.org.nz COMMENT= Analyzing dump files produced by Zebra/Quagga or MRT LICENSE= GPLv2 @@ -22,6 +23,18 @@ do-install: @${INSTALL_PROGRAM} ${WRKSRC}/bgpdump ${PREFIX}/bin @${INSTALL_DATA} ${WRKSRC}/libbgpdump.* ${PREFIX}/lib - @${INSTALL_DATA} ${WRKSRC}/*.h ${PREFIX}/include + @${INSTALL_DATA} ${WRKSRC}/bgpdump_attr.h ${PREFIX}/include + @${INSTALL_DATA} ${WRKSRC}/bgpdump_formats.h ${PREFIX}/include + @${INSTALL_DATA} ${WRKSRC}/bgpdump_lib.h ${PREFIX}/include + +post-install: +.if !defined(NOPORTDOCS) + ${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} +.endif +.if !defined(NOPORTEXAMPLES) + ${MKDIR} ${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/example.c ${EXAMPLESDIR} +.endif .include diff -uNr libbgpdump/distinfo libbgpdump-new/distinfo --- libbgpdump/distinfo 2011-09-01 17:31:04.000000000 -0700 +++ libbgpdump-new/distinfo 2012-04-18 15:25:52.000000000 -0700 @@ -1,2 +1,2 @@ -SHA256 (libbgpdump-1.4.99.12.tar.gz) = aebe46f124144fea733cc0870daa535968222fe9b19359cfa143d8fe865a52a2 -SIZE (libbgpdump-1.4.99.12.tar.gz) = 81052 +SHA256 (libbgpdump-1.4.99.13.tgz) = 7551a285fa5c0885aec7290e1f316e58968baab70a4f3467f8f70868d338311e +SIZE (libbgpdump-1.4.99.13.tgz) = 84083 diff -uNr libbgpdump/pkg-plist libbgpdump-new/pkg-plist --- libbgpdump/pkg-plist 2011-09-01 17:31:04.000000000 -0700 +++ libbgpdump-new/pkg-plist 2012-04-18 16:01:30.000000000 -0700 @@ -1,10 +1,10 @@ bin/bgpdump lib/libbgpdump.a lib/libbgpdump.so -include/bgpdump-config.h -include/util.h include/bgpdump_attr.h include/bgpdump_formats.h include/bgpdump_lib.h -include/bgpdump_mstream.h -include/cfile_tools.h +%%PORTDOCS%%%%DOCSDIR%%/README +%%PORTDOCS%%%%EXAMPLESDIR%%/example.c +%%PORTDOCS%%@dirrm %%DOCSDIR%% +%%PORTDOCS%%@dirrm %%EXAMPLESDIR%% --- patch-libbgpdump ends here --- >Release-Note: >Audit-Trail: >Unformatted: