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
devel/error/DESCR Normal file
View File

@@ -0,0 +1,3 @@
The error program inserts errors from the compiler, lint, etc.
tools in the source files as comments, optionally invoking
$EDITOR on the files that had errors.

17
devel/error/Makefile Normal file
View File

@@ -0,0 +1,17 @@
# $NetBSD: Makefile,v 1.10 2012/10/31 11:16:56 asau Exp $
#
DISTNAME= error-0.0
CATEGORIES= devel
MASTER_SITES= # ftp://ftp.gw.com/pub/people/christos/
MAINTAINER= christos@NetBSD.org
COMMENT= Insert compiler errors in source files as comments
USE_FEATURES+= cdefs
USE_BSD_MAKEFILE= yes
INSTALLATION_DIRS= bin ${PKGMANDIR}/cat1 ${PKGMANDIR}/man1
BUILDLINK_TRANSFORM+= rm:-Werror
.include "../../mk/bsd.pkg.mk"

4
devel/error/PLIST Normal file
View File

@@ -0,0 +1,4 @@
@comment $NetBSD: PLIST,v 1.2 2005/05/22 05:32:46 minskim Exp $
bin/error
man/cat1/error.0
man/man1/error.1

9
devel/error/distinfo Normal file
View File

@@ -0,0 +1,9 @@
$NetBSD: distinfo,v 1.4 2012/12/30 04:24:41 dholland Exp $
SHA1 (error-0.0.tar.gz) = b791825e6864e9459401d2bc780521a7411f1ce2
RMD160 (error-0.0.tar.gz) = 8546498a08045c44eb1a5693447954640d2bf9e4
Size (error-0.0.tar.gz) = 25818 bytes
SHA1 (patch-Makefile) = 53979fb590663c9b28c9a57bdc69dfd27e878f33
SHA1 (patch-aa) = 8a5addfb206d969b8cf5d2ff8b1505f28d499f02
SHA1 (patch-ab) = d07451d05915be0fdc0e941befc292d26807fa8d
SHA1 (patch-ac) = 4077d23e2a155ff022e767eacdabb0a3eb815415

View File

@@ -0,0 +1,13 @@
$NetBSD: patch-Makefile,v 1.1 2012/12/30 04:24:41 dholland Exp $
Honor PKGMANDIR.
--- Makefile~ 2005-05-10 20:53:43.000000000 +0000
+++ Makefile
@@ -3,5 +3,5 @@
BINDIR=${PREFIX}/bin
-MANDIR=${PREFIX}/man
+MANDIR=${PREFIX}/${PKGMANDIR}
CPPFLAGS='-D__COPYRIGHT(a)=' '-D__RCSID(a)='

View File

@@ -0,0 +1,12 @@
$NetBSD: patch-aa,v 1.1 2005/06/21 21:02:16 jlam Exp $
--- error.h.orig 2005-05-10 16:48:24.000000000 -0400
+++ error.h
@@ -248,5 +248,5 @@ char **wordvsplice(int, int, char **);
boolean writetouched(int);
extern char *fgetln(FILE *, size_t*);
-extern ssize_t strlcpy(char *, const char *, size_t);
-extern ssize_t strlcat(char *, const char *, size_t);
+extern size_t strlcpy(char *, const char *, size_t);
+extern size_t strlcat(char *, const char *, size_t);

View File

@@ -0,0 +1,12 @@
$NetBSD: patch-ab,v 1.2 2005/12/05 20:50:03 rillig Exp $
--- strlcat.c.orig 2005-05-10 16:48:24.000000000 -0400
+++ strlcat.c
@@ -35,6 +35,7 @@
size_t
strlcat(char *dst, const char *src, size_t siz);
+#undef _DIAGASSERT
#define _DIAGASSERT(a)
#ifdef _LIBC

View File

@@ -0,0 +1,12 @@
$NetBSD: patch-ac,v 1.2 2005/12/05 20:50:03 rillig Exp $
--- strlcpy.c.orig 2005-05-10 16:48:24.000000000 -0400
+++ strlcpy.c
@@ -34,6 +34,7 @@
#include <string.h>
size_t
strlcpy(char *dst, const char *src, size_t siz);
+#undef _DIAGASSERT
#define _DIAGASSERT(a)
#ifdef _LIBC