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

View File

@@ -0,0 +1,5 @@
libunicode is a library for manipulating Unicode characters and strings.
It understands both the UTF-8 and UCS-2 encodings, and has a framework for
adding support for new encodings.
libunicode is licensed under the LGPL.

View File

@@ -0,0 +1,17 @@
# $NetBSD: Makefile,v 1.14 2012/10/25 06:56:04 asau Exp $
#
DISTNAME= libunicode-0.4
PKGREVISION= 1
CATEGORIES= textproc devel
MASTER_SITES= ${MASTER_SITE_GNOME:=sources/libunicode/0.4/}
MAINTAINER= rh@NetBSD.org
HOMEPAGE= http://www.pango.org/
COMMENT= Library for manipulating Unicode characters and strings
USE_LANGUAGES= c c++
GNU_CONFIGURE= YES
USE_LIBTOOL= YES
.include "../../mk/bsd.pkg.mk"

View File

@@ -0,0 +1,4 @@
@comment $NetBSD: PLIST,v 1.2 2004/09/22 08:09:55 jlam Exp $
bin/unicode-config
include/unicode.h
lib/libunicode.la

View File

@@ -0,0 +1,13 @@
# $NetBSD: buildlink3.mk,v 1.8 2009/03/20 19:25:30 joerg Exp $
BUILDLINK_TREE+= libunicode
.if !defined(LIBUNICODE_BUILDLINK3_MK)
LIBUNICODE_BUILDLINK3_MK:=
BUILDLINK_API_DEPENDS.libunicode+= libunicode>=0.4
BUILDLINK_ABI_DEPENDS.libunicode+= libunicode>=0.4nb1
BUILDLINK_PKGSRCDIR.libunicode?= ../../textproc/libunicode
.endif # LIBUNICODE_BUILDLINK3_MK
BUILDLINK_TREE+= -libunicode

View File

@@ -0,0 +1,7 @@
$NetBSD: distinfo,v 1.4 2005/02/24 14:48:44 agc Exp $
SHA1 (libunicode-0.4.tar.gz) = fbe0ac01ba9baf007908ef54673876c6f5941093
RMD160 (libunicode-0.4.tar.gz) = 73b7a9c6ebda87c6bd0b133f98d88fb896235401
Size (libunicode-0.4.tar.gz) = 215629 bytes
SHA1 (patch-aa) = 29df09e0206e66ba9fb585db12887c0ff818dea1
SHA1 (patch-ab) = 9c32b9a47a8c851cc4a874d5328bc4feb353f2d7

View File

@@ -0,0 +1,16 @@
$NetBSD: patch-aa,v 1.1 2000/08/29 14:38:15 rh Exp $
--- convert.c.orig Fri Sep 3 06:33:27 1999
+++ convert.c
@@ -30,7 +30,11 @@
#ifndef EILSEQ
/* On some systems, like SunOS, EILSEQ is not defined. On those
systems we use EBADMSG instead. */
+#ifdef EBADMSG
# define EILSEQ EBADMSG
+#else
+# define EILSEQ ENOMSG
+#endif
#endif
/* Linked list of all character sets. */

View File

@@ -0,0 +1,13 @@
$NetBSD: patch-ab,v 1.1 2004/01/24 10:00:29 jmmv Exp $
--- utf8.c.orig 1999-10-17 20:46:00.000000000 +0200
+++ utf8.c
@@ -173,7 +173,7 @@ unicode_get_charset_internal (char **a)
if (strcmp (charset, "UTF-8") == 0)
return 1;
}
-#elif CODESET
+#elif defined(CODESET)
charset = nl_langinfo(CODESET);
if (charset)
{