From owner-svn-ports-all@freebsd.org Wed Jan 3 16:59:28 2018 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 0B461EA4E79; Wed, 3 Jan 2018 16:59:28 +0000 (UTC) (envelope-from swills@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 C7AA67C32B; Wed, 3 Jan 2018 16:59:27 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w03GxQB5065974; Wed, 3 Jan 2018 16:59:26 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w03GxQ2i065971; Wed, 3 Jan 2018 16:59:26 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201801031659.w03GxQ2i065971@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Wed, 3 Jan 2018 16:59:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r457992 - in head/sysutils/pcapfix: . files X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: in head/sysutils/pcapfix: . files X-SVN-Commit-Revision: 457992 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.25 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, 03 Jan 2018 16:59:28 -0000 Author: swills Date: Wed Jan 3 16:59:26 2018 New Revision: 457992 URL: https://svnweb.freebsd.org/changeset/ports/457992 Log: sysutils/pcapfix: update to 1.1.1 PR: 224861 Submitted by: Vidar Karlsen (maintainer) Modified: head/sysutils/pcapfix/Makefile (contents, props changed) head/sysutils/pcapfix/distinfo (contents, props changed) head/sysutils/pcapfix/files/patch-Makefile (contents, props changed) Modified: head/sysutils/pcapfix/Makefile ============================================================================== --- head/sysutils/pcapfix/Makefile Wed Jan 3 16:46:55 2018 (r457991) +++ head/sysutils/pcapfix/Makefile Wed Jan 3 16:59:26 2018 (r457992) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= pcapfix -PORTVERSION= 1.1.0 +PORTVERSION= 1.1.1 DISTVERSIONPREFIX= v CATEGORIES= sysutils Modified: head/sysutils/pcapfix/distinfo ============================================================================== --- head/sysutils/pcapfix/distinfo Wed Jan 3 16:46:55 2018 (r457991) +++ head/sysutils/pcapfix/distinfo Wed Jan 3 16:59:26 2018 (r457992) @@ -1,3 +1,3 @@ -TIMESTAMP = 1487002745 -SHA256 (Rup0rt-pcapfix-v1.1.0_GH0.tar.gz) = c77cad858e85dd4509aa5a6a8019f8aba389aa95ae1edfbf7d7ea4c02bbfb238 -SIZE (Rup0rt-pcapfix-v1.1.0_GH0.tar.gz) = 40302 +TIMESTAMP = 1514981810 +SHA256 (Rup0rt-pcapfix-v1.1.1_GH0.tar.gz) = cbfdce1f9a1b3a7568ef16bf1d7d366c064d7cade1e4028080c45ee3a4cc66aa +SIZE (Rup0rt-pcapfix-v1.1.1_GH0.tar.gz) = 41824 Modified: head/sysutils/pcapfix/files/patch-Makefile ============================================================================== --- head/sysutils/pcapfix/files/patch-Makefile Wed Jan 3 16:46:55 2018 (r457991) +++ head/sysutils/pcapfix/files/patch-Makefile Wed Jan 3 16:59:26 2018 (r457992) @@ -1,8 +1,16 @@ ---- Makefile.orig 2014-08-31 08:08:24 UTC +--- Makefile.orig 2018-01-02 13:25:24 UTC +++ Makefile -@@ -10,13 +10,13 @@ CFLAGS += $(OPTFLAGS) $(WARNFLAGS) $(DEB - LDFLAGS += -Wl,-z,relro +@@ -8,20 +8,18 @@ WARNFLAGS = -Wall -Wextra -std=gnu99 -pe + DEBUGFLAGS = -g + CFLAGS += $(OPTFLAGS) $(WARNFLAGS) $(DEBUGFLAGS) + OS := $(shell uname) +-ifneq ($(OS), Darwin) +- LDFLAGS += -Wl,-z,relro +-endif ++LDFLAGS += -Wl,-z,relro + + all: pcap pcapng - gcc $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) pcapfix.c pcap.o pcapng.o -o pcapfix + ${CC} $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) pcapfix.c pcap.o pcapng.o -o pcapfix @@ -17,8 +25,3 @@ install: install -pDm755 pcapfix $(DESTDIR)$(BINDIR)/pcapfix -@@ -29,4 +29,3 @@ uninstall: - clean: - rm -f *.o - rm -f pcapfix --