blob: 40b674982d276e7d352db1e08a23fae1d973c3fe (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
# Created by: Cheng-Lung Sung <clsung@dragon2.net>
# $FreeBSD$
PORTNAME= Text-NSP
PORTVERSION= 1.27
CATEGORIES= textproc perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-
MAINTAINER= perl@FreeBSD.org
COMMENT= Perl5 modules for Ngram Statistics Package
USES= perl5
USE_PERL5= configure
MAN1= combig.pl.1 count.pl.1 \
count2huge.pl.1 \
find-compounds.pl.1 \
huge-count.pl.1 \
huge-delete.pl.1 huge-split.pl.1 \
huge-merge.pl.1 huge-sort.pl.1 \
kocos.pl.1 rank.pl.1 \
statistic.pl.1
MAN3= Text::NSP.3 \
Text::NSP::Measures.3 \
Text::NSP::Measures::2D.3 \
Text::NSP::Measures::2D::CHI.3 \
Text::NSP::Measures::2D::CHI::phi.3 \
Text::NSP::Measures::2D::CHI::tscore.3 \
Text::NSP::Measures::2D::CHI::x2.3 \
Text::NSP::Measures::2D::Dice.3 \
Text::NSP::Measures::2D::Dice::dice.3 \
Text::NSP::Measures::2D::Dice::jaccard.3 \
Text::NSP::Measures::2D::Fisher.3 \
Text::NSP::Measures::2D::Fisher2.3 \
Text::NSP::Measures::2D::Fisher2::left.3 \
Text::NSP::Measures::2D::Fisher2::right.3 \
Text::NSP::Measures::2D::Fisher2::twotailed.3 \
Text::NSP::Measures::2D::Fisher::left.3 \
Text::NSP::Measures::2D::Fisher::right.3 \
Text::NSP::Measures::2D::Fisher::twotailed.3 \
Text::NSP::Measures::2D::MI.3 \
Text::NSP::Measures::2D::MI::ll.3 \
Text::NSP::Measures::2D::MI::pmi.3 \
Text::NSP::Measures::2D::MI::ps.3 \
Text::NSP::Measures::2D::MI::tmi.3 \
Text::NSP::Measures::2D::odds.3 \
Text::NSP::Measures::3D.3 \
Text::NSP::Measures::3D::MI.3 \
Text::NSP::Measures::3D::MI::ll.3 \
Text::NSP::Measures::3D::MI::pmi.3 \
Text::NSP::Measures::3D::MI::ps.3 \
Text::NSP::Measures::3D::MI::tmi.3 \
Text::NSP::Measures::4D.3 \
Text::NSP::Measures::4D::MI.3 \
Text::NSP::Measures::4D::MI::ll.3
DOCS= CHANGES README doc/FAQ.pod doc/NSP-Class-diagram.pdf \
doc/NSP-Class-diagram.png doc/README.pod doc/TODO.pod \
doc/USAGE.pod doc/cicling2003.pdf doc/cicling2003.ps \
.ifndef (NOPORTDOCS)
post-install:
@${MKDIR} ${DOCSDIR}
.for FILE in ${DOCS}
@${INSTALL_DATA} ${WRKSRC}/${FILE} ${DOCSDIR}
.endfor
@${ECHO_MSG} "===> Installing documentation in ${DOCSDIR}"
.endif
.include <bsd.port.mk>
|