From owner-svn-ports-all@FreeBSD.ORG Tue Feb 25 16:08:19 2014 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 EA618B47; Tue, 25 Feb 2014 16:08:19 +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 D647A19BB; Tue, 25 Feb 2014 16:08:19 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s1PG8Je8089123; Tue, 25 Feb 2014 16:08:19 GMT (envelope-from ehaupt@svn.freebsd.org) Received: (from ehaupt@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s1PG8Jwt089122; Tue, 25 Feb 2014 16:08:19 GMT (envelope-from ehaupt@svn.freebsd.org) Message-Id: <201402251608.s1PG8Jwt089122@svn.freebsd.org> From: Emanuel Haupt Date: Tue, 25 Feb 2014 16:08:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r346040 - head/textproc/mathml-xsd 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: Tue, 25 Feb 2014 16:08:20 -0000 Author: ehaupt Date: Tue Feb 25 16:08:19 2014 New Revision: 346040 URL: http://svnweb.freebsd.org/changeset/ports/346040 QAT: https://qat.redports.org/buildarchive/r346040/ Log: - Support staging - Don't install VCS files - Use COPYTREE_SHARE instead of CP Modified: head/textproc/mathml-xsd/Makefile Modified: head/textproc/mathml-xsd/Makefile ============================================================================== --- head/textproc/mathml-xsd/Makefile Tue Feb 25 15:56:59 2014 (r346039) +++ head/textproc/mathml-xsd/Makefile Tue Feb 25 16:08:19 2014 (r346040) @@ -3,7 +3,7 @@ PORTNAME= mathml-xsd PORTVERSION= 2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= textproc MASTER_SITES= http://www.w3.org/Math/XMLSchema/ DISTNAME= mathml${PORTVERSION} @@ -14,16 +14,12 @@ COMMENT= The MathML XML Schema NO_BUILD= yes -NO_STAGE= yes post-extract: - @${FIND} ${WRKSRC} -name "CVS" -type d -delete + @${FIND} ${WRKSRC} -name "CVS" -type d -exec rm -rf {} +; + @${RM} ${WRKSRC}/content/tokens.xsd.~1.3.~ do-install: - @${MKDIR} ${DATADIR} - @${CP} -R ${WRKSRC}/* ${DATADIR} - @${FIND} ${DATADIR} -type f | \ - ${SED} 's,^${PREFIX}/,,' >> ${TMPPLIST} - @${FIND} ${DATADIR} -type d | ${SORT} -r | \ - ${SED} 's,^${PREFIX}/,@dirrm ,' >> ${TMPPLIST} + ${MKDIR} ${STAGEDIR}${DATADIR} + cd ${WRKSRC} && ${COPYTREE_SHARE} \* ${STAGEDIR}${DATADIR} .include