From owner-svn-ports-head@FreeBSD.ORG Wed Feb 26 07:18:12 2014 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 E6B99A9C; Wed, 26 Feb 2014 07:18:12 +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 D0D6914F1; Wed, 26 Feb 2014 07:18:12 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s1Q7ICd5068724; Wed, 26 Feb 2014 07:18:12 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s1Q7ICN8068723; Wed, 26 Feb 2014 07:18:12 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201402260718.s1Q7ICN8068723@svn.freebsd.org> From: Martin Wilke Date: Wed, 26 Feb 2014 07:18:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r346123 - head/devel/abi-compliance-checker 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: Wed, 26 Feb 2014 07:18:13 -0000 Author: miwi Date: Wed Feb 26 07:18:12 2014 New Revision: 346123 URL: http://svnweb.freebsd.org/changeset/ports/346123 QAT: https://qat.redports.org/buildarchive/r346123/ Log: - Stage support Modified: head/devel/abi-compliance-checker/Makefile Modified: head/devel/abi-compliance-checker/Makefile ============================================================================== --- head/devel/abi-compliance-checker/Makefile Wed Feb 26 07:17:51 2014 (r346122) +++ head/devel/abi-compliance-checker/Makefile Wed Feb 26 07:18:12 2014 (r346123) @@ -29,8 +29,6 @@ NO_BUILD= yes PLIST_FILES= bin/${PORTNAME}.pl WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} -NO_STAGE= yes - OPTIONS_DEFINE= DOCS .include @@ -50,9 +48,7 @@ PICFLAG?= -fpic PORTDATA= * .endif -.if ${PORT_OPTIONS:MDOCS} PORTDOCS= * -.endif post-patch: @${REINPLACE_CMD} \ @@ -70,15 +66,13 @@ post-patch: ${WRKSRC}/modules/Internals/RegTests.pm do-install: - @${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME}.pl ${PREFIX}/bin -.if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} - @(cd ${WRKSRC}/doc && ${COPYTREE_SHARE} \* ${DOCSDIR}) -.endif + @${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME}.pl ${STAGEDIR}${PREFIX}/bin + @${MKDIR} ${STAGEDIR}${DOCSDIR} + @(cd ${WRKSRC}/doc && ${COPYTREE_SHARE} \* ${STAGEDIR}${DOCSDIR}) .ifndef(NOPORTDATA) - @${MKDIR} ${DATADIR} + @${MKDIR} ${STAGEDIR}${DATADIR} @(cd ${WRKSRC} && ${COPYTREE_SHARE} \ - "modules/Internals modules/*.xml modules/Targets/unix" ${DATADIR}) + "modules/Internals modules/*.xml modules/Targets/unix" ${STAGEDIR}${DATADIR}) .endif .if defined(MAINTAINER_MODE) || defined(PACKAGE_BUILDING)