diff options
author | ehaupt <ehaupt@FreeBSD.org> | 2013-04-18 05:58:43 +0800 |
---|---|---|
committer | ehaupt <ehaupt@FreeBSD.org> | 2013-04-18 05:58:43 +0800 |
commit | 6eb9aae1dd488b42fe304c9aeef21030701e09e3 (patch) | |
tree | d8bd958937c0015f467ca3815186772f1c4fb268 | |
parent | 598858d1b47a468b0a1760153eff3149ea90ab40 (diff) | |
download | freebsd-ports-gnome-6eb9aae1dd488b42fe304c9aeef21030701e09e3.tar.gz freebsd-ports-gnome-6eb9aae1dd488b42fe304c9aeef21030701e09e3.tar.zst freebsd-ports-gnome-6eb9aae1dd488b42fe304c9aeef21030701e09e3.zip |
Update to 2.2.1. This is a bugfix release including upstream imported FreeBSD
releated fixes.
Feature safe: yes
-rw-r--r-- | net/httping/Makefile | 2 | ||||
-rw-r--r-- | net/httping/distinfo | 4 | ||||
-rw-r--r-- | net/httping/files/patch-Makefile | 48 |
3 files changed, 13 insertions, 41 deletions
diff --git a/net/httping/Makefile b/net/httping/Makefile index 5ecb5a09ec7d..e70726014f4b 100644 --- a/net/httping/Makefile +++ b/net/httping/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= httping -PORTVERSION= 2.2 +PORTVERSION= 2.2.1 CATEGORIES= net MASTER_SITES= http://www.vanheusden.com/httping/ \ CRITICAL diff --git a/net/httping/distinfo b/net/httping/distinfo index cf1596b0066b..586e4887e342 100644 --- a/net/httping/distinfo +++ b/net/httping/distinfo @@ -1,2 +1,2 @@ -SHA256 (httping-2.2.tgz) = 157125fb1394651854840ca5be2f346be527130f9410372011064a181ec61b49 -SIZE (httping-2.2.tgz) = 32645 +SHA256 (httping-2.2.1.tgz) = b5f34b1ce5a83177fc58a9c5032daa43e625271936af6d919e00f2a48cd9e541 +SIZE (httping-2.2.1.tgz) = 33104 diff --git a/net/httping/files/patch-Makefile b/net/httping/files/patch-Makefile index 7823ad35d1cf..6442e0c8b02d 100644 --- a/net/httping/files/patch-Makefile +++ b/net/httping/files/patch-Makefile @@ -1,48 +1,20 @@ ---- ./Makefile.orig 2013-04-04 21:46:48.000000000 +0200 -+++ ./Makefile 2013-04-17 21:50:18.735645308 +0200 -@@ -12,8 +12,6 @@ - # version. If you delete this exception statement from all source +--- ./Makefile.orig 2013-04-17 22:46:50.000000000 +0200 ++++ ./Makefile 2013-04-17 23:49:01.771634044 +0200 +@@ -13,8 +13,6 @@ # files in the program, then also delete it here. + # $Revision: 178 $ --include makefile.inc - # *** configure script *** # support for tcp fast open? #TFO=yes -@@ -32,12 +30,11 @@ +@@ -31,7 +29,7 @@ - DEBUG=yes + TARGET=httping + +-DEBUG=yes ++DEBUG?=no WFLAGS=-Wall -W --OFLAGS=-O3 + OFLAGS= CFLAGS+=$(WFLAGS) $(OFLAGS) -DVERSION=\"$(VERSION)\" --LDFLAGS=-lm -+LDFLAGS+=-lm - - PACKAGE=$(TARGET)-$(VERSION) --PREFIX=/usr -+PREFIX?=/usr - BINDIR=$(PREFIX)/bin - MANDIR=$(PREFIX)/share/man - DOCDIR=$(PREFIX)/share/doc/$(TARGET) -@@ -82,11 +79,6 @@ - LDFLAGS+=-lfftw3 - endif - --ifeq ($(DEBUG),yes) --CFLAGS+=-D_DEBUG -ggdb --LDFLAGS+=-g --endif -- - ifeq ($(ARM),yes) - CC=arm-linux-gcc - endif -@@ -109,9 +101,6 @@ - $(STRIP) $(DESTDIR)/$(BINDIR)/$(TARGET) - endif - --makefile.inc: -- ./configure -- - clean: - $(RMDIR) $(OBJS) $(TARGET) makefile.inc *~ core cov-int - |