summaryrefslogtreecommitdiff
path: root/net/netcat6
diff options
context:
space:
mode:
authorjoerg <joerg>2006-03-14 01:42:55 +0000
committerjoerg <joerg>2006-03-14 01:42:55 +0000
commitbb2c236be0f55e126c9d2d5c2188ba989e34a1d1 (patch)
tree85512eded14f741255ab1679e6727c1abf3eea38 /net/netcat6
parente6342ffe23763414da367ec2fc1cd928432bb0ea (diff)
downloadpkgsrc-bb2c236be0f55e126c9d2d5c2188ba989e34a1d1.tar.gz
Fix build on DragonFly. Remove autogenerated locale files from PLIST.
Bump revision.
Diffstat (limited to 'net/netcat6')
-rw-r--r--net/netcat6/Makefile3
-rw-r--r--net/netcat6/PLIST4
-rw-r--r--net/netcat6/distinfo3
-rw-r--r--net/netcat6/patches/patch-aa13
4 files changed, 18 insertions, 5 deletions
diff --git a/net/netcat6/Makefile b/net/netcat6/Makefile
index 56a2fced3eb..dc5f6279a5d 100644
--- a/net/netcat6/Makefile
+++ b/net/netcat6/Makefile
@@ -1,7 +1,8 @@
-# $NetBSD: Makefile,v 1.2 2006/03/08 09:09:42 ghen Exp $
+# $NetBSD: Makefile,v 1.3 2006/03/14 01:42:55 joerg Exp $
DISTNAME= nc6-1.0
PKGNAME= ${DISTNAME:S/nc/netcat/}
+PKGREVISION= 1
CATEGORIES= net
MASTER_SITES= ftp://ftp.deepspace6.net/pub/ds6/sources/nc6/
MASTER_SITES+= http://ftp.deepspace6.net/pub/ds6/sources/nc6/
diff --git a/net/netcat6/PLIST b/net/netcat6/PLIST
index 045a960c080..b47cb746d8e 100644
--- a/net/netcat6/PLIST
+++ b/net/netcat6/PLIST
@@ -1,5 +1,3 @@
-@comment $NetBSD: PLIST,v 1.2 2006/03/08 09:09:42 ghen Exp $
+@comment $NetBSD: PLIST,v 1.3 2006/03/14 01:42:55 joerg Exp $
bin/nc6
-lib/charset.alias
man/man1/nc6.1
-${PKGLOCALEDIR}/locale/locale.alias
diff --git a/net/netcat6/distinfo b/net/netcat6/distinfo
index 3349ec5706b..c97d120502a 100644
--- a/net/netcat6/distinfo
+++ b/net/netcat6/distinfo
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.2 2006/03/08 09:09:42 ghen Exp $
+$NetBSD: distinfo,v 1.3 2006/03/14 01:42:55 joerg Exp $
SHA1 (nc6-1.0.tar.bz2) = 1c361a8060be427fe1b2209d7155e26670e0c1b9
RMD160 (nc6-1.0.tar.bz2) = c5444976925ffece7f27fc1ff3c16ebe19998b78
Size (nc6-1.0.tar.bz2) = 264257 bytes
+SHA1 (patch-aa) = 7f1f6df170d57cdb518138af7644a34cd93d1c62
diff --git a/net/netcat6/patches/patch-aa b/net/netcat6/patches/patch-aa
new file mode 100644
index 00000000000..a7bf2c9c52b
--- /dev/null
+++ b/net/netcat6/patches/patch-aa
@@ -0,0 +1,13 @@
+$NetBSD: patch-aa,v 1.3 2006/03/14 01:42:55 joerg Exp $
+
+--- src/netsupport.c.orig 2006-03-14 01:33:01.000000000 +0000
++++ src/netsupport.c
+@@ -38,7 +38,7 @@
+ #ifdef _AIX
+ #pragma alloca
+ #else
+-#ifndef alloca /* predefined by HP cc +Olibcalls */
++#if !defined(alloca) && !defined(__DragonFly__) && !defined(__FreeBSD__)
+ char *alloca();
+ #endif
+ #endif