Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 31 Jul 2014 08:11:30 +0000
From:      Max Brazhnikov <makc@freebsd.org>
To:        Kurt Jaeger <pi@freebsd.org>
Cc:        svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org
Subject:   Re: svn commit: r363531 - in head/devel: . cpptest
Message-ID:  <1614843.ry8OvODGd7@mercury.ph.man.ac.uk>
In-Reply-To: <201407310528.s6V5SaVZ067722@svn.freebsd.org>
References:  <201407310528.s6V5SaVZ067722@svn.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help
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 <fernando.apesteguia@gmail.com>
> +# $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




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?1614843.ry8OvODGd7>