1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id: Portfile 51994 2009-06-08 04:31:28Z macsforever2000@macports.org $ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup python26 1.0 |
---|
6 | |
---|
7 | name py26-nltk |
---|
8 | version 2.0b5 |
---|
9 | categories python textproc |
---|
10 | platforms darwin |
---|
11 | maintainers gmail.com:stevenbird1 |
---|
12 | description Natural Language Toolkit |
---|
13 | long_description NLTK is Python modules for research and development in natural language processing |
---|
14 | homepage http://www.nltk.org/ |
---|
15 | master_sites googlecode:nltk |
---|
16 | distname nltk-${version} |
---|
17 | |
---|
18 | checksums md5 a2af58d77942e3e484494783e3bd77f2 \ |
---|
19 | sha1 32431c00e544fba9bc898dc3c94c0213d8360751 \ |
---|
20 | rmd160 d572ef4bb098fd8ef032842aa9e667c664edd610 |
---|
21 | |
---|
22 | depends_lib port:py26-numpy \ |
---|
23 | port:py26-matplotlib \ |
---|
24 | port:py26-yaml |
---|
25 | |
---|
26 | post-destroot { |
---|
27 | set docdir ${destroot}${prefix}/share/doc/${name}-${version} |
---|
28 | xinstall -d ${docdir} |
---|
29 | xinstall -m 644 -W ${worksrcpath} \ |
---|
30 | LICENSE.txt \ |
---|
31 | README.txt \ |
---|
32 | INSTALL.txt \ |
---|
33 | ${docdir} |
---|
34 | } |
---|