2003-11-03 16:42:33 +01:00
|
|
|
# ex:ts=8
|
|
|
|
# Ports collection makefile for: nltk
|
|
|
|
# Date created: Oct 30, 2003
|
|
|
|
# Whom: clsung
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= nltk
|
2005-10-05 08:58:28 +02:00
|
|
|
PORTVERSION= 1.4.4
|
2003-11-03 16:42:33 +01:00
|
|
|
CATEGORIES= textproc python
|
|
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
|
|
|
2004-08-20 04:56:44 +02:00
|
|
|
MAINTAINER= clsung@FreeBSD.org
|
2003-11-03 16:42:33 +01:00
|
|
|
COMMENT= Natural language toolkit written in python
|
|
|
|
|
2004-07-22 03:43:23 +02:00
|
|
|
USE_PYTHON= 2.3+
|
2003-11-03 16:42:33 +01:00
|
|
|
USE_PYDISTUTILS= yes
|
|
|
|
USE_PYTHON_PREFIX= yes
|
|
|
|
|
2004-03-19 23:56:30 +01:00
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
|
|
|
|
.if ${ARCH} == "alpha" && ${OSVERSION} < 500000
|
2006-08-14 07:05:27 +02:00
|
|
|
BROKEN= Coredump during build on alpha 4.x
|
2004-03-19 23:56:30 +01:00
|
|
|
.endif
|
|
|
|
|
2004-07-22 03:43:23 +02:00
|
|
|
post-install:
|
|
|
|
@${FIND} ${PYTHON_SITELIBDIR}/nltk ! -type d | \
|
2007-08-04 13:41:30 +02:00
|
|
|
${SED} 's,^${PREFIX}/,,' >> ${TMPPLIST}
|
2004-07-22 03:43:23 +02:00
|
|
|
@${FIND} ${PYTHON_SITELIBDIR}/nltk -type d | ${SORT} -r | \
|
2007-08-04 13:41:30 +02:00
|
|
|
${SED} 's,^${PREFIX}/,@dirrm ,' >> ${TMPPLIST}
|
2004-07-22 03:43:23 +02:00
|
|
|
|
2004-03-19 23:56:30 +01:00
|
|
|
.include <bsd.port.post.mk>
|