diff options
author | Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2013-09-22 17:59:36 +0000 |
---|---|---|
committer | Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2013-09-22 17:59:36 +0000 |
commit | 5ef6cc9c7e8ae988b380adba95e2580ac324f840 (patch) | |
tree | 639f3909df3fa4e0256fccab91e5dc16d25e231c | |
parent | 4892d842823f27da44da2def4f53abe8e68f1454 (diff) | |
download | ports-5ef6cc9c7e8ae988b380adba95e2580ac324f840.tar.gz ports-5ef6cc9c7e8ae988b380adba95e2580ac324f840.zip |
- Add p5-Text-Hyphen 0.11
- While I'm here, add LICENSE and NO_STAGE
Determine positions for hyphens inside words
This module implements Knuth-Liang algorithm to find positions
inside words where it is possible to insert hyphens to break a line.
WWW: http://search.cpan.org/dist/Text-Hyphen/
PR: ports/180297
Submitted by: Anes Mukhametov <anes@anes.su>
Notes
Notes:
svn path=/head/; revision=327883
-rw-r--r-- | textproc/Makefile | 1 | ||||
-rw-r--r-- | textproc/p5-Text-Hyphen/Makefile | 21 | ||||
-rw-r--r-- | textproc/p5-Text-Hyphen/distinfo | 2 | ||||
-rw-r--r-- | textproc/p5-Text-Hyphen/pkg-descr | 5 | ||||
-rw-r--r-- | textproc/p5-Text-Hyphen/pkg-plist | 5 |
5 files changed, 34 insertions, 0 deletions
diff --git a/textproc/Makefile b/textproc/Makefile index f6c5782b32e0..23e8867d664e 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -818,6 +818,7 @@ SUBDIR += p5-Text-Hatena SUBDIR += p5-Text-Highlight SUBDIR += p5-Text-HikiDoc + SUBDIR += p5-Text-Hyphen SUBDIR += p5-Text-Language-Guess SUBDIR += p5-Text-Lorem SUBDIR += p5-Text-Markdown diff --git a/textproc/p5-Text-Hyphen/Makefile b/textproc/p5-Text-Hyphen/Makefile new file mode 100644 index 000000000000..b7343886abd0 --- /dev/null +++ b/textproc/p5-Text-Hyphen/Makefile @@ -0,0 +1,21 @@ +# Created by: Anes Mukhametov <anes@anes.su> +# $FreeBSD$ + +PORTNAME= Text-Hyphen +PORTVERSION= 0.11 +CATEGORIES= textproc perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= anes@anes.su +COMMENT= Determine positions for hyphens inside words + +LICENSE= BSD + +NO_STAGE= yes +USE_PERL5= configure +USES= perl5 + +MAN3= Text::Hyphen.3 + +.include <bsd.port.mk> diff --git a/textproc/p5-Text-Hyphen/distinfo b/textproc/p5-Text-Hyphen/distinfo new file mode 100644 index 000000000000..c7b938f4fecd --- /dev/null +++ b/textproc/p5-Text-Hyphen/distinfo @@ -0,0 +1,2 @@ +SHA256 (Text-Hyphen-0.11.tar.gz) = 4dcc4fb12d1fc64625e56078d3dcaef26e719ec0f7f5105c575e31a53a2fdae5 +SIZE (Text-Hyphen-0.11.tar.gz) = 30903 diff --git a/textproc/p5-Text-Hyphen/pkg-descr b/textproc/p5-Text-Hyphen/pkg-descr new file mode 100644 index 000000000000..11dc42375cd9 --- /dev/null +++ b/textproc/p5-Text-Hyphen/pkg-descr @@ -0,0 +1,5 @@ +Determine positions for hyphens inside words +This module implements Knuth-Liang algorithm to find positions +inside words where it is possible to insert hyphens to break a line. + +WWW: http://search.cpan.org/dist/Text-Hyphen/ diff --git a/textproc/p5-Text-Hyphen/pkg-plist b/textproc/p5-Text-Hyphen/pkg-plist new file mode 100644 index 000000000000..ac8cdffd4a07 --- /dev/null +++ b/textproc/p5-Text-Hyphen/pkg-plist @@ -0,0 +1,5 @@ +%%SITE_PERL%%/Text/Hyphen.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Hyphen/.packlist +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text/Hyphen +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Text +@dirrmtry %%SITE_PERL%%/Text |