From owner-svn-ports-head@freebsd.org Tue May 10 19:53:46 2016 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 698FBB368EE; Tue, 10 May 2016 19:53:46 +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 2080417A6; Tue, 10 May 2016 19:53:46 +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 u4AJrjGm050693; Tue, 10 May 2016 19:53:45 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u4AJrjne050692; Tue, 10 May 2016 19:53:45 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201605101953.u4AJrjne050692@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 10 May 2016 19:53:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r414960 - head/graphics/py-pyggel 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.22 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: Tue, 10 May 2016 19:53:46 -0000 Author: amdmi3 Date: Tue May 10 19:53:45 2016 New Revision: 414960 URL: https://svnweb.freebsd.org/changeset/ports/414960 Log: - Fix dependency - Fix LICENSE_COMB - Switch to options helpers - Add NO_ARCH Approved by: portmgr blanket Modified: head/graphics/py-pyggel/Makefile Modified: head/graphics/py-pyggel/Makefile ============================================================================== --- head/graphics/py-pyggel/Makefile Tue May 10 19:51:23 2016 (r414959) +++ head/graphics/py-pyggel/Makefile Tue May 10 19:53:45 2016 (r414960) @@ -15,40 +15,38 @@ MAINTAINER= koalative@gmail.com COMMENT= Python Graphical Game Engine and Libraries LICENSE= LGPL3 PD -LICENSE_COMB= dual +LICENSE_COMB= multi RUN_DEPENDS= ${PYNUMPY} \ ${PYGAME} \ - ${PYTHON_PKGNAMEPREFIX}opengl>=0:graphics/py-PyOpenGL \ + ${PYTHON_PKGNAMEPREFIX}PyOpenGL>=0:graphics/py-PyOpenGL \ ${PYTHON_PKGNAMEPREFIX}pillow>=0:graphics/py-pillow USES= dos2unix python:2 zip DOS2UNIX_GLOB= *.mtl *.py *.txt USE_PYTHON= autoplist distutils NO_BUILD= yes +NO_ARCH= yes PORTDOCS= Readme.txt PORTEXAMPLES= * OPTIONS_DEFINE= DOCS EXAMPLES -.include - post-patch: @${REINPLACE_CMD} -e 's|data_files =|#data_files =|' \ ${WRKSRC}/setup.py -post-install: +post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} -.if ${PORT_OPTIONS:MEXAMPLES} +post-install-EXAMPLES-on: @(cd ${WRKSRC}/examples_and_tutorials && ${COPYTREE_SHARE} . \ ${STAGEDIR}${EXAMPLESDIR}/examples_and_tutorials) @(cd ${WRKSRC} && ${COPYTREE_SHARE} data ${STAGEDIR}${EXAMPLESDIR}) -. for f in test_FBO test_camera test_gui test_mesh test_particle test_texture_swap +.for f in test_FBO test_camera test_gui test_mesh test_particle test_texture_swap @(cd ${WRKSRC} && ${COPYTREE_SHARE} ${f}.py ${STAGEDIR}${EXAMPLESDIR}) -. endfor -.endif +.endfor .include