Import of pkgsrc-2013Q2

This commit is contained in:
2013-09-26 17:14:40 +02:00
commit 785076ae39
74991 changed files with 4380255 additions and 0 deletions

3
net/httping/DESCR Normal file
View File

@@ -0,0 +1,3 @@
Httping is like 'ping' but for http-requests.
Give it an url, and it'll show you how long it takes to connect, send a
request and retrieve the reply (only the headers).

25
net/httping/Makefile Normal file
View File

@@ -0,0 +1,25 @@
# $NetBSD: Makefile,v 1.18 2013/06/26 12:39:24 ryoon Exp $
DISTNAME= httping-2.3.3
CATEGORIES= net
MASTER_SITES= http://www.vanheusden.com/httping/
EXTRACT_SUFX= .tgz
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://www.vanheusden.com/httping/
COMMENT= Like 'ping' but for http-requests
LICENSE= gnu-gpl-v2
HAS_CONFIGURE= yes
USE_TOOLS+= gmake msgfmt
CONFIGURE_ARGS+= --with-openssl
.include "../../mk/bsd.prefs.mk"
LDFLAGS.NetBSD= -lintl
LDFLAGS.SunOS= -lnsl -lsocket
.include "../../devel/gettext-lib/buildlink3.mk"
.include "../../security/openssl/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"

8
net/httping/PLIST Normal file
View File

@@ -0,0 +1,8 @@
@comment $NetBSD: PLIST,v 1.2 2013/06/26 12:39:24 ryoon Exp $
bin/httping
man/man1/httping.1
man/nl/man1/httping-nl.1
share/doc/httping/license.OpenSSL
share/doc/httping/license.txt
share/doc/httping/readme.txt
share/locale/nl/LC_MESSAGES/httping.mo

6
net/httping/distinfo Normal file
View File

@@ -0,0 +1,6 @@
$NetBSD: distinfo,v 1.10 2013/06/26 12:39:24 ryoon Exp $
SHA1 (httping-2.3.3.tgz) = 6b9e77039346388e2b02dbb1d60f7422e7133488
RMD160 (httping-2.3.3.tgz) = 204a9ddff58086434c1f5c608a0f5360747fb9bb
Size (httping-2.3.3.tgz) = 54376 bytes
SHA1 (patch-aa) = 72c327379b1cbe3cae7436e09ccee53f9277652d

View File

@@ -0,0 +1,24 @@
$NetBSD: patch-aa,v 1.4 2013/06/26 12:39:24 ryoon Exp $
* Fix man page directory for pkgsrc.
* Create nls directory before installation.
--- Makefile.orig 2013-06-07 13:18:52.000000000 +0000
+++ Makefile
@@ -42,7 +42,7 @@ LDFLAGS+=-lm
PACKAGE=$(TARGET)-$(VERSION)
PREFIX?=/usr
BINDIR=$(PREFIX)/bin
-MANDIR=$(PREFIX)/share/man
+MANDIR=$(PREFIX)/${PKGMANDIR}
DOCDIR=$(PREFIX)/share/doc/$(TARGET)
INSTALL=install
@@ -116,6 +116,7 @@ install: $(TARGET) $(TRANSLATIONS)
ifneq ($(DEBUG),yes)
$(STRIP) $(DESTDIR)/$(BINDIR)/$(TARGET)
endif
+ ${BSD_INSTALL_DATA_DIR} ${DESTDIR}${PREFIX}/share/locale/nl/LC_MESSAGES
cp nl.mo $(DESTDIR)/$(PREFIX)/share/locale/nl/LC_MESSAGES/httping.mo
makefile.inc: