Import of pkgsrc-2013Q2

This commit is contained in:
2013-09-26 17:14:40 +02:00
commit 785076ae39
74991 changed files with 4380255 additions and 0 deletions

14
devel/cppunit/DESCR Normal file
View File

@@ -0,0 +1,14 @@
CppUnit is a C++ unit testing framework that started its life as a port
of JUnit to C++ by Michael Feathers.
It features:
* XML output with hooks for addition data
* Compiler-like text output to integrate with an IDE
* Helper macros for easier test suite declaration
* Hierachical test fixture support
* Test registry to reduce recompilation need
* Test plug-in for faster compile/test cycle
* Protector to encapsulate test execution
* MfCTestRunner
* QT based graphic test runner

27
devel/cppunit/Makefile Normal file
View File

@@ -0,0 +1,27 @@
# $NetBSD: Makefile,v 1.24 2012/10/31 11:16:48 asau Exp $
DISTNAME= cppunit-1.13.1
CATEGORIES= devel
MASTER_SITES= http://dev-www.libreoffice.org/src/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://www.freedesktop.org/wiki/Software/cppunit
COMMENT= C++ unit testing framework
LICENSE= gnu-lgpl-v2.1
USE_LANGUAGES= c c++
USE_LIBTOOL= yes
USE_TOOLS+= gmake
GNU_CONFIGURE= yes
PKGCONFIG_OVERRIDE= cppunit.pc.in
SUBST_CLASSES+= rpath
SUBST_SED.rpath= -e s';-L@libdir@;${COMPILER_RPATH_FLAG}@libdir@ -L@libdir@;g'
SUBST_FILES.rpath= cppunit-config.in
SUBST_STAGE.rpath= pre-configure
SUBST_MESSAGE.rpath= Adding rpath to cppunit-config.
.include "options.mk"
.include "../../mk/bsd.pkg.mk"

1510
devel/cppunit/PLIST Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,14 @@
# $NetBSD: buildlink3.mk,v 1.9 2012/05/07 01:53:20 dholland Exp $
BUILDLINK_TREE+= cppunit
.if !defined(CPPUNIT_BUILDLINK3_MK)
CPPUNIT_BUILDLINK3_MK:=
BUILDLINK_API_DEPENDS.cppunit+= cppunit>=1.10.2
BUILDLINK_ABI_DEPENDS.cppunit+= cppunit>=1.10.2nb5
BUILDLINK_PKGSRCDIR.cppunit?= ../../devel/cppunit
BUILDLINK_CPPFLAGS.cppunit+= -I${BUILDLINK_PREFIX.cppunit}/include/cppunit
.endif # CPPUNIT_BUILDLINK3_MK
BUILDLINK_TREE+= -cppunit

5
devel/cppunit/distinfo Normal file
View File

@@ -0,0 +1,5 @@
$NetBSD: distinfo,v 1.7 2012/10/02 17:17:45 wiz Exp $
SHA1 (cppunit-1.13.1.tar.gz) = 8dc813a57c0c7a06e7e68dd38bdc7238f954f4ab
RMD160 (cppunit-1.13.1.tar.gz) = b26d35b4e11aca77a379149fc39b0c6d2e444836
Size (cppunit-1.13.1.tar.gz) = 841334 bytes

17
devel/cppunit/options.mk Normal file
View File

@@ -0,0 +1,17 @@
# $NetBSD: options.mk,v 1.1 2012/05/12 05:33:11 adam Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.cppunit
PKG_SUPPORTED_OPTIONS= doc
PKG_SUGGESTED_OPTIONS= # empty
.include "../../mk/bsd.options.mk"
PLIST_VARS+= doc
.if !empty(PKG_OPTIONS:Mdoc)
BUILD_DEPENDS+= doxygen>=1.6.3:../../devel/doxygen
CONFIGURE_ARGS+= --enable-doxygen
PLIST.doc= yes
.else
CONFIGURE_ARGS+= --disable-doxygen
.endif