From owner-svn-ports-head@freebsd.org Thu Aug 6 07:07:34 2015 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 36AFB9B50CA; Thu, 6 Aug 2015 07:07:34 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 27BE81A2E; Thu, 6 Aug 2015 07:07:34 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.14.9/8.14.9) with ESMTP id t7677YgJ085605; Thu, 6 Aug 2015 07:07:34 GMT (envelope-from lwhsu@FreeBSD.org) Received: (from lwhsu@localhost) by repo.freebsd.org (8.14.9/8.14.9/Submit) id t7677YoX085604; Thu, 6 Aug 2015 07:07:34 GMT (envelope-from lwhsu@FreeBSD.org) Message-Id: <201508060707.t7677YoX085604@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lwhsu set sender to lwhsu@FreeBSD.org using -f From: Li-Wen Hsu Date: Thu, 6 Aug 2015 07:07:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393635 - head/textproc/py-snowballstemmer X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 Aug 2015 07:07:34 -0000 Author: lwhsu Date: Thu Aug 6 07:07:33 2015 New Revision: 393635 URL: https://svnweb.freebsd.org/changeset/ports/393635 Log: - Correct license - Add textproc/py-pystemmer to RUN_DEPENDS for acceleration Approved by: kmoore Modified: head/textproc/py-snowballstemmer/Makefile Modified: head/textproc/py-snowballstemmer/Makefile ============================================================================== --- head/textproc/py-snowballstemmer/Makefile Thu Aug 6 07:02:53 2015 (r393634) +++ head/textproc/py-snowballstemmer/Makefile Thu Aug 6 07:07:33 2015 (r393635) @@ -2,16 +2,27 @@ 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