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

1
shells/dash/DESCR Normal file
View File

@@ -0,0 +1 @@
Debian Almquist shell. A small POSIX-compliant shell that is faster than bash.

17
shells/dash/Makefile Normal file
View File

@@ -0,0 +1,17 @@
# $NetBSD: Makefile,v 1.9 2013/01/06 16:43:26 cheusov Exp $
#
DISTNAME= dash-0.5.7
CATEGORIES= shells
MASTER_SITES= http://gondor.apana.org.au/~herbert/dash/files/
MAINTAINER= cheusov@NetBSD.org
HOMEPAGE= http://gondor.apana.org.au/~herbert/dash/
COMMENT= Debian Almquist shell, POSIX-compliant shell faster than bash
LICENSE= modified-bsd AND gnu-gpl-v2
GNU_CONFIGURE= yes
USE_TOOLS+= gmake
PKG_SHELL= bin/dash
.include "../../mk/bsd.pkg.mk"

3
shells/dash/PLIST Normal file
View File

@@ -0,0 +1,3 @@
@comment $NetBSD: PLIST,v 1.1.1.1 2009/07/26 21:27:49 rillig Exp $
bin/dash
man/man1/dash.1

7
shells/dash/distinfo Normal file
View File

@@ -0,0 +1,7 @@
$NetBSD: distinfo,v 1.4 2013/01/06 16:19:07 cheusov Exp $
SHA1 (dash-0.5.7.tar.gz) = a3ebc16f2e2c7ae8adf64e5e62ae3dcb631717c6
RMD160 (dash-0.5.7.tar.gz) = 1878942f8ab5723ccfb2eded34169606b4cec475
Size (dash-0.5.7.tar.gz) = 223794 bytes
SHA1 (patch-src_dash.1) = f4c82d255c0615def061ed49e3be9f170e7cd467
SHA1 (patch-src_mkbuiltins) = 54f46f67653472d7bd5c8064929ef08da49a2b92

View File

@@ -0,0 +1,15 @@
$NetBSD: patch-src_dash.1,v 1.1 2012/01/24 22:24:34 joerg Exp $
--- src/dash.1.orig 2009-01-13 23:37:13.000000000 +0000
+++ src/dash.1
@@ -2132,9 +2132,9 @@ is specified, the soft limit is displaye
If both are specified, the last one wins.
.El
.Pp
-.Bl -tag -width Fl
The limit to be interrogated or set, then, is chosen by specifying
any one of these flags:
+.Bl -tag -width Fl
.It Fl a
show all the current limits
.It Fl t

View File

@@ -0,0 +1,14 @@
$NetBSD: patch-src_mkbuiltins,v 1.1 2013/01/06 16:19:08 cheusov Exp $
# This patch fixes build failure on SunOS if /usr/xpg4/bin is not in PATH
--- src/mkbuiltins.orig 2011-03-15 07:18:06.000000000 +0000
+++ src/mkbuiltins
@@ -97,7 +97,7 @@ cat <<\!
*/
!
-sed 's/ -[a-z]*//' $temp2 | nl -b a -v 0 | LC_COLLATE=C sort -u -k 3,3 |
+sed 's/ -[a-z]*//' $temp2 | nl -ba -v0 | LC_COLLATE=C sort -u -k 3,3 |
tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ |
awk '{ printf "#define %s (builtincmd + %d)\n", $3, $1}'
printf '\n#define NUMBUILTINS %d\n' $(wc -l < $temp2)