pkgsrc/devel/cutter/options.mk

66 lines
1.2 KiB
Makefile
Raw Normal View History

2015-06-07 16:16:01 +02:00
# $NetBSD: options.mk,v 1.4 2015/06/07 14:16:01 youri Exp $
#
PKG_OPTIONS_VAR= PKG_OPTIONS.cutter
PKG_SUPPORTED_OPTIONS= goffice gstreamer gtk2 libsoup pdf
PKG_SUGGESTED_OPTIONS= #
.include "../../mk/bsd.options.mk"
PLIST_VARS+= goffice gst gtk pdf soup
###
### PDF support
###
.if !empty(PKG_OPTIONS:Mpdf)
.include "../../devel/pango/buildlink3.mk"
PLIST.pdf= yes
.endif
###
### goffice support
###
.if !empty(PKG_OPTIONS:Mgoffice)
.include "../../misc/goffice0.8/buildlink3.mk"
CONFIGURE_ARGS+= --enable-goffice
PLIST.gtk= yes
PLIST.pdf= yes
.else
CONFIGURE_ARGS+= --disable-goffice
.endif
###
### gstreamer support
###
.if !empty(PKG_OPTIONS:Mgstreamer)
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
.include "../../multimedia/gstreamer1/buildlink3.mk"
CONFIGURE_ARGS+= --enable-gstreamer
PLIST.gst= yes
.else
CONFIGURE_ARGS+= --disable-gstreamer
.endif
###
### gtk2 support
###
.if !empty(PKG_OPTIONS:Mgtk2)
.include "../../x11/gtk2/buildlink3.mk"
CONFIGURE_ARGS+= --enable-gtktest
PLIST.gtk= yes
PLIST.pdf= yes
.else
CONFIGURE_ARGS+= --disable-gtktest
.endif
###
###
### libsoup support
###
.if !empty(PKG_OPTIONS:Mlibsoup)
2015-06-07 16:16:01 +02:00
. include "../../net/libsoup/buildlink3.mk"
CONFIGURE_ARGS+= --enable-libsoup
PLIST.soup= yes
.else
CONFIGURE_ARGS+= --disable-libsoup
.endif