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

2
misc/utftools/DESCR Normal file
View File

@@ -0,0 +1,2 @@
This package contains implementations of UTF-aware wc, fmt,
expand, and unexpand.

16
misc/utftools/Makefile Normal file
View File

@@ -0,0 +1,16 @@
# $NetBSD: Makefile,v 1.8 2012/10/08 09:57:39 asau Exp $
#
DISTNAME= utftools-1.6
PKGREVISION= 1
CATEGORIES= misc
MASTER_SITES= ftp://ftp.cs.yorku.ca/pub/wily/misc/
MAINTAINER= agc@NetBSD.org
#HOMEPAGE= none
COMMENT= UTF-aware wc, fmt, expand, and unexpand
GNU_CONFIGURE= yes
.include "../../misc/libutf/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"

9
misc/utftools/PLIST Normal file
View File

@@ -0,0 +1,9 @@
@comment $NetBSD: PLIST,v 1.1.1.1 2003/05/09 07:38:16 agc Exp $
bin/utf8-expand
bin/utf8-fmt
bin/utf8-unexpand
bin/utf8-wc
man/man1/utf8-expand.1
man/man1/utf8-fmt.1
man/man1/utf8-unexpand.1
man/man1/utf8-wc.1

10
misc/utftools/distinfo Normal file
View File

@@ -0,0 +1,10 @@
$NetBSD: distinfo,v 1.3 2007/08/31 21:49:32 agc Exp $
SHA1 (utftools-1.6.tar.gz) = 92406e9cc5f47fa0baa2d558b56175bc836431f1
RMD160 (utftools-1.6.tar.gz) = 7dfeda42ab72257dd92085e911b466175f3d0ff9
Size (utftools-1.6.tar.gz) = 26298 bytes
SHA1 (patch-aa) = c9b89b0b61fd1a51ab301748fc954676cfffc8ef
SHA1 (patch-ab) = 0010909f1f83b8968275fb26c00e4c9bd4a534c4
SHA1 (patch-ac) = 4de3e61f6d11a0729a01f5efcffe9fcfe871e0ad
SHA1 (patch-ad) = d5dadfa15d266aa1b5104f2f87dc39f481672639
SHA1 (patch-ae) = 99e0701ae4788be9e1b1b5a36cc4a678401be453

View File

@@ -0,0 +1,12 @@
$NetBSD: patch-aa,v 1.1.1.1 2003/05/09 07:38:16 agc Exp $
--- fmt.c 2003/05/09 07:20:12 1.1
+++ fmt.c 2003/05/09 07:20:22
@@ -2,6 +2,7 @@
#include <stdlib.h>
#include <stdio.h>
+#include <unistd.h>
#include <string.h>
#include <errno.h>

View File

@@ -0,0 +1,12 @@
$NetBSD: patch-ab,v 1.1.1.1 2003/05/09 07:38:16 agc Exp $
--- wc.c 2003/05/09 07:22:29 1.1
+++ wc.c 2003/05/09 07:22:37
@@ -4,6 +4,7 @@
#include <stdio.h>
#include <string.h>
+#include <unistd.h>
#include <utf.h>
#include <utftools.h>

View File

@@ -0,0 +1,12 @@
$NetBSD: patch-ac,v 1.1.1.1 2003/05/09 07:38:16 agc Exp $
--- expand.c 2003/05/09 07:23:26 1.1
+++ expand.c 2003/05/09 07:23:40
@@ -4,6 +4,7 @@
#include <stdio.h>
#include <string.h>
+#include <unistd.h>
#include <errno.h>
#include <utf.h>

View File

@@ -0,0 +1,12 @@
$NetBSD: patch-ad,v 1.1.1.1 2003/05/09 07:38:16 agc Exp $
--- unexpand.c 2003/05/09 07:24:20 1.1
+++ unexpand.c 2003/05/09 07:24:32
@@ -4,6 +4,7 @@
#include <stdio.h>
#include <string.h>
+#include <unistd.h>
#include <errno.h>
#include <utf.h>

View File

@@ -0,0 +1,17 @@
$NetBSD: patch-ae,v 1.2 2007/08/31 21:49:33 agc Exp $
--- Makefile.in.orig 1997-02-25 18:47:26.000000000 +0000
+++ Makefile.in 2007-08-31 12:23:48.000000000 +0100
@@ -38,9 +38,9 @@
all : $(BINS)
install : all
- $(srcdir)/mkinstalldirs $(BINDIR) $(MANDIR)/man1
- for bin in $(BINS) ; do $(INSTALL) $$bin $(BINDIR)/$$bin ; done
- for man in $(MANS) ; do $(INSTALL_DATA) $(srcdir)/$$man $(MANDIR)/man1/$$man ; done
+ $(srcdir)/mkinstalldirs ${DESTDIR}$(BINDIR) ${DESTDIR}$(MANDIR)/man1
+ for bin in $(BINS) ; do $(INSTALL) $$bin ${DESTDIR}$(BINDIR)/utf8-$$bin ; done
+ for man in $(MANS) ; do $(INSTALL_DATA) $(srcdir)/$$man ${DESTDIR}$(MANDIR)/man1/utf8-$$man ; done
uninstall :
-for bin in $(BINS) ; do rm $(BINDIR)/$$bin ; done