svn commit: r379658 - in head/textproc: . p5-Text-Soundex
Sunpoet Po-Chuan Hsieh
sunpoet at FreeBSD.org
Mon Feb 23 10:08:13 UTC 2015
Author: sunpoet
Date: Mon Feb 23 10:08:10 2015
New Revision: 379658
URL: https://svnweb.freebsd.org/changeset/ports/379658
QAT: https://qat.redports.org/buildarchive/r379658/
Log:
- Add p5-Text-Soundex 3.04
Soundex is a phonetic algorithm for indexing names by sound, as pronounced in
English. The goal is for names with the same pronunciation to be encoded to the
same representation so that they can be matched despite minor differences in
spelling. Soundex is the most widely known of all phonetic algorithms and is
often used (incorrectly) as a synonym for "phonetic algorithm". Improvements to
Soundex are the basis for many modern phonetic algorithms. (Wikipedia, 2007)
Text::Soundex implements the original soundex algorithm developed by Robert
Russell and Margaret Odell, patented in 1918 and 1922, as well as a variation
called "American Soundex" used for US census data, and current maintained by the
National Archives and Records Administration (NARA).
The soundex algorithm may be recognized from Donald Knuth's The Art of Computer
Programming. The algorithm described by Knuth is the NARA algorithm.
WWW: http://search.cpan.org/dist/Text-Soundex/
Added:
head/textproc/p5-Text-Soundex/
head/textproc/p5-Text-Soundex/Makefile (contents, props changed)
head/textproc/p5-Text-Soundex/distinfo (contents, props changed)
head/textproc/p5-Text-Soundex/pkg-descr (contents, props changed)
head/textproc/p5-Text-Soundex/pkg-plist (contents, props changed)
Modified:
head/textproc/Makefile
Modified: head/textproc/Makefile
==============================================================================
--- head/textproc/Makefile Mon Feb 23 10:08:02 2015 (r379657)
+++ head/textproc/Makefile Mon Feb 23 10:08:10 2015 (r379658)
@@ -858,6 +858,7 @@
SUBDIR += p5-Text-Similarity
SUBDIR += p5-Text-SimpleTable
SUBDIR += p5-Text-SimpleTemplate
+ SUBDIR += p5-Text-Soundex
SUBDIR += p5-Text-SpellChecker
SUBDIR += p5-Text-SpellChecker-GUI
SUBDIR += p5-Text-Striphigh
Added: head/textproc/p5-Text-Soundex/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/textproc/p5-Text-Soundex/Makefile Mon Feb 23 10:08:10 2015 (r379658)
@@ -0,0 +1,16 @@
+# Created by: Sunpoet Po-Chuan Hsieh <sunpoet at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME= Text-Soundex
+PORTVERSION= 3.04
+CATEGORIES= textproc perl5
+MASTER_SITES= CPAN
+PKGNAMEPREFIX= p5-
+
+MAINTAINER= sunpoet at FreeBSD.org
+COMMENT= Implementation of the soundex algorithm
+
+USE_PERL5= configure
+USES= perl5
+
+.include <bsd.port.mk>
Added: head/textproc/p5-Text-Soundex/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/textproc/p5-Text-Soundex/distinfo Mon Feb 23 10:08:10 2015 (r379658)
@@ -0,0 +1,2 @@
+SHA256 (Text-Soundex-3.04.tar.gz) = 2e56bb4324ee0186b908b3bd78463643affe7295624af0628e81491e910283d9
+SIZE (Text-Soundex-3.04.tar.gz) = 9024
Added: head/textproc/p5-Text-Soundex/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/textproc/p5-Text-Soundex/pkg-descr Mon Feb 23 10:08:10 2015 (r379658)
@@ -0,0 +1,16 @@
+Soundex is a phonetic algorithm for indexing names by sound, as pronounced in
+English. The goal is for names with the same pronunciation to be encoded to the
+same representation so that they can be matched despite minor differences in
+spelling. Soundex is the most widely known of all phonetic algorithms and is
+often used (incorrectly) as a synonym for "phonetic algorithm". Improvements to
+Soundex are the basis for many modern phonetic algorithms. (Wikipedia, 2007)
+
+Text::Soundex implements the original soundex algorithm developed by Robert
+Russell and Margaret Odell, patented in 1918 and 1922, as well as a variation
+called "American Soundex" used for US census data, and current maintained by the
+National Archives and Records Administration (NARA).
+
+The soundex algorithm may be recognized from Donald Knuth's The Art of Computer
+Programming. The algorithm described by Knuth is the NARA algorithm.
+
+WWW: http://search.cpan.org/dist/Text-Soundex/
Added: head/textproc/p5-Text-Soundex/pkg-plist
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/textproc/p5-Text-Soundex/pkg-plist Mon Feb 23 10:08:10 2015 (r379658)
@@ -0,0 +1,3 @@
+%%SITE_ARCH%%/Text/Soundex.pm
+%%SITE_ARCH%%/auto/Text/Soundex/Soundex.so
+%%PERL5_MAN3%%/Text::Soundex.3.gz
More information about the svn-ports-head
mailing list