diff options
author | Will Andrews <will@FreeBSD.org> | 2003-06-03 04:45:27 +0000 |
---|---|---|
committer | Will Andrews <will@FreeBSD.org> | 2003-06-03 04:45:27 +0000 |
commit | 9e80f501b309f12b7676aefb88bf94a85a8e79c8 (patch) | |
tree | bf05865053677318ee1f511da5c4bb17e1d25e14 /misc | |
parent | Add elfsh 0.43, an attractive toolkit for the analyzation of ELF (diff) |
Add libutf 2.10, an UTF-8 character set support library, including
regular expressions.
PR: 52030
Submitted by: Serge Gagnon <gagnon__s@videotron.ca>
Notes
Notes:
svn path=/head/; revision=82155
Diffstat (limited to 'misc')
-rw-r--r-- | misc/Makefile | 1 | ||||
-rw-r--r-- | misc/libutf/Makefile | 23 | ||||
-rw-r--r-- | misc/libutf/distinfo | 1 | ||||
-rw-r--r-- | misc/libutf/files/patch-Makefile.in | 24 | ||||
-rw-r--r-- | misc/libutf/pkg-descr | 7 | ||||
-rw-r--r-- | misc/libutf/pkg-plist | 5 |
6 files changed, 61 insertions, 0 deletions
diff --git a/misc/Makefile b/misc/Makefile index f79779fe7986..b817d015a05f 100644 --- a/misc/Makefile +++ b/misc/Makefile @@ -217,6 +217,7 @@ SUBDIR += libelysium SUBDIR += libh SUBDIR += libmcal + SUBDIR += libutf SUBDIR += lifelines SUBDIR += lile SUBDIR += lingoteach diff --git a/misc/libutf/Makefile b/misc/libutf/Makefile new file mode 100644 index 000000000000..cc4e926805c7 --- /dev/null +++ b/misc/libutf/Makefile @@ -0,0 +1,23 @@ +# New ports collection makefile for: libutf +# Date created: Fri May 9 16:43:42 EDT 2003 +# Whom: Serge Gagnon <gagnon__s@videotron.ca> +# +# $FreeBSD$ +# + +PORTNAME= libutf +PORTVERSION= 2.10 +CATEGORIES= misc +MASTER_SITES= ftp://ftp.cs.yorku.ca/pub/wily/misc/ \ + http://www.westley.demon.co.uk/src/ + +MAINTAINER= gagnon__s@videotron.ca +COMMENT= UTF-8 character set support library, including regular expressions + +GNU_CONFIGURE= YES +USE_GMAKE= YES +ALL_TARGET= tst + +MAN3= ure.3 utf.3 + +.include <bsd.port.mk> diff --git a/misc/libutf/distinfo b/misc/libutf/distinfo new file mode 100644 index 000000000000..e90ad524fabc --- /dev/null +++ b/misc/libutf/distinfo @@ -0,0 +1 @@ +MD5 (libutf-2.10.tar.gz) = f83bcb35eb4600d5b0e16a401103c4bc diff --git a/misc/libutf/files/patch-Makefile.in b/misc/libutf/files/patch-Makefile.in new file mode 100644 index 000000000000..0efca7888d94 --- /dev/null +++ b/misc/libutf/files/patch-Makefile.in @@ -0,0 +1,24 @@ +--- Makefile.in.old Sat May 10 00:38:36 2003 ++++ Makefile.in Sat May 10 00:52:03 2003 +@@ -9,6 +9,7 @@ + INCDIR= $(prefix)/include + MANDIR= $(prefix)/man + ETCDIR= $(prefix)/etc ++EGDIR= $(prefix)/share/examples/libutf + + # SVR4, I hate you. What ****idiot**** dreamed this up???? + # Yeah, like all csh or rc users need this crap... +@@ -32,11 +33,11 @@ + ci -l ure.c ure.h urelang.c utf.c utf.h + + install: $(LIBS) +- $(srcdir)/mkinstalldirs $(LIBDIR) $(INCDIR) $(ETCDIR) $(MANDIR)/man3 ++ $(srcdir)/mkinstalldirs $(LIBDIR) $(INCDIR) $(EGDIR) $(MANDIR)/man3 + $(INSTALL_DATA) $(LIBS) $(LIBDIR) ; $(RANLIB) $(LIBDIR)/$(LIBS) + $(INSTALL_DATA) $(srcdir)/ure.h $(INCDIR) + $(INSTALL_DATA) $(srcdir)/utf.h $(INCDIR) +- $(INSTALL_DATA) $(srcdir)/langcoll.utf $(ETCDIR) ++ $(INSTALL_DATA) $(srcdir)/langcoll.utf $(EGDIR) + $(INSTALL_DATA) $(srcdir)/utf.3 $(MANDIR)/man3 + $(INSTALL_DATA) $(srcdir)/ure.3 $(MANDIR)/man3 + diff --git a/misc/libutf/pkg-descr b/misc/libutf/pkg-descr new file mode 100644 index 000000000000..5285332975db --- /dev/null +++ b/misc/libutf/pkg-descr @@ -0,0 +1,7 @@ +This software is a library which implements UTF-8 support routines, +and uses those routines and others to implement UTF-8aware regular +expresions. Language collation sequences are specified in a text +file, ${PREFIX}/etc/langcoll.utf, and feedback as to their correctness +is appreciated. + +Alistair G. Crooks diff --git a/misc/libutf/pkg-plist b/misc/libutf/pkg-plist new file mode 100644 index 000000000000..e9e2fb6cc2ca --- /dev/null +++ b/misc/libutf/pkg-plist @@ -0,0 +1,5 @@ +include/ure.h +include/utf.h +lib/libutf.a +share/examples/libutf/langcoll.utf +@dirrm share/examples/libutf |