From owner-svn-ports-all@freebsd.org Tue Nov 15 09:00:19 2016 Return-Path: Delivered-To: svn-ports-all@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 57C9AC436DB; Tue, 15 Nov 2016 09:00:19 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 17E2DF92; Tue, 15 Nov 2016 09:00:19 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uAF90IVU066527; Tue, 15 Nov 2016 09:00:18 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uAF90IQN066526; Tue, 15 Nov 2016 09:00:18 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201611150900.uAF90IQN066526@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 15 Nov 2016 09:00:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r426151 - head/math/py-gnuplot X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Nov 2016 09:00:19 -0000 Author: amdmi3 Date: Tue Nov 15 09:00:18 2016 New Revision: 426151 URL: https://svnweb.freebsd.org/changeset/ports/426151 Log: - Add LICENSE - Add NO_ARCH - Switch to options helpers Modified: head/math/py-gnuplot/Makefile Modified: head/math/py-gnuplot/Makefile ============================================================================== --- head/math/py-gnuplot/Makefile Tue Nov 15 08:43:10 2016 (r426150) +++ head/math/py-gnuplot/Makefile Tue Nov 15 09:00:18 2016 (r426151) @@ -12,16 +12,21 @@ DISTNAME= gnuplot-py-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Python interface to gnuplot plotting program +LICENSE= LGPL21 + BUILD_DEPENDS= ${PYNUMPY} RUN_DEPENDS= gnuplot:math/gnuplot \ ${PYNUMPY} USES= python USE_PYTHON= distutils autoplist +NO_ARCH= yes PORTDOCS= * -post-install: +OPTIONS_DEFINE= DOCS + +post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} @(cd ${WRKSRC}/doc && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR})