Update to 2.3.3

This commit is contained in:
Emanuel Haupt 2013-10-02 14:15:52 +00:00
parent e592f676da
commit b2270f715e
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=329048
3 changed files with 16 additions and 11 deletions

View file

@ -2,8 +2,7 @@
# $FreeBSD$ # $FreeBSD$
PORTNAME= httping PORTNAME= httping
PORTVERSION= 2.2.1 PORTVERSION= 2.3.3
PORTREVISION= 1
CATEGORIES= net CATEGORIES= net
MASTER_SITES= http://www.vanheusden.com/httping/ \ MASTER_SITES= http://www.vanheusden.com/httping/ \
CRITICAL CRITICAL
@ -12,7 +11,7 @@ EXTRACT_SUFX= .tgz
MAINTAINER= ehaupt@FreeBSD.org MAINTAINER= ehaupt@FreeBSD.org
COMMENT= Ping-like tool for HTTP requests COMMENT= Ping-like tool for HTTP requests
USES= gmake USES= gmake gettext
MAN1= httping.1 MAN1= httping.1
PLIST_FILES= bin/httping PLIST_FILES= bin/httping
@ -22,6 +21,7 @@ OPTIONS_DEFINE= NCURSES FFTW SSL
OPTIONS_DEFAULT=NCURSES SSL OPTIONS_DEFAULT=NCURSES SSL
NO_STAGE= yes NO_STAGE= yes
.include <bsd.port.options.mk> .include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MNCURSES} .if ${PORT_OPTIONS:MNCURSES}

View file

@ -1,2 +1,2 @@
SHA256 (httping-2.2.1.tgz) = b5f34b1ce5a83177fc58a9c5032daa43e625271936af6d919e00f2a48cd9e541 SHA256 (httping-2.3.3.tgz) = 00d44796a6b2efea6f071458bce943aee8f4c3b32fc14e8ab7f026ded3ec2cf8
SIZE (httping-2.2.1.tgz) = 33104 SIZE (httping-2.3.3.tgz) = 54376

View file

@ -1,20 +1,25 @@
--- ./Makefile.orig 2013-04-17 22:46:50.000000000 +0200 --- ./Makefile.orig 2013-06-07 15:18:52.000000000 +0200
+++ ./Makefile 2013-04-17 23:49:01.771634044 +0200 +++ ./Makefile 2013-10-02 16:10:24.583316212 +0200
@@ -13,8 +13,6 @@ @@ -13,8 +13,6 @@
# files in the program, then also delete it here. # files in the program, then also delete it here.
# $Revision: 178 $ # $Revision: 268 $
--include makefile.inc --include makefile.inc
- -
# *** configure script *** # *** configure script ***
# support for tcp fast open? # support for tcp fast open?
#TFO=yes #TFO=yes
@@ -31,7 +29,7 @@ @@ -33,11 +31,11 @@
TARGET=httping LOCALEDIR=/usr/share/locale
-DEBUG=yes -DEBUG=yes
+DEBUG?=no +DEBUG?=no
WFLAGS=-Wall -W WFLAGS=-Wall -W
OFLAGS= OFLAGS=
CFLAGS+=$(WFLAGS) $(OFLAGS) -DVERSION=\"$(VERSION)\" CFLAGS+=$(WFLAGS) $(OFLAGS) -DVERSION=\"$(VERSION)\" -DLOCALEDIR=\"$(LOCALEDIR)\"
-LDFLAGS+=-lm
+LDFLAGS+=-lm -lintl
PACKAGE=$(TARGET)-$(VERSION)
PREFIX?=/usr