pkgsrc/devel/cutter/Makefile

40 lines
1,003 B
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.71 2020/08/17 20:18:23 leot Exp $
#
DISTNAME= cutter-1.2.4
PKGREVISION= 28
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=cutter/}
2015-03-15 18:30:24 +01:00
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://cutter.sourceforge.net/
COMMENT= Unit Testing Framework for C and C++
LICENSE= gnu-lgpl-v3
GNU_CONFIGURE= yes
USE_LIBTOOL= yes
USE_TOOLS+= gmake intltool pkg-config xgettext msgmerge msgfmt
USE_LANGUAGES= c c++
USE_PKGLOCALEDIR= yes
PKGCONFIG_OVERRIDE+= cppcutter.pc.in
PKGCONFIG_OVERRIDE+= cutter.pc.in
PKGCONFIG_OVERRIDE+= gcutter.pc.in
PKGCONFIG_OVERRIDE+= gdkcutter-pixbuf.pc.in
PKGCONFIG_OVERRIDE+= libcutter.pc.in
PKGCONFIG_OVERRIDE+= soupcutter.pc.in
TEST_TARGET= check
.include "options.mk"
.include "../../mk/compiler.mk"
Update cutter to 1.2.3. == [release-1-2-3] 1.2.3: 2014-02-09 As long time has passed since Cutter 1.2.2 release, there are some improvements and fixed bugs. After Cutter 1.2.2 release, you can install Cutter from Fedora's official yum repository. No need to register Cutter yum repository on Fedora anymore. === Cutter ==== Improvements * [doc] Removed a needless period from installation link. [GitHub #6] [Patch by Masafumi Yokoyama] * Supported lcov 1.10. [cutter-users-ja:92] [Reported by Siganai SE] * [doc] Updated download URL on SF.net. [cutter-users-ja:91] [Reported by Siganai SE] * [doc] Updated XML report format. [cutter-users-ja:91] [Reported by Siganai SE] * Added more trace logs for loader. It helps you to investigate the case when no tests are loaded. * [doc] Updated Cygwin's setup.exe URL. * Added --log-level option. The value of default log level is "critical|error|warning|message". ==== Fixes * [loader] Fixed a bug that ELF loader can't collect symbol because of wrong comparison. * Fixed memory leaks on loading all modules. * Fixed a warning from GCC 4.8.1 on Ubuntu 13.10 [GitHub #9] [Reported by Kazuhiro Yamato] === CppCutter ==== Improvements * Supported cppcut_assert_equal(const type_info &, const type_info &) [GitHub #4] [Patch by Kazuhiro Yamato] * Supported to catch unhandled C++ exception in test case. This change avoids to crash when unexpected exception is thrown. [GitHub #8] [Suggested by Kazuhiro Yamato] [Patch by Kazuhiro Yamato] * Supported to call destructors of objects on a stack even when an assertion is failed. [GitHub #10] [Patch by Kazuhiro Yamato] ==== Fixes * [Clang] Fixed a compile error which is caused by missing std::type_info forward declaration. * Fixed an invalid memory access when an exception is thrown in cutter's assertion function. [GitHub #11] [Patch by Kazuhiro Yamato] === GCutter ==== Fixes * [doc] Fixed a signal name typo about gcut-egg example. === Thanks * Kazuhiro Yamato * Masafumi Yokoyama * Siganai SE
2014-02-08 13:14:32 +01:00
# PR#lib/39986
.if !empty(CC_VERSION:Mgcc*) && !empty(MACHINE_PLATFORM:MNetBSD-[0-5].*-*)
LDFLAGS.NetBSD+= -lgcc_s
.endif
BUILDLINK_API_DEPENDS.glib2+= glib2>=2.16.0
.include "../../devel/glib2/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"