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 40109 2008-09-20 21:25:53Z ryandesign macports.org $ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup python24 1.0 |
---|
6 | |
---|
7 | Name: py-nltk |
---|
8 | Version: 0.9.6 |
---|
9 | epoch 1 |
---|
10 | Category: python textproc |
---|
11 | Platform: darwin |
---|
12 | Maintainers: sb@csse.unimelb.edu.au |
---|
13 | Description: Natural Language Toolkit |
---|
14 | Long Description: NLTK is Python modules for research and development in natural language processing |
---|
15 | Homepage: http://www.nltk.org/ |
---|
16 | master_sites http://code.google.com/p/nltk/ |
---|
17 | distname nltk-${version} |
---|
18 | |
---|
19 | checksums md5 8982d1f8fe7d8f3c81e545363df46588 sha1 886680fd8b5dc5139b28dec31fd1282460049afd rmd160 e704cfc77c37214019030574583d6df804948452 |
---|
20 | |
---|
21 | depends_lib port:py-numpy port:py-matplotlib |
---|
22 | |
---|
23 | post-destroot { |
---|
24 | set docdir ${destroot}${prefix}/share/doc/${name}-${version} |
---|
25 | xinstall -d ${docdir} |
---|
26 | xinstall -m 644 -W ${worksrcpath} LICENSE.TXT README.TXT ${docdir} |
---|
27 | } |
---|