diff options
author | Cheng-Lung Sung <clsung@FreeBSD.org> | 2006-07-22 04:54:01 +0000 |
---|---|---|
committer | Cheng-Lung Sung <clsung@FreeBSD.org> | 2006-07-22 04:54:01 +0000 |
commit | 0d8b6e60d3ed6daa5f7cf30c777c58239287969f (patch) | |
tree | 3273d31099e28b8231a7ea15af454da9c11e4e4a /textproc/p5-Lingua-EN-NamedEntity | |
parent | 5eff238d3047f3fc47c9f97361d6ba65ef3cd683 (diff) | |
download | ports-0d8b6e60d3ed6daa5f7cf30c777c58239287969f.tar.gz ports-0d8b6e60d3ed6daa5f7cf30c777c58239287969f.zip |
Notes
Diffstat (limited to 'textproc/p5-Lingua-EN-NamedEntity')
-rw-r--r-- | textproc/p5-Lingua-EN-NamedEntity/Makefile | 33 | ||||
-rw-r--r-- | textproc/p5-Lingua-EN-NamedEntity/distinfo | 3 | ||||
-rw-r--r-- | textproc/p5-Lingua-EN-NamedEntity/pkg-descr | 17 | ||||
-rw-r--r-- | textproc/p5-Lingua-EN-NamedEntity/pkg-plist | 10 |
4 files changed, 63 insertions, 0 deletions
diff --git a/textproc/p5-Lingua-EN-NamedEntity/Makefile b/textproc/p5-Lingua-EN-NamedEntity/Makefile new file mode 100644 index 000000000000..5f7aea3adc42 --- /dev/null +++ b/textproc/p5-Lingua-EN-NamedEntity/Makefile @@ -0,0 +1,33 @@ +# New ports collection makefile for: p5-Lingua-EN-NamedEntity +# Date created: 2006-07-21 +# Whom: Jin-Shan Tseng <tjs@cdpa.nsysu.edu.tw> +# +# $FreeBSD$ +# + +PORTNAME= Lingua-EN-NamedEntity +PORTVERSION= 1.7 +CATEGORIES= textproc perl5 +MASTER_SITES= ${MASTER_SITE_PERL_CPAN} +MASTER_SITE_SUBDIR= Lingua +PKGNAMEPREFIX= p5- + +MAINTAINER= tjs@cdpa.nsysu.edu.tw +COMMENT= Basic Named Entity Extraction algorithm + +BUILD_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/Compress/Zlib.pm:${PORTSDIR}/archivers/p5-Compress-Zlib \ + ${SITE_PERL}/Lingua/Stem/En.pm:${PORTSDIR}/textproc/p5-Lingua-Stem \ + ${SITE_PERL}/LWP/Simple.pm:${PORTSDIR}/www/p5-libwww +RUN_DEPENDS= ${BUILD_DEPENDS} + +PERL_CONFIGURE= yes + +MAN3= Lingua::EN::NamedEntity.3 + +.include <bsd.port.pre.mk> + +.if ${PERL_LEVEL} < 500600 +IGNORE= requires perl 5.6 or later. Install lang/perl5.8 and try again +.endif + +.include <bsd.port.post.mk> diff --git a/textproc/p5-Lingua-EN-NamedEntity/distinfo b/textproc/p5-Lingua-EN-NamedEntity/distinfo new file mode 100644 index 000000000000..d889d263ba5c --- /dev/null +++ b/textproc/p5-Lingua-EN-NamedEntity/distinfo @@ -0,0 +1,3 @@ +MD5 (Lingua-EN-NamedEntity-1.7.tar.gz) = 47cb8958c96e6d3d0394d8740d5617e0 +SHA256 (Lingua-EN-NamedEntity-1.7.tar.gz) = 9f561b59d5a2bd983abaefdd4d5081a40af2d0801ffa60c95a9df836aacf5a04 +SIZE (Lingua-EN-NamedEntity-1.7.tar.gz) = 21176 diff --git a/textproc/p5-Lingua-EN-NamedEntity/pkg-descr b/textproc/p5-Lingua-EN-NamedEntity/pkg-descr new file mode 100644 index 000000000000..91cf59e77650 --- /dev/null +++ b/textproc/p5-Lingua-EN-NamedEntity/pkg-descr @@ -0,0 +1,17 @@ +"Named entities" is the NLP jargon for proper nouns which +represent people, places, organisations, and so on. + +This module provides a very simple way of extracting these from a text. +If we run the "extract_entities" routine on a piece of news coverage of +recent UK political events, we should expect to see it return a list of +hash references looking like this: + +{ entity => 'Mr Howard', class => 'person', scores => { ... }, }, +{ entity => 'Ministry of Defence', class => 'organisation', ... }, +{ entity => 'Oxfordshire', class => 'place', ... }, + +The additional "scores" hash reference in there breaks down the various +possible classes for this entity in an open-ended scale. + + +WWW: http://search.cpan.org/dist/Lingua-EN-NamedEntity/ diff --git a/textproc/p5-Lingua-EN-NamedEntity/pkg-plist b/textproc/p5-Lingua-EN-NamedEntity/pkg-plist new file mode 100644 index 000000000000..18ea64f7c70d --- /dev/null +++ b/textproc/p5-Lingua-EN-NamedEntity/pkg-plist @@ -0,0 +1,10 @@ +%%SITE_PERL%%/Lingua/EN/NamedEntity.pm +%%SITE_PERL%%/Lingua/EN/NamedEntity/forename +%%SITE_PERL%%/Lingua/EN/NamedEntity/wordlist +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Lingua/EN/NamedEntity/.packlist +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Lingua/EN/NamedEntity +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Lingua/EN +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Lingua +@dirrmtry %%SITE_PERL%%/Lingua/EN/NamedEntity +@dirrmtry %%SITE_PERL%%/Lingua/EN +@dirrmtry %%SITE_PERL%%/Lingua |