From owner-svn-ports-head@FreeBSD.ORG Fri Dec 27 10:09:04 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 78041BD2; Fri, 27 Dec 2013 10:09:04 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 644621211; Fri, 27 Dec 2013 10:09:04 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rBRA94oZ068629; Fri, 27 Dec 2013 10:09:04 GMT (envelope-from wg@svn.freebsd.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id rBRA94g1068628; Fri, 27 Dec 2013 10:09:04 GMT (envelope-from wg@svn.freebsd.org) Message-Id: <201312271009.rBRA94g1068628@svn.freebsd.org> From: William Grzybowski Date: Fri, 27 Dec 2013 10:09:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r337682 - head/devel/py-fusefs 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.17 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: Fri, 27 Dec 2013 10:09:04 -0000 Author: wg Date: Fri Dec 27 10:09:03 2013 New Revision: 337682 URL: http://svnweb.freebsd.org/changeset/ports/337682 Log: devel/py-fusefs: support staging and minor fixes - Support staging - Switch from easy_install - Use auto plist - Unmute install commands Deleted: head/devel/py-fusefs/pkg-plist Modified: head/devel/py-fusefs/Makefile Modified: head/devel/py-fusefs/Makefile ============================================================================== --- head/devel/py-fusefs/Makefile Fri Dec 27 10:04:01 2013 (r337681) +++ head/devel/py-fusefs/Makefile Fri Dec 27 10:09:03 2013 (r337682) @@ -13,29 +13,23 @@ COMMENT= FUSE Python bindings USES= fuse pkgconfig iconv USE_PYTHON= yes -USE_PYDISTUTILS=easy_install +USE_PYDISTUTILS=yes +PYDISTUTILS_AUTOPLIST= yes + PORTDOCS= AUTHORS Changelog FAQ INSTALL README.1st README.historic \ README.new_fusepy_api PORTEXAMPLES= _find_fuse_parts.py hello.py xmp.py -PYDISTUTILS_PKGNAME= fuse-python -PYDISTUTILS_INSTALLARGS=-Z -O 1 -N -S ${PYTHON_SITELIBDIR} ${WRKSRC}/dist/${PYEASYINSTALL_EGG} -PYEASYINSTALL_ARCHDEP= yes DOCSDIR?= ${PREFIX}/share/doc/py-fusefs EXAMPLESDIR?= ${PREFIX}/share/examples/py-fusefs -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e '/libs =/s|$$| + " ${ICONV_LIB}"|'\ ${WRKSRC}/setup.py post-install: -.ifndef NOPORTDOCS - @${INSTALL} -d ${DOCSDIR}/ - @cd ${WRKSRC}/&&${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}/ -.endif -.ifndef NOPORTEXAMPLES - @${INSTALL} -d ${EXAMPLESDIR}/ - @cd ${WRKSRC}/example/&&${INSTALL_DATA} ${PORTEXAMPLES} ${EXAMPLESDIR}/ -.endif + @${INSTALL} -d ${STAGEDIR}${DOCSDIR}/ + cd ${WRKSRC}/ && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}/ + @${INSTALL} -d ${STAGEDIR}${EXAMPLESDIR}/ + cd ${WRKSRC}/example/ && ${INSTALL_DATA} ${PORTEXAMPLES} ${STAGEDIR}${EXAMPLESDIR}/ .include