diff options
author | obache <obache@pkgsrc.org> | 2010-12-21 11:27:57 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2010-12-21 11:27:57 +0000 |
commit | 8f6401135dde01c01255b73dd50cdd1b6ffb9295 (patch) | |
tree | 33aedc6b6ab4b96c6239bfa91d1b7d062312014a /devel/cutter/options.mk | |
parent | 2347ca6c476adb84bc98eac8645fb7e58da327a7 (diff) | |
download | pkgsrc-8f6401135dde01c01255b73dd50cdd1b6ffb9295.tar.gz |
Import cutter-1.1.5 as devel/cutter.
Cutter is a xUnit family Unit Testing Framework for C and C++.
This is a list of features of Cutter:
* easy to write tests.
* outputs result with useful format for debugging.
* tests are built as shared libraries.
Diffstat (limited to 'devel/cutter/options.mk')
-rw-r--r-- | devel/cutter/options.mk | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/devel/cutter/options.mk b/devel/cutter/options.mk new file mode 100644 index 00000000000..61856ed13be --- /dev/null +++ b/devel/cutter/options.mk @@ -0,0 +1,55 @@ +# $NetBSD: options.mk,v 1.1.1.1 2010/12/21 11:27:57 obache Exp $ +# + +PKG_OPTIONS_VAR= PKG_OPTIONS.cutter +PKG_SUPPORTED_OPTIONS= goffice gstreamer gtk2 libsoup +PKG_SUGGESTED_OPTIONS= # + +.include "../../mk/bsd.options.mk" + +PLIST_VARS+= goffice gst gtk soup + +### +### goffice support +### +.if !empty(PKG_OPTIONS:Mgoffice) +.include "../../misc/goffice0.8/buildlink3.mk" +CONFIGURE_ARGS+= --enable-goffice +PLIST.gtk= yes +.else +CONFIGURE_ARGS+= --disable-goffice +.endif + +### +### gstreamer support +### +.if !empty(PKG_OPTIONS:Mgstreamer) +.include "../../multimedia/gstreamer0.10/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 +.else +CONFIGURE_ARGS+= --disable-gtktest +.endif + +### +### +### libsoup support +### +.if !empty(PKG_OPTIONS:Mlibsoup) +. include "../../net/libsoup24/buildlink3.mk" +CONFIGURE_ARGS+= --enable-libsoup +PLIST.soup= yes +.else +CONFIGURE_ARGS+= --disable-libsoup +.endif |