From owner-svn-ports-all@FreeBSD.ORG Sun May 11 07:09:43 2014 Return-Path: Delivered-To: svn-ports-all@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 4C0D8335; Sun, 11 May 2014 07:09:43 +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 2D6472940; Sun, 11 May 2014 07:09:43 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s4B79hZT009650; Sun, 11 May 2014 07:09:43 GMT (envelope-from tota@svn.freebsd.org) Received: (from tota@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s4B79gQG009648; Sun, 11 May 2014 07:09:42 GMT (envelope-from tota@svn.freebsd.org) Message-Id: <201405110709.s4B79gQG009648@svn.freebsd.org> From: TAKATSU Tomonari Date: Sun, 11 May 2014 07:09:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r353653 - head/devel/quickcheck++ 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, 11 May 2014 07:09:43 -0000 Author: tota Date: Sun May 11 07:09:42 2014 New Revision: 353653 URL: http://svnweb.freebsd.org/changeset/ports/353653 QAT: https://qat.redports.org/buildarchive/r353653/ Log: - Remove indefinite article from COMMENT - Convert USE_BZIP2 to USES - Remove LICENSE_FILE for standard license - Add DOCS to OPTIONS_DEFINE - Support STAGEDIR * Make PORTDOCS and PORTEXAMPLES unconditional to stage - Unmute INSTALL_DATA and COPYTREE_SHARE - Replace tab with a single space after WWW: in pkg-descr Modified: head/devel/quickcheck++/Makefile head/devel/quickcheck++/pkg-descr Modified: head/devel/quickcheck++/Makefile ============================================================================== --- head/devel/quickcheck++/Makefile Sun May 11 06:57:51 2014 (r353652) +++ head/devel/quickcheck++/Makefile Sun May 11 07:09:42 2014 (r353653) @@ -10,25 +10,23 @@ MASTER_SITE_SUBDIR= tota/${PORTNAME} DISTNAME= quickcheck_${PORTVERSION} MAINTAINER= tota@FreeBSD.org -COMMENT= A tool for testing C++ programs automatically, inspired by QuickCheck +COMMENT= Tool for testing C++ programs automatically, inspired by QuickCheck LICENSE= GPLv3 -LICENSE_FILE= ${WRKSRC}/LICENSE -USE_BZIP2= yes +USES= tar:bzip2 NO_BUILD= yes PORTDOCS= COPYRIGHT README PORTEXAMPLES= examples.cc -OPTIONS_DEFINE= DOXYGEN +OPTIONS_DEFINE= DOCS DOXYGEN DOXYGEN_DESC= Build documentation with doxygen -NO_STAGE= yes .include -.if !defined(NOPORTDOCS) && ${PORT_OPTIONS:MDOXYGEN} +.if ${PORT_OPTIONS:MDOCS} && ${PORT_OPTIONS:MDOXYGEN} BUILD_DEPENDS+= doxygen:${PORTSDIR}/devel/doxygen PORTDOCS+= html @@ -37,20 +35,16 @@ pre-install: .endif do-install: - @${MKDIR} ${PREFIX}/include/quickcheck - @${INSTALL_DATA} ${WRKSRC}/quickcheck/* ${PREFIX}/include/quickcheck -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} + @${MKDIR} ${STAGEDIR}${PREFIX}/include/quickcheck + ${INSTALL_DATA} ${WRKSRC}/quickcheck/* ${STAGEDIR}${PREFIX}/include/quickcheck + @${MKDIR} ${STAGEDIR}${DOCSDIR} .for f in COPYRIGHT README - @${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR} .endfor -.if defined(WITH_DOXYGEN) - @cd ${WRKSRC}/doc && ${COPYTREE_SHARE} html ${DOCSDIR} -.endif -.endif -.if !defined(NOPORTEXAMPLES) - @${MKDIR} ${EXAMPLESDIR} - @${INSTALL_DATA} ${WRKSRC}/${PORTEXAMPLES} ${EXAMPLESDIR} +.if ${PORT_OPTIONS:MDOXYGEN} + cd ${WRKSRC}/doc && ${COPYTREE_SHARE} html ${STAGEDIR}${DOCSDIR} .endif + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/${PORTEXAMPLES} ${STAGEDIR}${EXAMPLESDIR} .include Modified: head/devel/quickcheck++/pkg-descr ============================================================================== --- head/devel/quickcheck++/pkg-descr Sun May 11 06:57:51 2014 (r353652) +++ head/devel/quickcheck++/pkg-descr Sun May 11 07:09:42 2014 (r353653) @@ -14,4 +14,4 @@ distribution of test data and to write c The framework also allows the specification of fixed test data, as can be done with more traditional unit testing frameworks. -WWW: http://software.legiasoft.com/quickcheck/ +WWW: http://software.legiasoft.com/quickcheck/