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.

WWW:	http://cutter.sourceforge.net/
This commit is contained in:
Romain Tartière 2010-07-24 09:27:27 +00:00
parent 681f53e6c5
commit 6292c27806
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=258135
6 changed files with 570 additions and 0 deletions

View File

@ -238,6 +238,7 @@
SUBDIR += cunit
SUBDIR += cut
SUBDIR += cutils
SUBDIR += cutter
SUBDIR += cvs+ipv6
SUBDIR += cvs-devel
SUBDIR += cvs-syncmail

83
devel/cutter/Makefile Normal file
View File

@ -0,0 +1,83 @@
# New ports collection makefile for: cutter
# Date created: 2010-01-10
# Whom: Romain Tartiere <romain@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= cutter
PORTVERSION= 1.1.4
CATEGORIES= devel
MASTER_SITES= SF
MAINTAINER= romain@FreeBSD.org
COMMENT= Unit Testing Framework for C and C++
LIB_DEPENDS= cairo:${PORTSDIR}/graphics/cairo \
pangocairo:${PORTSDIR}/x11-toolkits/pango
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include"
CONFIGURE_ARGS= --disable-gtk-doc-html --with-html-dir=${PREFIX}/share/doc
GNU_CONFIGURE= yes
USE_GETTEXT= yes
USE_GMAKE= yes
USE_GNOME= intltool gnomehack glib20 gtk20
USE_LDCONFIG= yes
WANT_GSTREAMER= yes
MANLANG= "" ja
MAN1= cut-diff.1 cutter.1
OPTIONS= GOFFICE "Enable GOffice support" yes \
GST "Enable GStreamer support" yes \
SOUP "Enable libsoup support" yes \
LCOV "Force dependency on lcov" no
regression-test: build
@${SETENV} LC_ALL=C ${GMAKE} -C ${WRKSRC} check
post-install:
@${CAT} ${PKGMESSAGE}
.include <bsd.port.options.mk>
.if defined(WITHOUT_GOFFICE)
CONFIGURE_ARGS+=--disable-goffice
PLIST_SUB+= GOFFICE="@comment "
.else
CONFIGURE_ARGS+=--enable-goffice
LIB_DEPENDS+= goffice-0.6:${PORTSDIR}/devel/goffice06
PLIST_SUB+= GOFFICE=""
.endif
.if defined(WITHOUT_GST)
CONFIGURE_ARGS+=--disable-gstreamer
PLIST_SUB+= GST="@comment "
.else
CONFIGURE_ARGS+=--enable-gstreamer
USE_GSTREAMER=yes
PLIST_SUB+= GST="" GST_VERSION="${GST_VERSION}"
.endif
.if defined(WITH_LCOV)
RUN_DEPENDS+= lcov:${PORTSIDR}/devel/lcov
.endif
.if defined(WITHOUT_SOUP)
CONFIGURE_ARGS+=--disable-libsoup
PLIST_SUB+= SOUP="@comment "
.else
CONFIGURE_ARGS+=--enable-libsoup
LIB_DEPENDS+= soup-2:${PORTSDIR}/devel/libsoup
PLIST_SUB+= SOUP=""
.endif
.if !defined(WITHOUT_NLS)
USE_GETTEXT= yes
PLIST_SUB+= NLS=""
.else
CONFIGURE_ARGS+=--disable-nls
PLIST_SUB+= NLS="@comment "
.endif
.include <bsd.port.mk>

3
devel/cutter/distinfo Normal file
View File

@ -0,0 +1,3 @@
MD5 (cutter-1.1.4.tar.gz) = 1f361822b95c5947312d5bf98afe1b12
SHA256 (cutter-1.1.4.tar.gz) = ac07f910a7a9ed18454712b59897db499607287081d7ac7a341a66317140ed8b
SIZE (cutter-1.1.4.tar.gz) = 2387160

8
devel/cutter/pkg-descr Normal file
View File

@ -0,0 +1,8 @@
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.
WWW: http://cutter.sourceforge.net/

