From owner-svn-ports-head@FreeBSD.ORG Thu Jul 31 08:11:41 2014 Return-Path: Delivered-To: svn-ports-head@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 EB821BF; Thu, 31 Jul 2014 08:11:40 +0000 (UTC) Received: from mail.issp.ac.ru (mail.issp.ac.ru [77.236.34.3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "relay.issp.ac.ru", Issuer "relay.issp.ac.ru" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 6279B2851; Thu, 31 Jul 2014 08:11:40 +0000 (UTC) Received: from mercury.issp.ac.ru [77.236.34.155:22237] (HELO/EHLO mercury.ph.man.ac.uk, authenticated with PLAIN) by mail.issp.ac.ru with ESMTP/inet id s6V8Bri8072375 (using TLSv1/SSLv3, with cipher DHE-RSA-AES256-SHA (256 bits), verified NO) Thu, 31 Jul 2014 12:11:53 +0400 (MSK) X-Authentication-Warning: mail.issp.ac.ru: Host mercury.issp.ac.ru [77.236.34.155] claimed to be mercury.ph.man.ac.uk From: Max Brazhnikov To: Kurt Jaeger Subject: Re: svn commit: r363531 - in head/devel: . cpptest Date: Thu, 31 Jul 2014 08:11:30 +0000 Message-ID: <1614843.ry8OvODGd7@mercury.ph.man.ac.uk> User-Agent: KMail/4.12.5 (FreeBSD/9.3-PRERELEASE; KDE/4.12.5; amd64; ; ) In-Reply-To: <201407310528.s6V5SaVZ067722@svn.freebsd.org> References: <201407310528.s6V5SaVZ067722@svn.freebsd.org> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="UTF-8" Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 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: Thu, 31 Jul 2014 08:11:41 -0000 On Thu, 31 Jul 2014 05:28:36 +0000Thu Jul 31 05:28:35 2014 Kurt Jaeger wrote: > Author: pi > Date: Thu Jul 31 05:28:35 2014 > New Revision: 363531 > URL: http://svnweb.freebsd.org/changeset/ports/363531 > QAT: https://qat.redports.org/buildarchive/r363531/ > > Log: > New port: devel/cpptest > > CppTest is a portable and powerful, yet simple, unit testing framework for > handling automated tests in C++. The focus lies on usability and extendability. > > Several output formats, including simple text output, compiler-like output and > HTML, are supported and new ones are easily added. > > WWW: http://cpptest.sourceforge.net/ > > PR: 192279 > Submitted by: fernando.apesteguia@gmail.com > > Added: > head/devel/cpptest/ > head/devel/cpptest/Makefile (contents, props changed) > head/devel/cpptest/distinfo (contents, props changed) > head/devel/cpptest/pkg-descr (contents, props changed) > head/devel/cpptest/pkg-plist (contents, props changed) > Modified: > head/devel/Makefile > > Modified: head/devel/Makefile > ============================================================================== > --- head/devel/Makefile Thu Jul 31 03:17:54 2014 (r363530) > +++ head/devel/Makefile Thu Jul 31 05:28:35 2014 (r363531) > @@ -264,6 +264,7 @@ > SUBDIR += cpan-upload-http > SUBDIR += cppcheck > SUBDIR += cppi > + SUBDIR += cpptest > SUBDIR += cppunit > SUBDIR += cproto > SUBDIR += cpuflags > > Added: head/devel/cpptest/Makefile > ============================================================================== > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/devel/cpptest/Makefile Thu Jul 31 05:28:35 2014 (r363531) > @@ -0,0 +1,24 @@ > +# Created by: Fernando Apesteguia > +# $FreeBSD$ > + > +PORTNAME= cpptest > +PORTVERSION= 1.1.2 > +CATEGORIES= devel > +MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} > +#http://downloads.sourceforge.net/project/cpptest/cpptest/cpptest-1.1.2/cpptest-1.1.2.tar.gz?r=http%3A%2F%2Fsourceforge.net%2Fprojects%2Fcpptest%2F&ts=1406744543&use_mirror=heanet you forgot to remove this ^ > +MAINTAINER= fernando.apesteguia@gmail.com > +COMMENT= Unit testing framework for handling automated tests in C++ > + > +LICENSE= LGPL3 > + > +GNU_CONFIGURE= yes > +USES= gmake libtool > +USE_LDCONFIG= yes > +MAKE_ARGS= CC=${CC} CCC=${CXX} > + > +post-install: > + @${MV} ${STAGEDIR}${PREFIX}/lib/pkgconfig/libcpptest.pc ${STAGEDIR}${PREFIX}/libdata/pkgconfig/libcpptest.pc > + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libcpptest.so.0.0.7 USES+= pathfix INSTALL_TARGET= install-strip