Index: head/textproc/py-snowballstemmer/Makefile =================================================================== --- head/textproc/py-snowballstemmer/Makefile (revision 393634) +++ head/textproc/py-snowballstemmer/Makefile (revision 393635) @@ -1,17 +1,28 @@ # $FreeBSD$ PORTNAME= snowballstemmer PORTVERSION= 1.2.0 +PORTREVISION= 1 CATEGORIES= textproc python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= kmoore@FreeBSD.org -COMMENT= Pure Python stemming library +COMMENT= Snowball stemming library collection for Python -LICENSE= MIT +LICENSE= BSD2CLAUSE USES= python USE_PYTHON= distutils autoplist + +OPTIONS_DEFINE= PYSTEMMER +OPTIONS_DEFAULT=PYSTEMMER +PYSTEMMER_DESC= Use PyStemmer to accelerate + +.include + +.if ${PORT_OPTIONS:MPYSTEMMER} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pystemmer>0:${PORTSDIR}/textproc/py-pystemmer +.endif .include