7
devel/cutter/pkg-message Normal file
View File

@ -0,0 +1,7 @@
************************************************************************
Please note that code-coverage is not fully supported on FreeBSD and
cutter will crash when used to generate a report. The problem has been
reported upstream and no fix is available ATM. However, a workaround has
been found: adding the '--keep-opening-modules' argument to cutter's
command-line circumvents the problem.
************************************************************************

468
devel/cutter/pkg-plist Normal file
View File

@ -0,0 +1,468 @@
@comment $FreeBSD$
bin/cut-diff
bin/cutter
include/cutter/cppcutter.h
include/cutter/cppcutter/cppcut-assertions-helper.h
include/cutter/cppcutter/cppcut-assertions.h
include/cutter/cppcutter/cppcut-macros.h
include/cutter/cppcutter/cppcut-message.h
include/cutter/cutter.h
include/cutter/cutter/cut-analyzer.h
include/cutter/cutter/cut-assertions-helper.h
include/cutter/cutter/cut-assertions.h
include/cutter/cutter/cut-backtrace-entry.h
include/cutter/cutter/cut-colorize-differ.h
include/cutter/cutter/cut-config.h
include/cutter/cutter/cut-console-diff-writer.h
include/cutter/cutter/cut-console.h
include/cutter/cutter/cut-contractor.h
include/cutter/cutter/cut-diff-writer.h
include/cutter/cutter/cut-differ.h
include/cutter/cutter/cut-enum-types.h
include/cutter/cutter/cut-experimental.h
include/cutter/cutter/cut-factory-builder.h
include/cutter/cutter/cut-features.h
include/cutter/cutter/cut-file-stream-reader.h
include/cutter/cutter/cut-helper.h
include/cutter/cutter/cut-iterated-test.h
include/cutter/cutter/cut-listener-utils.h
include/cutter/cutter/cut-listener.h
include/cutter/cutter/cut-macros.h
include/cutter/cutter/cut-main.h
include/cutter/cutter/cut-module-factory-utils.h
include/cutter/cutter/cut-module-factory.h
include/cutter/cutter/cut-multi-process.h
include/cutter/cutter/cut-pipeline.h
include/cutter/cutter/cut-private.h
include/cutter/cutter/cut-process.h
include/cutter/cutter/cut-public.h
include/cutter/cutter/cut-readable-differ.h
include/cutter/cutter/cut-report-factory-builder.h
include/cutter/cutter/cut-report.h
include/cutter/cutter/cut-run-context.h
include/cutter/cutter/cut-runner.h
include/cutter/cutter/cut-stream-factory-builder.h
include/cutter/cutter/cut-stream-parser.h
include/cutter/cutter/cut-stream-reader.h
include/cutter/cutter/cut-stream.h
include/cutter/cutter/cut-string-diff-writer.h
include/cutter/cutter/cut-sub-process-group.h
include/cutter/cutter/cut-sub-process.h
include/cutter/cutter/cut-test-case.h
include/cutter/cutter/cut-test-container.h
include/cutter/cutter/cut-test-context.h
include/cutter/cutter/cut-test-data.h
include/cutter/cutter/cut-test-iterator.h
include/cutter/cutter/cut-test-result.h
include/cutter/cutter/cut-test-runner.h
include/cutter/cutter/cut-test-suite.h
include/cutter/cutter/cut-test-utils-helper.h
include/cutter/cutter/cut-test-utils.h
include/cutter/cutter/cut-test.h
include/cutter/cutter/cut-types.h
include/cutter/cutter/cut-ui-factory-builder.h
include/cutter/cutter/cut-ui.h
include/cutter/cutter/cut-unified-differ.h
include/cutter/cutter/cut-verbose-level.h
include/cutter/cutter/cut-version.h
include/cutter/gcutter.h
include/cutter/gcutter/gcut-assertions-helper.h
include/cutter/gcutter/gcut-assertions.h
include/cutter/gcutter/gcut-data-helper.h
include/cutter/gcutter/gcut-data.h
include/cutter/gcutter/gcut-dynamic-data.h
include/cutter/gcutter/gcut-egg.h
include/cutter/gcutter/gcut-enum.h
include/cutter/gcutter/gcut-error.h
include/cutter/gcutter/gcut-hash-table.h
include/cutter/gcutter/gcut-inspect.h
include/cutter/gcutter/gcut-io.h
include/cutter/gcutter/gcut-key-file.h
include/cutter/gcutter/gcut-list.h
include/cutter/gcutter/gcut-main.h
include/cutter/gcutter/gcut-object.h
include/cutter/gcutter/gcut-public.h
include/cutter/gcutter/gcut-string-io-channel.h
include/cutter/gcutter/gcut-test-utils.h
include/cutter/gcutter/gcut-types.h
include/cutter/gcutter/gcut-value-equal.h
include/cutter/gdkcutter-pixbuf.h
include/cutter/gdkcutter-pixbuf/gdkcut-pixbuf-assertions-helper.h
include/cutter/gdkcutter-pixbuf/gdkcut-pixbuf-assertions.h
include/cutter/gdkcutter-pixbuf/gdkcut-pixbuf.h
include/cutter/soupcutter.h
include/cutter/soupcutter/soupcut-assertions-helper.h
include/cutter/soupcutter/soupcut-assertions.h
include/cutter/soupcutter/soupcut-client.h
include/cutter/soupcutter/soupcut-server.h
lib/cutter/module/factory/report/pdf_factory.la
lib/cutter/module/factory/report/pdf_factory.so
lib/cutter/module/factory/report/xml_factory.la
lib/cutter/module/factory/report/xml_factory.so
lib/cutter/module/factory/stream/xml_factory.la
lib/cutter/module/factory/stream/xml_factory.so
lib/cutter/module/factory/ui/console_factory.la
lib/cutter/module/factory/ui/console_factory.so
lib/cutter/module/factory/ui/gtk_factory.la
lib/cutter/module/factory/ui/gtk_factory.so
lib/cutter/module/report/pdf.la
lib/cutter/module/report/pdf.so
lib/cutter/module/report/xml.la
lib/cutter/module/report/xml.so
lib/cutter/module/stream/xml.la
lib/cutter/module/stream/xml.so
lib/cutter/module/ui/console.la
lib/cutter/module/ui/console.so
lib/cutter/module/ui/gtk.la
lib/cutter/module/ui/gtk.so
%%GST%%lib/gstreamer-%%GST_VERSION%%/libgstcuttertest.la
%%GST%%lib/gstreamer-%%GST_VERSION%%/libgstcuttertest.so
lib/libcppcutter.la
lib/libcppcutter.so
lib/libcppcutter.so.1
lib/libcutter.la
lib/libcutter.so
lib/libcutter.so.1
lib/libgdkcutter-pixbuf.la
lib/libgdkcutter-pixbuf.so
lib/libgdkcutter-pixbuf.so.1
%%SOUP%%lib/libsoupcutter.la
%%SOUP%%lib/libsoupcutter.so
%%SOUP%%lib/libsoupcutter.so.1
libdata/pkgconfig/cppcutter.pc
libdata/pkgconfig/cutter.pc
libdata/pkgconfig/gcutter.pc
libdata/pkgconfig/gdkcutter-pixbuf.pc
libdata/pkgconfig/libcutter.pc
%%SOUP%%libdata/pkgconfig/soupcutter.pc
share/aclocal/cutter.m4
%%DATADIR%%/license/fdl-1.3.txt
%%DATADIR%%/license/lgpl-3.txt
%%DATADIR%%/stack/Makefile.am
%%DATADIR%%/stack/autogen.sh
%%DATADIR%%/stack/config/keep-me
%%DATADIR%%/stack/configure.ac
%%DATADIR%%/stack/src/Makefile.am
%%DATADIR%%/stack/src/stack.c
%%DATADIR%%/stack/src/stack.h
%%DATADIR%%/stack/test/Makefile.am
%%DATADIR%%/stack/test/run-test.sh
%%DATADIR%%/stack/test/test-stack.c
%%DOCSDIR%%/GCutEgg.html
%%DOCSDIR%%/SoupCutClient.html
%%DOCSDIR%%/colorized-diff.png
%%DOCSDIR%%/command.html
%%DOCSDIR%%/cut-diff.html
%%DOCSDIR%%/cutter-Assertion-Utilities-for-GEnum-and-GFlags.html
%%DOCSDIR%%/cutter-Assertion-Utilities-for-GError.html
%%DOCSDIR%%/cutter-Assertion-Utilities-for-GHashTable.html
%%DOCSDIR%%/cutter-Assertion-Utilities-for-GList.html
%%DOCSDIR%%/cutter-Assertion-Utilities-for-GObject.html
%%DOCSDIR%%/cutter-Assertion-Utilities-for-GValue.html
%%DOCSDIR%%/cutter-Assertion-writing-helper.html
%%DOCSDIR%%/cutter-Assertions-for-HTTP-client-and-server.html
%%DOCSDIR%%/cutter-Assertions-with-C++-support.html
%%DOCSDIR%%/cutter-Assertions-with-GLib-support.html
%%DOCSDIR%%/cutter-Assertions-with-gdk-pixbuf-support.html
%%DOCSDIR%%/cutter-Assertions.html
%%DOCSDIR%%/cutter-Available-features.html
%%DOCSDIR%%/cutter-Convenience-HTTP-server-API.html
%%DOCSDIR%%/cutter-Convenience-test-data-API.html
%%DOCSDIR%%/cutter-CppCutter.html
%%DOCSDIR%%/cutter-Cutter.html
%%DOCSDIR%%/cutter-Experimental.html
%%DOCSDIR%%/cutter-GCutter.html
%%DOCSDIR%%/cutter-GdkCutter-Pixbuf.html
%%DOCSDIR%%/cutter-Multi-Process.html
%%DOCSDIR%%/cutter-Object-inspection-functions.html
%%DOCSDIR%%/cutter-SoupCutter.html
%%DOCSDIR%%/cutter-Test-Utilities-with-GLib-support.html
%%DOCSDIR%%/cutter-Test-Utilities.html
%%DOCSDIR%%/cutter-Types-for-GLib-support.html
%%DOCSDIR%%/cutter-Types.html
%%DOCSDIR%%/cutter-Version-Information.html
%%DOCSDIR%%/cutter.devhelp
%%DOCSDIR%%/cutter.devhelp2
%%DOCSDIR%%/cutter.html
%%DOCSDIR%%/dark-circle.png
%%DOCSDIR%%/diff-dark-and-nested-circle.png
%%DOCSDIR%%/features.html
%%DOCSDIR%%/home.png
%%DOCSDIR%%/index-0-3.html
%%DOCSDIR%%/index-0-4.html
%%DOCSDIR%%/index-0-5.html
%%DOCSDIR%%/index-0-6.html
%%DOCSDIR%%/index-0-7.html
%%DOCSDIR%%/index-0-8.html
%%DOCSDIR%%/index-0-9.html
%%DOCSDIR%%/index-1-0-1.html
%%DOCSDIR%%/index-1-0-2.html
%%DOCSDIR%%/index-1-0-3.html
%%DOCSDIR%%/index-1-0-4.html
%%DOCSDIR%%/index-1-0-5.html
%%DOCSDIR%%/index-1-0-6.html
%%DOCSDIR%%/index-1-0-7.html
%%DOCSDIR%%/index-1-0-8.html
%%DOCSDIR%%/index-1-0-9.html
%%DOCSDIR%%/index-1-0.html
%%DOCSDIR%%/index-1-1-0.html
%%DOCSDIR%%/index-1-1-1.html
%%DOCSDIR%%/index-1-1-2.html
%%DOCSDIR%%/index-1-1-3.html
%%DOCSDIR%%/index-1-1-4.html
%%DOCSDIR%%/index-all.html
%%DOCSDIR%%/index-deprecated.html
%%DOCSDIR%%/index.html
%%DOCSDIR%%/index.sgml
%%DOCSDIR%%/install-to-centos.html
%%DOCSDIR%%/install-to-cygwin.html
%%DOCSDIR%%/install-to-debian.html
%%DOCSDIR%%/install-to-fedora.html
%%DOCSDIR%%/install-to-freebsd.html
%%DOCSDIR%%/install-to-mac-os-x.html
%%DOCSDIR%%/install-to-others.html
%%DOCSDIR%%/install-to-solaris.html
%%DOCSDIR%%/install-to-ubuntu.html
%%DOCSDIR%%/install.html
%%DOCSDIR%%/introduction.html
%%DOCSDIR%%/ja/GCutEgg.html
%%DOCSDIR%%/ja/SoupCutClient.html
%%DOCSDIR%%/ja/api-index-0.3.xml
%%DOCSDIR%%/ja/api-index-0.8.xml
%%DOCSDIR%%/ja/api-index-0.9.xml
%%DOCSDIR%%/ja/api-index-1.0.2.xml
%%DOCSDIR%%/ja/api-index-1.0.3.xml
%%DOCSDIR%%/ja/api-index-1.0.4.xml
%%DOCSDIR%%/ja/api-index-1.0.5.xml
%%DOCSDIR%%/ja/api-index-1.0.6.xml
%%DOCSDIR%%/ja/api-index-1.0.7.xml
%%DOCSDIR%%/ja/api-index-1.0.8.xml
%%DOCSDIR%%/ja/api-index-1.0.9.xml
%%DOCSDIR%%/ja/api-index-1.0.xml
%%DOCSDIR%%/ja/api-index-1.1.0.xml
%%DOCSDIR%%/ja/api-index-1.1.1.xml
%%DOCSDIR%%/ja/api-index-1.1.2.xml
%%DOCSDIR%%/ja/api-index-1.1.3.xml
%%DOCSDIR%%/ja/api-index-1.1.4.xml
%%DOCSDIR%%/ja/api-index-deprecated.xml
%%DOCSDIR%%/ja/api-index-full.xml
%%DOCSDIR%%/ja/colorized-diff.png
%%DOCSDIR%%/ja/command.html
%%DOCSDIR%%/ja/cppcut-assertions.xml
%%DOCSDIR%%/ja/cppcut-macros.xml
%%DOCSDIR%%/ja/cppcutter.xml
%%DOCSDIR%%/ja/cut-analyzer.xml
%%DOCSDIR%%/ja/cut-assertions.xml
%%DOCSDIR%%/ja/cut-backtrace-entry.xml
%%DOCSDIR%%/ja/cut-cairo-chart-data.xml
%%DOCSDIR%%/ja/cut-cairo-pie-chart.xml
%%DOCSDIR%%/ja/cut-cairo.xml
%%DOCSDIR%%/ja/cut-colorize-differ.xml
%%DOCSDIR%%/ja/cut-config.xml
%%DOCSDIR%%/ja/cut-console-diff-writer.xml
%%DOCSDIR%%/ja/cut-console.xml
%%DOCSDIR%%/ja/cut-contractor.xml
%%DOCSDIR%%/ja/cut-diff-writer.xml
%%DOCSDIR%%/ja/cut-diff.html
%%DOCSDIR%%/ja/cut-diff.xml
%%DOCSDIR%%/ja/cut-differ.xml
%%DOCSDIR%%/ja/cut-experimental.xml
%%DOCSDIR%%/ja/cut-factory-builder.xml
%%DOCSDIR%%/ja/cut-features.xml
%%DOCSDIR%%/ja/cut-file-stream-reader.xml
%%DOCSDIR%%/ja/cut-helper.xml
%%DOCSDIR%%/ja/cut-iterated-test.xml
%%DOCSDIR%%/ja/cut-listener-utils.xml
%%DOCSDIR%%/ja/cut-listener.xml
%%DOCSDIR%%/ja/cut-mach-o-loader.xml
%%DOCSDIR%%/ja/cut-main.xml
%%DOCSDIR%%/ja/cut-module-factory-utils.xml
%%DOCSDIR%%/ja/cut-module-factory.xml
%%DOCSDIR%%/ja/cut-multi-process.xml
%%DOCSDIR%%/ja/cut-pipeline.xml
%%DOCSDIR%%/ja/cut-process.xml
%%DOCSDIR%%/ja/cut-readable-differ.xml
%%DOCSDIR%%/ja/cut-report-factory-builder.xml
%%DOCSDIR%%/ja/cut-report.xml
%%DOCSDIR%%/ja/cut-run-context.xml
%%DOCSDIR%%/ja/cut-runner.xml
%%DOCSDIR%%/ja/cut-sequence-matcher.xml
%%DOCSDIR%%/ja/cut-stream-factory-builder.xml
%%DOCSDIR%%/ja/cut-stream-parser.xml
%%DOCSDIR%%/ja/cut-stream-reader.xml
%%DOCSDIR%%/ja/cut-stream.xml
%%DOCSDIR%%/ja/cut-string-diff-writer.xml
%%DOCSDIR%%/ja/cut-test-data.xml
%%DOCSDIR%%/ja/cut-test-iterator.xml
%%DOCSDIR%%/ja/cut-test-runner.xml
%%DOCSDIR%%/ja/cut-test-utils.xml
%%DOCSDIR%%/ja/cut-types.xml
%%DOCSDIR%%/ja/cut-ui-factory-builder.xml
%%DOCSDIR%%/ja/cut-ui.xml
%%DOCSDIR%%/ja/cut-unified-differ.xml
%%DOCSDIR%%/ja/cut-version.xml
%%DOCSDIR%%/ja/cutter-Assertion-Utilities-for-GEnum-and-GFlags.html
%%DOCSDIR%%/ja/cutter-Assertion-Utilities-for-GError.html
%%DOCSDIR%%/ja/cutter-Assertion-Utilities-for-GHashTable.html
%%DOCSDIR%%/ja/cutter-Assertion-Utilities-for-GList.html
%%DOCSDIR%%/ja/cutter-Assertion-Utilities-for-GObject.html
%%DOCSDIR%%/ja/cutter-Assertion-Utilities-for-GValue.html
%%DOCSDIR%%/ja/cutter-Assertion-writing-helper.html
%%DOCSDIR%%/ja/cutter-Assertions-for-HTTP-client-and-server.html
%%DOCSDIR%%/ja/cutter-Assertions-with-C++-support.html
%%DOCSDIR%%/ja/cutter-Assertions-with-GLib-support.html
%%DOCSDIR%%/ja/cutter-Assertions-with-gdk-pixbuf-support.html
%%DOCSDIR%%/ja/cutter-Assertions.html
%%DOCSDIR%%/ja/cutter-Available-features.html
%%DOCSDIR%%/ja/cutter-Convenience-HTTP-server-API.html
%%DOCSDIR%%/ja/cutter-Convenience-test-data-API.html
%%DOCSDIR%%/ja/cutter-CppCutter.html
%%DOCSDIR%%/ja/cutter-Cutter.html
%%DOCSDIR%%/ja/cutter-Experimental.html
%%DOCSDIR%%/ja/cutter-GCutter.html
%%DOCSDIR%%/ja/cutter-GdkCutter-Pixbuf.html
%%DOCSDIR%%/ja/cutter-Multi-Process.html
%%DOCSDIR%%/ja/cutter-Object-inspection-functions.html
%%DOCSDIR%%/ja/cutter-SoupCutter.html
%%DOCSDIR%%/ja/cutter-Test-Utilities-with-GLib-support.html
%%DOCSDIR%%/ja/cutter-Test-Utilities.html
%%DOCSDIR%%/ja/cutter-Types-for-GLib-support.html
%%DOCSDIR%%/ja/cutter-Types.html
%%DOCSDIR%%/ja/cutter-Version-Information.html
%%DOCSDIR%%/ja/cutter.devhelp
%%DOCSDIR%%/ja/cutter.devhelp2
%%DOCSDIR%%/ja/cutter.html
%%DOCSDIR%%/ja/cutter.xml
%%DOCSDIR%%/ja/cuttest-assertions.xml
%%DOCSDIR%%/ja/cuttest-event-receiver.xml
%%DOCSDIR%%/ja/cuttest-utils.xml
%%DOCSDIR%%/ja/dark-circle.png
%%DOCSDIR%%/ja/diff-dark-and-nested-circle.png
%%DOCSDIR%%/ja/features.html
%%DOCSDIR%%/ja/gbsearcharray.xml
%%DOCSDIR%%/ja/gcut-assertions-helper.xml
%%DOCSDIR%%/ja/gcut-assertions.xml
%%DOCSDIR%%/ja/gcut-data-helper.xml
%%DOCSDIR%%/ja/gcut-data.xml
%%DOCSDIR%%/ja/gcut-dynamic-data.xml
%%DOCSDIR%%/ja/gcut-egg.xml
%%DOCSDIR%%/ja/gcut-enum.xml
%%DOCSDIR%%/ja/gcut-error.xml
%%DOCSDIR%%/ja/gcut-hash-table.xml
%%DOCSDIR%%/ja/gcut-inspect.xml
%%DOCSDIR%%/ja/gcut-io-channel-string.xml
%%DOCSDIR%%/ja/gcut-io.xml
%%DOCSDIR%%/ja/gcut-key-file.xml
%%DOCSDIR%%/ja/gcut-list.xml
%%DOCSDIR%%/ja/gcut-main.xml
%%DOCSDIR%%/ja/gcut-object.xml
%%DOCSDIR%%/ja/gcut-public.xml
%%DOCSDIR%%/ja/gcut-spawn.xml
%%DOCSDIR%%/ja/gcut-string-io-channel.xml
%%DOCSDIR%%/ja/gcut-test-utils.xml
%%DOCSDIR%%/ja/gcut-types.xml
%%DOCSDIR%%/ja/gcut-value-equal.xml
%%DOCSDIR%%/ja/gcutter.xml
%%DOCSDIR%%/ja/gdkcut-pixbuf-assertions-helper.xml
%%DOCSDIR%%/ja/gdkcut-pixbuf-assertions.xml
%%DOCSDIR%%/ja/gdkcut-pixbuf.xml
%%DOCSDIR%%/ja/gdkcutter-pixbuf.xml
%%DOCSDIR%%/ja/gst-cutter-console-output.xml
%%DOCSDIR%%/ja/gst-cutter-server.xml
%%DOCSDIR%%/ja/gst-cutter-test-runner.xml
%%DOCSDIR%%/ja/home.png
%%DOCSDIR%%/ja/index-0-3.html
%%DOCSDIR%%/ja/index-0-4.html
%%DOCSDIR%%/ja/index-0-5.html
%%DOCSDIR%%/ja/index-0-6.html
%%DOCSDIR%%/ja/index-0-7.html
%%DOCSDIR%%/ja/index-0-8.html
%%DOCSDIR%%/ja/index-0-9.html
%%DOCSDIR%%/ja/index-1-0-1.html
%%DOCSDIR%%/ja/index-1-0-2.html
%%DOCSDIR%%/ja/index-1-0-3.html
%%DOCSDIR%%/ja/index-1-0-4.html
%%DOCSDIR%%/ja/index-1-0-5.html
%%DOCSDIR%%/ja/index-1-0-6.html
%%DOCSDIR%%/ja/index-1-0-7.html
%%DOCSDIR%%/ja/index-1-0-8.html
%%DOCSDIR%%/ja/index-1-0-9.html
%%DOCSDIR%%/ja/index-1-0.html
%%DOCSDIR%%/ja/index-1-1-0.html
%%DOCSDIR%%/ja/index-1-1-1.html
%%DOCSDIR%%/ja/index-1-1-2.html
%%DOCSDIR%%/ja/index-1-1-3.html
%%DOCSDIR%%/ja/index-1-1-4.html
%%DOCSDIR%%/ja/index-all.html
%%DOCSDIR%%/ja/index-deprecated.html
%%DOCSDIR%%/ja/index.html
%%DOCSDIR%%/ja/index.sgml
%%DOCSDIR%%/ja/install-to-centos.html
%%DOCSDIR%%/ja/install-to-cygwin.html
%%DOCSDIR%%/ja/install-to-debian.html
%%DOCSDIR%%/ja/install-to-fedora.html
%%DOCSDIR%%/ja/install-to-freebsd.html
%%DOCSDIR%%/ja/install-to-mac-os-x.html
%%DOCSDIR%%/ja/install-to-others.html
%%DOCSDIR%%/ja/install-to-solaris.html
%%DOCSDIR%%/ja/install-to-ubuntu.html
%%DOCSDIR%%/ja/install.html
%%DOCSDIR%%/ja/introduction.html
%%DOCSDIR%%/ja/left.png
%%DOCSDIR%%/ja/nested-circle.png
%%DOCSDIR%%/ja/news.html
%%DOCSDIR%%/ja/overview.html
%%DOCSDIR%%/ja/readme.html
%%DOCSDIR%%/ja/reference.html
%%DOCSDIR%%/ja/right.png
%%DOCSDIR%%/ja/soupcut-assertions-helper.xml
%%DOCSDIR%%/ja/soupcut-assertions.xml
%%DOCSDIR%%/ja/soupcut-client.xml
%%DOCSDIR%%/ja/soupcut-server.xml
%%DOCSDIR%%/ja/soupcutter.xml
%%DOCSDIR%%/ja/stack.xml
%%DOCSDIR%%/ja/start.html
%%DOCSDIR%%/ja/style.css
%%DOCSDIR%%/ja/tutorial.html
%%DOCSDIR%%/ja/up.png
%%DOCSDIR%%/ja/users.html
%%DOCSDIR%%/ja/writing-assertion.html
%%DOCSDIR%%/ja/writing-test.html
%%DOCSDIR%%/left.png
%%DOCSDIR%%/nested-circle.png
%%DOCSDIR%%/news.html
%%DOCSDIR%%/overview.html
%%DOCSDIR%%/readme.html
%%DOCSDIR%%/reference.html
%%DOCSDIR%%/right.png
%%DOCSDIR%%/start.html
%%DOCSDIR%%/style.css
%%DOCSDIR%%/tutorial.html
%%DOCSDIR%%/up.png
%%DOCSDIR%%/users.html
%%DOCSDIR%%/writing-assertion.html
%%DOCSDIR%%/writing-test.html
%%NLS%%share/locale/ja/LC_MESSAGES/cutter.mo
@dirrm %%DOCSDIR%%/ja
@dirrm %%DOCSDIR%%
@dirrm %%DATADIR%%/stack/test
@dirrm %%DATADIR%%/stack/src
@dirrm %%DATADIR%%/stack/config
@dirrm %%DATADIR%%/stack
@dirrm %%DATADIR%%/license
@dirrm %%DATADIR%%
@dirrm lib/cutter/module/ui
@dirrm lib/cutter/module/stream
@dirrm lib/cutter/module/report
@dirrm lib/cutter/module/factory/ui
@dirrm lib/cutter/module/factory/stream
@dirrm lib/cutter/module/factory/report
@dirrm lib/cutter/module/factory
@dirrm lib/cutter/module
@dirrm lib/cutter
@dirrm include/cutter/soupcutter
@dirrm include/cutter/gdkcutter-pixbuf
@dirrm include/cutter/gcutter
@dirrm include/cutter/cutter
@dirrm include/cutter/cppcutter
@dirrm include/cutter