From owner-svn-ports-all@FreeBSD.ORG Mon Dec 30 11:34:41 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7B5A3FE0; Mon, 30 Dec 2013 11:34:41 +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 6722C147B; Mon, 30 Dec 2013 11:34:41 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rBUBYfOi095661; Mon, 30 Dec 2013 11:34:41 GMT (envelope-from wg@svn.freebsd.org) Received: (from wg@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id rBUBYfo9095660; Mon, 30 Dec 2013 11:34:41 GMT (envelope-from wg@svn.freebsd.org) Message-Id: <201312301134.rBUBYfo9095660@svn.freebsd.org> From: William Grzybowski Date: Mon, 30 Dec 2013 11:34:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r338089 - head/security/py-xmlsec 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.17 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: Mon, 30 Dec 2013 11:34:41 -0000 Author: wg Date: Mon Dec 30 11:34:40 2013 New Revision: 338089 URL: http://svnweb.freebsd.org/changeset/ports/338089 Log: security/py-xmlsec: support staging and minor fixes Deleted: head/security/py-xmlsec/pkg-plist Modified: head/security/py-xmlsec/Makefile Modified: head/security/py-xmlsec/Makefile ============================================================================== --- head/security/py-xmlsec/Makefile Mon Dec 30 11:31:14 2013 (r338088) +++ head/security/py-xmlsec/Makefile Mon Dec 30 11:34:40 2013 (r338089) @@ -10,26 +10,24 @@ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= py${PORTNAME}-${PORTVERSION} MAINTAINER= ports@FreeBSD.org -COMMENT= A set of Python bindings for XML Security Library +COMMENT= Python bindings for XML Security Library -LIB_DEPENDS= xmlsec1.3:${PORTSDIR}/security/xmlsec1 +LIB_DEPENDS= libxmlsec1.so:${PORTSDIR}/security/xmlsec1 RUN_DEPENDS= ${PYTHON_SITELIBDIR}/libxml2.py:${PORTSDIR}/textproc/py-libxml2 -USE_PYTHON= 2.2+ +USE_PYTHON= 2 USE_PYDISTUTILS=yes -PYDISTUTILS_PKGNAME= pyxmlsec +PYDISTUTILS_AUTOPLIST= yes DOCSDIR= ${PREFIX}/share/doc/py-${PORTNAME} EXAMPLESDIR= ${PREFIX}/share/examples/py-${PORTNAME} +PORTDOCS= * +PORTEXAMPLES= * -NO_STAGE= yes post-install: -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} - ${CP} -R ${WRKSRC}/docs/html/* ${DOCSDIR} - - @${MKDIR} ${EXAMPLESDIR} - ${CP} -R ${WRKSRC}/examples/* ${EXAMPLESDIR} -.endif + @${MKDIR} ${STAGEDIR}${DOCSDIR} + (cd ${WRKSRC}/docs/html/ && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}/) + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + (cd ${WRKSRC}/examples/ && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}/) .include