svn commit: r363531 - in head/devel: . cpptest
Kurt Jaeger
pi at FreeBSD.org
Thu Jul 31 05:28:37 UTC 2014
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 at 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 at 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
+
+MAINTAINER= fernando.apesteguia at 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
+
+.include <bsd.port.mk>
Added: head/devel/cpptest/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/cpptest/distinfo Thu Jul 31 05:28:35 2014 (r363531)
@@ -0,0 +1,2 @@
+SHA256 (cpptest-1.1.2.tar.gz) = 9e4fdf156b709397308536eb6b921e3aea1f463c6613f9a0c1dfec9614386027
+SIZE (cpptest-1.1.2.tar.gz) = 458982
Added: head/devel/cpptest/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/cpptest/pkg-descr Thu Jul 31 05:28:35 2014 (r363531)
@@ -0,0 +1,7 @@
+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/
Added: head/devel/cpptest/pkg-plist
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/cpptest/pkg-plist Thu Jul 31 05:28:35 2014 (r363531)
@@ -0,0 +1,16 @@
+include/cpptest-assert.h
+include/cpptest-collectoroutput.h
+include/cpptest-compileroutput.h
+include/cpptest-htmloutput.h
+include/cpptest-output.h
+include/cpptest-source.h
+include/cpptest-suite.h
+include/cpptest-textoutput.h
+include/cpptest-time.h
+include/cpptest.h
+lib/libcpptest.a
+lib/libcpptest.so
+lib/libcpptest.so.0
+lib/libcpptest.so.0.0.7
+libdata/pkgconfig/libcpptest.pc
+ at dirrmtry lib/pkgconfig
More information about the svn-ports-head
mailing list