summaryrefslogtreecommitdiff
path: root/sysutils
diff options
context:
space:
mode:
authorThierry Thomas <thierry@FreeBSD.org>2007-02-04 22:54:18 +0000
committerThierry Thomas <thierry@FreeBSD.org>2007-02-04 22:54:18 +0000
commitb91b459a1efaeffc240bc6bf4b1e4e66d3842726 (patch)
tree1643a211b2abb07b94a04eaabca7c4fb97ce4602 /sysutils
parent- Update to 0.12.2 (diff)
Rename ports/sysutils/unidesc to ports/sysutils/uniutils.
PR: ports/108574 Repocopied by: marcus
Notes
Notes: svn path=/head/; revision=184186
Diffstat (limited to 'sysutils')
-rw-r--r--sysutils/Makefile2
-rw-r--r--sysutils/unidesc/Makefile43
-rw-r--r--sysutils/unidesc/distinfo3
-rw-r--r--sysutils/unidesc/files/patch-utf8lookup11
-rw-r--r--sysutils/unidesc/pkg-descr23
-rw-r--r--sysutils/unidesc/pkg-plist15
-rw-r--r--sysutils/uniutils/pkg-descr2
7 files changed, 2 insertions, 97 deletions
diff --git a/sysutils/Makefile b/sysutils/Makefile
index 9238da1cf6e5..af06766cda9f 100644
--- a/sysutils/Makefile
+++ b/sysutils/Makefile
@@ -653,8 +653,8 @@
SUBDIR += udesc_dump
SUBDIR += udfclient
SUBDIR += ufs_copy
- SUBDIR += unidesc
SUBDIR += unieject
+ SUBDIR += uniutils
SUBDIR += unquote
SUBDIR += upsd
SUBDIR += upsdaemon
diff --git a/sysutils/unidesc/Makefile b/sysutils/unidesc/Makefile
deleted file mode 100644
index c93f4c70f463..000000000000
--- a/sysutils/unidesc/Makefile
+++ /dev/null
@@ -1,43 +0,0 @@
-# New ports collection makefile for: unidesc
-# Date created: Sun 15 May 2005
-# Whom: thierry@pompo.net
-#
-# $FreeBSD$
-#
-
-PORTNAME= uniutils
-PORTVERSION= 2.24
-CATEGORIES= sysutils textproc
-MASTER_SITES= http://billposer.org/Software/Downloads/
-
-MAINTAINER= thierry@FreeBSD.org
-COMMENT= Unicode Description Utilities
-
-RUN_DEPENDS= ascii2binary:${PORTSDIR}/converters/ascii2binary
-
-GNU_CONFIGURE= yes
-CONFIGURE_ENV= CPPFLAGS="${CFLAGS} -I${LOCALBASE}/include" \
- LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib" \
- LIBS="-lintl"
-CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
-USE_GETTEXT= yes
-WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
-
-TESTFILES= Test1.ann Test1.u Test2.ann Test2.u Test3.ann Test3.u \
- Test4.ann Test4.u
-PORTDOCS= AUTHORS NEWS README
-
-MAN1= ExplicateUTF8.1 unidesc.1 unihist.1 uniname.1 unirev.1
-
-pre-configure:
- @${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|' ${WRKSRC}/Makefile.in
- @${REINPLACE_CMD} -e 's|TestData|${EXAMPLESDIR}|' ${WRKSRC}/README
-
-post-install:
-.if !defined(NOPORTDOCS)
- ${MKDIR} ${DOCSDIR} ${EXAMPLESDIR}
- ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR}
- ${INSTALL_DATA} ${TESTFILES:S|^|${WRKSRC}/TestData/|} ${EXAMPLESDIR}
-.endif
-
-.include <bsd.port.mk>
diff --git a/sysutils/unidesc/distinfo b/sysutils/unidesc/distinfo
deleted file mode 100644
index 738efd7aceee..000000000000
--- a/sysutils/unidesc/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 (uniutils-2.24.tar.gz) = 24d39bd35d995fa69e748188216972f7
-SHA256 (uniutils-2.24.tar.gz) = e69b4636c158cb148ff608392c264d5a13f5d90364a7646d3b641fd1e68c37cd
-SIZE (uniutils-2.24.tar.gz) = 254835
diff --git a/sysutils/unidesc/files/patch-utf8lookup b/sysutils/unidesc/files/patch-utf8lookup
deleted file mode 100644
index 556a3cb5dadc..000000000000
--- a/sysutils/unidesc/files/patch-utf8lookup
+++ /dev/null
@@ -1,11 +0,0 @@
---- utf8lookup.orig Sun Jan 29 21:43:23 2006
-+++ utf8lookup Tue Jan 31 00:11:48 2006
-@@ -10,7 +10,7 @@
- #
- echo 0x$1 | # feed command-line argument to ascii2binary's stdin
- ascii2binary -t ui | # convert text to unsigned integer
--iconv -f utf32 -t utf8 | # convert utf-32 to utf-8 encoding
-+iconv -f ucs-4le -t utf-8 | # convert utf-32 to utf-8 encoding
- uniname -b -c -e -g # feed to uniname, suppressing byte and character offsets,
- # UTF-8 encoding, and glyph
-
diff --git a/sysutils/unidesc/pkg-descr b/sysutils/unidesc/pkg-descr
deleted file mode 100644
index 8d039b69ab95..000000000000
--- a/sysutils/unidesc/pkg-descr
+++ /dev/null
@@ -1,23 +0,0 @@
-Unidesc consists of five programs for finding out what is in a Unicode file.
-They are useful when working with Unicode files when one doesn't know the
-writing system, doesn't have the necessary font, needs to inspect invisible
-characters, needs to find out whether characters have been combined or in what
-order they occur, or needs statistics on which characters occur.
-
-uniname defaults to printing the character offset of each character, its byte
-offset, its hex code value, its encoding, the glyph itself, and its name.
-
-unidesc reports the character ranges to which different portions of the text
-belong. It can also be used to identify Unicode encodings (e.g. UTF-16be)
-flagged by magic numbers.
-
-unihist generates a histogram of the characters in its input, which must be
-encoded in UTF-8 Unicode.
-
-ExplicateUTF8 is intended for debugging or for learning about Unicode. It
-determines and explains the validity of a sequence of bytes as a UTF8 encoding.
-
-Unirev is a filter that reverses UTF-8 strings character-by-character (as
-opposed to byte-by-byte).
-
-WWW: http://billposer.org/Software/unidesc.html
diff --git a/sysutils/unidesc/pkg-plist b/sysutils/unidesc/pkg-plist
deleted file mode 100644
index 9e3bbc16f6d1..000000000000
--- a/sysutils/unidesc/pkg-plist
+++ /dev/null
@@ -1,15 +0,0 @@
-bin/ExplicateUTF8
-bin/unidesc
-bin/unihist
-bin/uniname
-bin/unirev
-bin/utf8lookup
-%%PORTDOCS%%%%EXAMPLESDIR%%/Test1.ann
-%%PORTDOCS%%%%EXAMPLESDIR%%/Test1.u
-%%PORTDOCS%%%%EXAMPLESDIR%%/Test2.ann
-%%PORTDOCS%%%%EXAMPLESDIR%%/Test2.u
-%%PORTDOCS%%%%EXAMPLESDIR%%/Test3.ann
-%%PORTDOCS%%%%EXAMPLESDIR%%/Test3.u
-%%PORTDOCS%%%%EXAMPLESDIR%%/Test4.ann
-%%PORTDOCS%%%%EXAMPLESDIR%%/Test4.u
-%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%
diff --git a/sysutils/uniutils/pkg-descr b/sysutils/uniutils/pkg-descr
index 8d039b69ab95..8e8746e11683 100644
--- a/sysutils/uniutils/pkg-descr
+++ b/sysutils/uniutils/pkg-descr
@@ -1,4 +1,4 @@
-Unidesc consists of five programs for finding out what is in a Unicode file.
+Uniutils consists of five programs for finding out what is in a Unicode file.
They are useful when working with Unicode files when one doesn't know the
writing system, doesn't have the necessary font, needs to inspect invisible
characters, needs to find out whether characters have been combined or in what