From owner-svn-ports-all@freebsd.org Sun Feb 5 12:50:47 2017 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 75E7CCD1BC1; Sun, 5 Feb 2017 12:50:47 +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 37F0F1B2A; Sun, 5 Feb 2017 12:50:47 +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 v15Cok2j068680; Sun, 5 Feb 2017 12:50:46 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v15Cokd4068670; Sun, 5 Feb 2017 12:50:46 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201702051250.v15Cokd4068670@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 5 Feb 2017 12:50:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r433399 - head/accessibility/py-papi 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: Sun, 05 Feb 2017 12:50:47 -0000 Author: amdmi3 Date: Sun Feb 5 12:50:46 2017 New Revision: 433399 URL: https://svnweb.freebsd.org/changeset/ports/433399 Log: - Add LICENSE - Switch to options helpers - Pet portlint Modified: head/accessibility/py-papi/Makefile Modified: head/accessibility/py-papi/Makefile ============================================================================== --- head/accessibility/py-papi/Makefile Sun Feb 5 12:39:12 2017 (r433398) +++ head/accessibility/py-papi/Makefile Sun Feb 5 12:50:46 2017 (r433399) @@ -11,6 +11,9 @@ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= ports@FreeBSD.org COMMENT= ATK accessibility wrapper for python +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/COPYING + USES= pkgconfig python:2 USE_GNOME= atk USE_PYTHON= autoplist distutils @@ -21,11 +24,11 @@ EXAMPLES= atkaction.py atkapplication.py OPTIONS_DEFINE= EXAMPLES post-patch: - ${REINPLACE_CMD} -i "" -e 's|: docfiles|: []|g' ${WRKSRC}/setup.py + @${REINPLACE_CMD} -i "" -e 's|: docfiles|: []|g' ${WRKSRC}/setup.py -post-install: - @${INSTALL} -d ${STAGEDIR}${EXAMPLESDIR}/ - @cd ${WRKSRC}/doc/examples && \ +post-install-EXAMPLES-on: + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/ + cd ${WRKSRC}/doc/examples && \ ${INSTALL_DATA} ${EXAMPLES} ${STAGEDIR}${EXAMPLESDIR}/ .include