From owner-svn-ports-all@FreeBSD.ORG Sun Jun 15 03:06:08 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 BDBCED29; Sun, 15 Jun 2014 03:06:08 +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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AB833285C; Sun, 15 Jun 2014 03:06:08 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5F3687M053763; Sun, 15 Jun 2014 03:06:08 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5F368aH053762; Sun, 15 Jun 2014 03:06:08 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201406150306.s5F368aH053762@svn.freebsd.org> From: Martin Wilke Date: Sun, 15 Jun 2014 03:06:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r357820 - head/devel/api-sanity-autotest 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.18 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: Sun, 15 Jun 2014 03:06:08 -0000 Author: miwi Date: Sun Jun 15 03:06:08 2014 New Revision: 357820 URL: http://svnweb.freebsd.org/changeset/ports/357820 QAT: https://qat.redports.org/buildarchive/r357820/ Log: - Stage support PR: 191038 Modified: head/devel/api-sanity-autotest/Makefile Modified: head/devel/api-sanity-autotest/Makefile ============================================================================== --- head/devel/api-sanity-autotest/Makefile Sun Jun 15 03:05:23 2014 (r357819) +++ head/devel/api-sanity-autotest/Makefile Sun Jun 15 03:06:08 2014 (r357820) @@ -17,7 +17,8 @@ LICENSE_COMB= dual RUN_DEPENDS= ${LOCALBASE}/bin/abi-compliance-checker.pl:${PORTSDIR}/devel/abi-compliance-checker -USES= perl5 +USES= perl5 shebangfix +SHEBANG_FILES= ${PORTNAME}.pl .if defined(MAINTAINER_MODE) || defined(PACKAGE_BUILDING) BUILD_DEPENDS= ${LOCALBASE}/bin/abi-compliance-checker.pl:${PORTSDIR}/devel/abi-compliance-checker @@ -30,8 +31,6 @@ NO_BUILD= yes PLIST_FILES= bin/${PORTNAME}.pl WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} -NO_STAGE= yes - OPTIONS_DEFINE= DOCS .include @@ -56,7 +55,7 @@ post-patch: ${WRKSRC}/modules/Internals/RegTests.pm do-install: - @${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME}.pl ${PREFIX}/bin + @${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME}.pl ${STAGEDIR}${PREFIX}/bin .if defined(MAINTAINER_MODE) || defined(PACKAGE_BUILDING) check regression-test test: build @@ -64,12 +63,10 @@ check regression-test test: build .endif -.if ${PORT_OPTIONS:MDOCS} PORTDOCS= Changes.html Descriptor.html Options.html Readme.html SpecType.html post-install: - @${MKDIR} ${DOCSDIR} - @(cd ${WRKSRC}/doc; ${INSTALL_MAN} ${PORTDOCS} ${DOCSDIR}) + @${MKDIR} ${STAGEDIR}${DOCSDIR} + @(cd ${WRKSRC}/doc; ${INSTALL_MAN} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}) -.endif .include