svn commit: r302935 - in head/textproc: . p5-Text-Brew

Jun Kuriyama kuriyama at FreeBSD.org
Wed Aug 22 13:29:19 UTC 2012


Author: kuriyama
Date: Wed Aug 22 13:29:18 2012
New Revision: 302935
URL: http://svn.freebsd.org/changeset/ports/302935

Log:
  This module implements the Brew edit distance that is very close to
  the dynamic programming technique used for the Wagner-Fischer (and so
  for the Levenshtein) edit distance.
  
  WWW: http://search.cpan.org/dist/Text-Brew/

Added:
  head/textproc/p5-Text-Brew/
  head/textproc/p5-Text-Brew/Makefile   (contents, props changed)
  head/textproc/p5-Text-Brew/distinfo   (contents, props changed)
  head/textproc/p5-Text-Brew/pkg-descr   (contents, props changed)
  head/textproc/p5-Text-Brew/pkg-plist   (contents, props changed)
Modified:
  head/textproc/Makefile

Modified: head/textproc/Makefile
==============================================================================
--- head/textproc/Makefile	Wed Aug 22 13:23:46 2012	(r302934)
+++ head/textproc/Makefile	Wed Aug 22 13:29:18 2012	(r302935)
@@ -757,6 +757,7 @@
     SUBDIR += p5-Text-Bastardize
     SUBDIR += p5-Text-BibTeX
     SUBDIR += p5-Text-Bind
+    SUBDIR += p5-Text-Brew
     SUBDIR += p5-Text-CSV
     SUBDIR += p5-Text-CSV-Encoded
     SUBDIR += p5-Text-CSV-Simple

Added: head/textproc/p5-Text-Brew/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/p5-Text-Brew/Makefile	Wed Aug 22 13:29:18 2012	(r302935)
@@ -0,0 +1,21 @@
+# New ports collection makefile for:	Text::Brew
+# Date created:		22 Aug 2012
+# Whom:			Jun Kuriyama <kuriyama at FreeBSD.org>
+#
+# $FreeBSD$
+#
+
+PORTNAME=	Text-Brew
+PORTVERSION=	0.02
+CATEGORIES=	textproc perl5
+MASTER_SITES=	CPAN
+PKGNAMEPREFIX=	p5-
+
+MAINTAINER=	kuriyama at FreeBSD.org
+COMMENT=	Perl extension for the Brew edit distance
+
+PERL_CONFIGURE=	yes
+
+MAN3=	Text::Brew.3
+
+.include <bsd.port.mk>

Added: head/textproc/p5-Text-Brew/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/p5-Text-Brew/distinfo	Wed Aug 22 13:29:18 2012	(r302935)
@@ -0,0 +1,2 @@
+SHA256 (Text-Brew-0.02.tar.gz) = aa1b85841cf9fc6fe338366bbc870a4e9304a27641e63f92a1fd96bee8ebf64c
+SIZE (Text-Brew-0.02.tar.gz) = 4663

Added: head/textproc/p5-Text-Brew/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/p5-Text-Brew/pkg-descr	Wed Aug 22 13:29:18 2012	(r302935)
@@ -0,0 +1,5 @@
+This module implements the Brew edit distance that is very close to
+the dynamic programming technique used for the Wagner-Fischer (and so
+for the Levenshtein) edit distance.
+
+WWW: http://search.cpan.org/dist/Text-Brew/

Added: head/textproc/p5-Text-Brew/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/p5-Text-Brew/pkg-plist	Wed Aug 22 13:29:18 2012	(r302935)
@@ -0,0 +1,5 @@
+%%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Brew/.packlist
+%%SITE_PERL%%/Text/Brew.pm
+ at dirrmtry %%SITE_PERL%%/Text
+ at dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Brew
+ at dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text



More information about the svn-ports-all mailing list