You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by ar...@apache.org on 2012/10/10 23:13:21 UTC

svn commit: r1396797 [20/25] - in /incubator/ooo/branches/buildsys/main: ./ basebmp/ basebmp/prj/ basegfx/ basegfx/inc/basegfx/ basegfx/prj/ canvas/ canvas/inc/canvas/ canvas/prj/ cppcanvas/ cppcanvas/inc/cppcanvas/ cppcanvas/prj/ dbaccess/ dbaccess/in...

Added: incubator/ooo/branches/buildsys/main/oox/source/token/Makefile
URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/oox/source/token/Makefile?rev=1396797&view=auto
==============================================================================
--- incubator/ooo/branches/buildsys/main/oox/source/token/Makefile (added)
+++ incubator/ooo/branches/buildsys/main/oox/source/token/Makefile Wed Oct 10 21:12:40 2012
@@ -0,0 +1,126 @@
+#*************************************************************************
+#
+# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+#
+# Copyright 2009 by Sun Microsystems, Inc.
+#
+# OpenOffice.org - a multi-platform office productivity suite
+#
+# This file is part of OpenOffice.org.
+#
+# OpenOffice.org is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Lesser General Public License version 3
+# only, as published by the Free Software Foundation.
+#
+# OpenOffice.org is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.	See the
+# GNU Lesser General Public License version 3 for more details
+# (a copy is included in the LICENSE file that accompanied this code).
+#
+# You should have received a copy of the GNU Lesser General Public License
+# version 3 along with OpenOffice.org.	If not, see
+# <http://www.openoffice.org/license.html>
+# for a copy of the LGPLv3 License.
+#
+#*************************************************************************
+
+# generate source and header files from text files ----------------------------
+
+SRCDIR_TOKEN := $(dir $(realpath $(firstword $(MAKEFILE_LIST))))
+WORKDIR_TOKEN := .
+
+include $(GBUILDDIR)/Output.mk
+include $(GBUILDDIR)/BuildDirs.mk
+include $(GBUILDDIR)/Helper.mk
+
+# XML namespace identifiers and names
+
+$(WORKDIR_TOKEN)/namespaces.hxx : $(SRCDIR_TOKEN)/namespaces.hxx.head $(WORKDIR_TOKEN)/namespaceids.inc $(SRCDIR_TOKEN)/namespaces.hxx.tail
+	$(call gb_Output_announce,$@,build,CAT,1)
+	$(call gb_Helper_abbreviate_dirs,cat $^ > $@)
+
+$(WORKDIR_TOKEN)/namespaceids.inc : $(SRCDIR_TOKEN)/namespaces.txt $(SRCDIR_TOKEN)/namespaces.pl
+	$(call gb_Output_announce,$@,build,PRL,1)
+	$(call gb_Helper_abbreviate_dirs, \
+		mkdir -p $(dir $@) && $(PERL) $(SRCDIR_TOKEN)/namespaces.pl 1 < $< > $@ \
+	)
+
+$(WORKDIR_TOKEN)/namespacenames.inc : $(SRCDIR_TOKEN)/namespaces.txt $(SRCDIR_TOKEN)/namespaces.pl
+	$(call gb_Output_announce,$@,build,PRL,1)
+	$(call gb_Helper_abbreviate_dirs, \
+		mkdir -p $(dir $@) && $(PERL) $(SRCDIR_TOKEN)/namespaces.pl 2 < $< > $@ \
+	)
+
+$(WORKDIR_TOKEN)/namespaces.txt : $(SRCDIR_TOKEN)/namespaces.txt $(SRCDIR_TOKEN)/namespaces.pl
+	$(call gb_Output_announce,$@,build,PRL,1)
+	$(call gb_Helper_abbreviate_dirs, \
+		mkdir -p $(dir $@) && $(PERL) $(SRCDIR_TOKEN)/namespaces.pl 3 < $< > $@ \
+	)
+
+# XML token identifiers and names
+
+$(WORKDIR_TOKEN)/tokens.hxx : $(SRCDIR_TOKEN)/tokens.hxx.head $(WORKDIR_TOKEN)/tokenids.inc $(SRCDIR_TOKEN)/tokens.hxx.tail
+	$(call gb_Output_announce,$@,build,CAT,1)
+	$(call gb_Helper_abbreviate_dirs,cat $^ > $@)
+
+$(WORKDIR_TOKEN)/tokenids.inc : $(SRCDIR_TOKEN)/tokens.txt $(SRCDIR_TOKEN)/tokens.pl
+	$(call gb_Output_announce,$@,build,PRL,1)
+	$(call gb_Helper_abbreviate_dirs, \
+		mkdir -p $(dir $@) && $(PERL) $(SRCDIR_TOKEN)/tokens.pl 1 < $< > $@ \
+	)
+
+$(WORKDIR_TOKEN)/tokennames.inc : $(SRCDIR_TOKEN)/tokens.txt $(SRCDIR_TOKEN)/tokens.pl
+	$(call gb_Output_announce,$@,build,PRL,1)
+	$(call gb_Helper_abbreviate_dirs, \
+		mkdir -p $(dir $@) && $(PERL) $(SRCDIR_TOKEN)/tokens.pl 2 < $< > $@ \
+	)
+
+$(WORKDIR_TOKEN)/tokenhash.inc : $(WORKDIR_TOKEN)/tokenhash.gperf
+	$(call gb_Output_announce,$@,build,GPF,3)
+	$(call gb_Helper_abbreviate_dirs, \
+		gperf $< | $(gb_AWK) -- '{ if ($$0 !~ /^#line/){ gsub("\\(char\\*\\)0", "0", $$0); print; } }' > $@ \
+	)
+
+$(WORKDIR_TOKEN)/tokenhash.gperf : $(SRCDIR_TOKEN)/tokens.txt $(SRCDIR_TOKEN)/tokens.pl
+	$(call gb_Output_announce,$@,build,PRL,1)
+	$(call gb_Helper_abbreviate_dirs, \
+		mkdir -p $(dir $@) && $(PERL) $(SRCDIR_TOKEN)/tokens.pl 3 < $< > $@ \
+	)
+
+# UNO property identifiers and names
+
+$(WORKDIR_TOKEN)/properties.hxx : $(SRCDIR_TOKEN)/properties.hxx.head $(WORKDIR_TOKEN)/propertyids.inc $(SRCDIR_TOKEN)/properties.hxx.tail
+	$(call gb_Output_announce,$@,build,CAT,1)
+	$(call gb_Helper_abbreviate_dirs,cat $^ > $@)
+
+$(WORKDIR_TOKEN)/propertyids.inc : $(SRCDIR_TOKEN)/properties.txt $(SRCDIR_TOKEN)/properties.pl
+	$(call gb_Output_announce,$@,build,PRL,1)
+	$(call gb_Helper_abbreviate_dirs, \
+		mkdir -p $(dir $@) && $(PERL) $(SRCDIR_TOKEN)/properties.pl 1 < $< > $@ \
+	)
+
+$(WORKDIR_TOKEN)/propertynames.inc : $(SRCDIR_TOKEN)/properties.txt $(SRCDIR_TOKEN)/properties.pl
+	$(call gb_Output_announce,$@,build,PRL,1)
+	$(call gb_Helper_abbreviate_dirs, \
+		mkdir -p $(dir $@) && $(PERL) $(SRCDIR_TOKEN)/properties.pl 2 < $< > $@ \
+	)
+
+.DEFAULT_GOAL:=all
+.PHONY: all
+all : \
+		namespaces.hxx \
+		namespaceids.inc \
+		namespacenames.inc \
+		namespaces.txt \
+		tokens.hxx \
+		tokenids.inc \
+		tokennames.inc \
+		tokenhash.inc \
+		tokenhash.gperf \
+		properties.hxx \
+		propertyids.inc \
+		propertynames.inc \
+
+
+# vim: set noet sw=4 ts=4:

Added: incubator/ooo/branches/buildsys/main/reportdesign/AllLangResTarget_rpt.mk
URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/reportdesign/AllLangResTarget_rpt.mk?rev=1396797&view=auto
==============================================================================
--- incubator/ooo/branches/buildsys/main/reportdesign/AllLangResTarget_rpt.mk (added)
+++ incubator/ooo/branches/buildsys/main/reportdesign/AllLangResTarget_rpt.mk Wed Oct 10 21:12:40 2012
@@ -0,0 +1,47 @@
+#*************************************************************************
+#
+# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+#
+# Copyright 2000, 2011 Oracle and/or its affiliates.
+#
+# OpenOffice.org - a multi-platdbam office productivity suite
+#
+# This file is part of OpenOffice.org.
+#
+# OpenOffice.org is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Lesser General Public License version 3
+# only, as published by the Free Software Foundation.
+#
+# OpenOffice.org is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS dba A PARTICULAR PURPOSE.  See the
+# GNU Lesser General Public License version 3 dba more details
+# (a copy is included in the LICENSE file that accompanied this code).
+#
+# You should have received a copy of the GNU Lesser General Public License
+# version 3 along with OpenOffice.org.  If not, see
+# <http://www.openoffice.org/license.html>
+# dba a copy of the LGPLv3 License.
+#
+#*************************************************************************
+
+$(eval $(call gb_AllLangResTarget_AllLangResTarget,rpt))
+
+$(eval $(call gb_AllLangResTarget_set_reslocation,rpt,reportdesign))
+
+$(eval $(call gb_AllLangResTarget_add_srs,rpt,reportdesign/rpt))
+
+$(eval $(call gb_SrsTarget_SrsTarget,reportdesign/rpt))
+
+$(eval $(call gb_SrsTarget_set_include,reportdesign/rpt,\
+	$$(INCLUDE) \
+	-I$(OUTDIR)/inc \
+	-I$(SRCDIR)/reportdesign/source/core/inc \
+	-I$(SRCDIR)/reportdesign/inc \
+))
+
+$(eval $(call gb_SrsTarget_add_files,reportdesign/rpt,\
+	reportdesign/source/core/resource/strings.src \
+))
+
+# vim: set noet sw=4 ts=4:

Added: incubator/ooo/branches/buildsys/main/reportdesign/AllLangResTarget_rptui.mk
URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/reportdesign/AllLangResTarget_rptui.mk?rev=1396797&view=auto
==============================================================================
--- incubator/ooo/branches/buildsys/main/reportdesign/AllLangResTarget_rptui.mk (added)
+++ incubator/ooo/branches/buildsys/main/reportdesign/AllLangResTarget_rptui.mk Wed Oct 10 21:12:40 2012
@@ -0,0 +1,56 @@
+#*************************************************************************
+#
+# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+# 
+# Copyright 2000, 2011 Oracle and/or its affiliates.
+#
+# OpenOffice.org - a multi-platform office productivity suite
+#
+# This file is part of OpenOffice.org.
+#
+# OpenOffice.org is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Lesser General Public License version 3
+# only, as published by the Free Software Foundation.
+#
+# OpenOffice.org is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU Lesser General Public License version 3 for more details
+# (a copy is included in the LICENSE file that accompanied this code).
+#
+# You should have received a copy of the GNU Lesser General Public License
+# version 3 along with OpenOffice.org.  If not, see
+# <http://www.openoffice.org/license.html>
+# for a copy of the LGPLv3 License.
+#
+#*************************************************************************
+
+$(eval $(call gb_AllLangResTarget_AllLangResTarget,rptui))
+
+$(eval $(call gb_AllLangResTarget_set_reslocation,rptui,reportdesign))
+
+$(eval $(call gb_AllLangResTarget_add_srs,rptui,reportdesign/rptui))
+
+$(eval $(call gb_SrsTarget_SrsTarget,reportdesign/rptui))
+
+$(eval $(call gb_SrsTarget_set_include,reportdesign/rptui,\
+	$$(INCLUDE) \
+	-I$(OUTDIR)/inc \
+	-I$(WORKDIR)/inc/reportdesign \
+	-I$(SRCDIR)/reportdesign/source/ui/inc \
+	-I$(SRCDIR)/reportdesign/inc \
+))
+
+
+$(eval $(call gb_SrsTarget_add_files,reportdesign/rptui,\
+	reportdesign/source/ui/dlg/dlgpage.src	\
+	reportdesign/source/ui/dlg/PageNumber.src	\
+	reportdesign/source/ui/dlg/DateTime.src	\
+	reportdesign/source/ui/dlg/CondFormat.src	\
+	reportdesign/source/ui/dlg/Navigator.src	\
+	reportdesign/source/ui/dlg/GroupsSorting.src \
+	reportdesign/source/ui/inspection/inspection.src \
+	reportdesign/source/ui/report/report.src \
+))
+
+# vim: set noet sw=4 ts=4:

Added: incubator/ooo/branches/buildsys/main/reportdesign/JunitTest_reportdesign_complex.mk
URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/reportdesign/JunitTest_reportdesign_complex.mk?rev=1396797&view=auto
==============================================================================
--- incubator/ooo/branches/buildsys/main/reportdesign/JunitTest_reportdesign_complex.mk (added)
+++ incubator/ooo/branches/buildsys/main/reportdesign/JunitTest_reportdesign_complex.mk Wed Oct 10 21:12:40 2012
@@ -0,0 +1,53 @@
+#*************************************************************************
+#
+# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+#
+# Copyright 2000, 2011 Oracle and/or its affiliates.
+#
+# OpenOffice.org - a multi-platform office productivity suite
+#
+# This file is part of OpenOffice.org.
+#
+# OpenOffice.org is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Lesser General Public License version 3
+# only, as published by the Free Software Foundation.
+#
+# OpenOffice.org is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU Lesser General Public License version 3 for more details
+# (a copy is included in the LICENSE file that accompanied this code).
+#
+# You should have received a copy of the GNU Lesser General Public License
+# version 3 along with OpenOffice.org.  If not, see
+# <http://www.openoffice.org/license.html>
+# for a copy of the LGPLv3 License.
+#
+#*************************************************************************
+
+$(eval $(call gb_JunitTest_JunitTest,reportdesign_complex,SRCDIR))
+
+$(eval $(call gb_JunitTest_set_defs,reportdesign_complex,\
+	$$(DEFS) \
+	-Dorg.openoffice.test.arg.tdoc=$(SRCDIR)/reportdesign/qa/complex/reportdesign/test_documents \
+))
+
+$(eval $(call gb_JunitTest_add_sourcefiles,reportdesign_complex,\
+	reportdesign/qa/complex/reportdesign/ReportDesignerTest \
+	reportdesign/qa/complex/reportdesign/TestDocument \
+	reportdesign/qa/complex/reportdesign/FileURL \
+))
+
+$(eval $(call gb_JunitTest_add_jars,reportdesign_complex,\
+	$(OUTDIR)/bin/OOoRunner.jar \
+	$(OUTDIR)/bin/ridl.jar \
+	$(OUTDIR)/bin/test.jar \
+	$(OUTDIR)/bin/unoil.jar \
+	$(OUTDIR)/bin/jurt.jar \
+))
+
+$(eval $(call gb_JunitTest_add_classes,reportdesign_complex,\
+	complex.reportdesign.ReportDesignerTest \
+))
+
+# vim: set noet sw=4 ts=4:

Added: incubator/ooo/branches/buildsys/main/reportdesign/Library_rpt.mk
URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/reportdesign/Library_rpt.mk?rev=1396797&view=auto
==============================================================================
--- incubator/ooo/branches/buildsys/main/reportdesign/Library_rpt.mk (added)
+++ incubator/ooo/branches/buildsys/main/reportdesign/Library_rpt.mk Wed Oct 10 21:12:40 2012
@@ -0,0 +1,117 @@
+#*************************************************************************
+#
+# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+#
+# Copyright 2000, 2011 Oracle and/or its affiliates.
+#
+# OpenOffice.org - a multi-platform office productivity suite
+#
+# This file is part of OpenOffice.org.
+#
+# OpenOffice.org is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Lesser General Public License version 3
+# only, as published by the Free Software Foundation.
+#
+# OpenOffice.org is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU Lesser General Public License version 3 for more details
+# (a copy is included in the LICENSE file that accompanied this code).
+#
+# You should have received a copy of the GNU Lesser General Public License
+# version 3 along with OpenOffice.org.  If not, see
+# <http://www.openoffice.org/license.html>
+# for a copy of the LGPLv3 License.
+#
+#*************************************************************************
+
+$(eval $(call gb_Library_Library,rpt))
+$(eval $(call gb_Library_add_package_headers,rpt,reportdesign_inc))
+$(eval $(call gb_Library_add_precompiled_header,rpt,$(SRCDIR)/reportdesign/inc/pch/precompiled_reportdesign))
+
+$(eval $(call gb_Library_set_componentfile,rpt,reportdesign/util/rpt))
+
+$(eval $(call gb_Library_add_api,rpt,\
+	udkapi \
+	offapi \
+))
+
+$(eval $(call gb_Library_set_include,rpt,\
+	-I$(SRCDIR)/reportdesign/inc \
+	-I$(SRCDIR)/reportdesign/source/core/inc \
+	-I$(SRCDIR)/reportdesign/source/inc \
+	-I$(SRCDIR)/reportdesign/inc/pch \
+	$$(INCLUDE) \
+))
+
+$(eval $(call gb_Library_add_defs,rpt,\
+	-DREPORTDESIGN_DLLIMPLEMENTATION \
+))
+
+$(eval $(call gb_Library_add_linked_libs,rpt,\
+	editeng \
+	sb \
+	tl \
+	svt \
+	svl \
+	cppuhelper \
+	cppu \
+	comphelper \
+	dbtools \
+	dbui \
+	utl \
+	vcl \
+	sal \
+	stl \
+	i18nisolang1 \
+	ucbhelper \
+	sfx \
+	salhelper \
+	fwe \
+	svx \
+	svxcore \
+	tk \
+    $(gb_STDLIBS) \
+))
+
+$(eval $(call gb_Library_add_exception_objects,rpt,\
+		reportdesign/source/core/api/FormattedField		\
+		reportdesign/source/core/api/Groups				\
+		reportdesign/source/core/api/Group				\
+		reportdesign/source/core/api/Section				\
+		reportdesign/source/core/api/services			\
+		reportdesign/source/core/api/FixedText			\
+		reportdesign/source/core/api/ImageControl		\
+		reportdesign/source/core/api/ReportDefinition	\
+		reportdesign/source/core/api/ReportComponent		\
+		reportdesign/source/core/api/ReportEngineJFree	\
+		reportdesign/source/core/api/Tools				\
+		reportdesign/source/core/api/Function			\
+		reportdesign/source/core/api/Functions			\
+		reportdesign/source/core/api/ReportControlModel	\
+		reportdesign/source/core/api/FormatCondition		\
+		reportdesign/source/core/api/ReportVisitor		\
+		reportdesign/source/core/api/Shape				\
+		reportdesign/source/core/api/FixedLine \
+		reportdesign/source/core/misc/conditionalexpression \
+        reportdesign/source/core/misc/conditionupdater \
+        reportdesign/source/core/misc/reportformula \
+		reportdesign/source/core/resource/core_resource \
+		reportdesign/source/core/sdr/RptModel			\
+		reportdesign/source/core/sdr/RptPage				\
+		reportdesign/source/core/sdr/UndoActions			\
+		reportdesign/source/core/sdr/RptObject			\
+		reportdesign/source/core/sdr/RptObjectListener	\
+		reportdesign/source/core/sdr/ModuleHelper		\
+		reportdesign/source/core/sdr/PropertyForward		\
+		reportdesign/source/core/sdr/ReportDrawPage		\
+		reportdesign/source/core/sdr/ReportUndoFactory   \
+		reportdesign/source/core/sdr/UndoEnv \
+		reportdesign/source/core/sdr/formatnormalizer \
+))
+
+$(eval $(call gb_Library_add_noexception_objects,rpt,\
+	reportdesign/source/shared/corestrings	\
+))
+
+# vim: set noet sw=4 ts=4:

Added: incubator/ooo/branches/buildsys/main/reportdesign/Library_rptui.mk
URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/reportdesign/Library_rptui.mk?rev=1396797&view=auto
==============================================================================
--- incubator/ooo/branches/buildsys/main/reportdesign/Library_rptui.mk (added)
+++ incubator/ooo/branches/buildsys/main/reportdesign/Library_rptui.mk Wed Oct 10 21:12:40 2012
@@ -0,0 +1,120 @@
+#*************************************************************************
+#
+# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+#
+# Copyright 2000, 2011 Oracle and/or its affiliates.
+#
+# OpenOffice.org - a multi-platform office productivity suite
+#
+# This file is part of OpenOffice.org.
+#
+# OpenOffice.org is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Lesser General Public License version 3
+# only, as published by the Free Software Foundation.
+#
+# OpenOffice.org is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU Lesser General Public License version 3 for more details
+# (a copy is included in the LICENSE file that accompanied this code).
+#
+# You should have received a copy of the GNU Lesser General Public License
+# version 3 along with OpenOffice.org.  If not, see
+# <http://www.openoffice.org/license.html>
+# for a copy of the LGPLv3 License.
+#
+#*************************************************************************
+
+$(eval $(call gb_Library_Library,rptui))
+$(eval $(call gb_Library_add_precompiled_header,rptui,$(SRCDIR)/reportdesign/inc/pch/precompiled_rptui))
+
+$(eval $(call gb_Library_set_componentfile,rptui,reportdesign/util/rptui))
+
+$(eval $(call gb_Library_add_api,rptui,\
+	udkapi \
+	offapi \
+))
+
+$(eval $(call gb_Library_set_include,rptui,\
+	-I$(SRCDIR)/reportdesign/inc \
+	-I$(SRCDIR)/reportdesign/source/ui/inc \
+	-I$(SRCDIR)/reportdesign/source/inc \
+	-I$(SRCDIR)/reportdesign/inc/pch \
+	$$(INCLUDE) \
+))
+
+$(eval $(call gb_Library_add_linked_libs,rptui,\
+	editeng \
+	comphelper \
+	cppuhelper \
+	cppu \
+	dbtools \
+	i18nisolang1 \
+	fwe \
+	sal \
+	salhelper \
+	sfx \
+	svl \
+	svt \
+	stl \
+	vcl \
+	for \
+	tl \
+	utl \
+	ucbhelper \
+	svxcore \
+	svx \
+	tk \
+	sot \
+	dba \
+	vos3 \
+	forui \
+	dbui \
+	rpt \
+    $(gb_STDLIBS) \
+))
+
+$(eval $(call gb_Library_add_exception_objects,rptui,\
+	reportdesign/source/ui/dlg/dlgpage					\
+	reportdesign/source/ui/dlg/Condition				\
+	reportdesign/source/ui/dlg/CondFormat				\
+	reportdesign/source/ui/dlg/GroupExchange			\
+	reportdesign/source/ui/dlg/PageNumber				\
+	reportdesign/source/ui/dlg/DateTime				\
+	reportdesign/source/ui/dlg/AddField				\
+	reportdesign/source/ui/dlg/Navigator				\
+	reportdesign/source/ui/dlg/GroupsSorting           \
+	reportdesign/source/ui/dlg/Formula \
+	reportdesign/source/ui/inspection/DefaultInspection		\
+	reportdesign/source/ui/inspection/ReportComponentHandler	\
+	reportdesign/source/ui/inspection/GeometryHandler			\
+	reportdesign/source/ui/inspection/DataProviderHandler		\
+	reportdesign/source/ui/inspection/metadata \
+	reportdesign/source/ui/misc/RptUndo					\
+	reportdesign/source/ui/misc/ColorListener			\
+	reportdesign/source/ui/misc/UITools					\
+	reportdesign/source/ui/misc/rptuiservices			\
+	reportdesign/source/ui/misc/toolboxcontroller		\
+	reportdesign/source/ui/misc/statusbarcontroller		\
+	reportdesign/source/ui/misc/FunctionHelper \
+	reportdesign/source/ui/report/SectionWindow			\
+	reportdesign/source/ui/report/ReportController		\
+	reportdesign/source/ui/report/ReportControllerObserver \
+	reportdesign/source/ui/report/FormattedFieldBeautifier \
+	reportdesign/source/ui/report/FixedTextColor           \
+	reportdesign/source/ui/report/ReportSection			\
+	reportdesign/source/ui/report/SectionView				\
+	reportdesign/source/ui/report/ViewsWindow				\
+	reportdesign/source/ui/report/ScrollHelper			\
+	reportdesign/source/ui/report/StartMarker				\
+	reportdesign/source/ui/report/EndMarker				\
+	reportdesign/source/ui/report/dlgedfunc				\
+	reportdesign/source/ui/report/dlgedfac				\
+	reportdesign/source/ui/report/dlgedclip				\
+	reportdesign/source/ui/report/ReportWindow			\
+	reportdesign/source/ui/report/DesignView				\
+	reportdesign/source/ui/report/propbrw \
+	reportdesign/source/shared/uistrings \
+))
+
+# vim: set noet sw=4 ts=4:

Added: incubator/ooo/branches/buildsys/main/reportdesign/Library_rptxml.mk
URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/reportdesign/Library_rptxml.mk?rev=1396797&view=auto
==============================================================================
--- incubator/ooo/branches/buildsys/main/reportdesign/Library_rptxml.mk (added)
+++ incubator/ooo/branches/buildsys/main/reportdesign/Library_rptxml.mk Wed Oct 10 21:12:40 2012
@@ -0,0 +1,102 @@
+#*************************************************************************
+#
+# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+#
+# Copyright 2000, 2011 Oracle and/or its affiliates.
+#
+# OpenOffice.org - a multi-platform office productivity suite
+#
+# This file is part of OpenOffice.org.
+#
+# OpenOffice.org is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Lesser General Public License version 3
+# only, as published by the Free Software Foundation.
+#
+# OpenOffice.org is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU Lesser General Public License version 3 for more details
+# (a copy is included in the LICENSE file that accompanied this code).
+#
+# You should have received a copy of the GNU Lesser General Public License
+# version 3 along with OpenOffice.org.  If not, see
+# <http://www.openoffice.org/license.html>
+# for a copy of the LGPLv3 License.
+#
+#*************************************************************************
+
+$(eval $(call gb_Library_Library,rptxml))
+$(eval $(call gb_Library_add_precompiled_header,rptxml,$(SRCDIR)/reportdesign/inc/pch/precompiled_rptxml))
+
+$(eval $(call gb_Library_set_componentfile,rptxml,reportdesign/source/filter/xml/rptxml))
+
+$(eval $(call gb_Library_add_api,rptxml,\
+	udkapi \
+	offapi \
+))
+
+$(eval $(call gb_Library_set_include,rptxml,\
+	-I$(SRCDIR)/reportdesign/inc \
+	-I$(SRCDIR)/reportdesign/source/filter/xml \
+	-I$(SRCDIR)/reportdesign/source/inc \
+	-I$(SRCDIR)/reportdesign/inc/pch \
+	$$(INCLUDE) \
+))
+
+$(eval $(call gb_Library_add_linked_libs,rptxml,\
+	tl \
+	svl \
+	cppuhelper \
+	cppu \
+	comphelper \
+	utl \
+	vcl \
+	sal \
+	sfx \
+	dbtools \
+	xo \
+	sot \
+	tk \
+	dba \
+	stl \
+	editeng \
+	rpt \
+    $(gb_STDLIBS) \
+))
+
+$(eval $(call gb_Library_add_exception_objects,rptxml,\
+	reportdesign/source/filter/xml/xmlfilter				\
+	reportdesign/source/filter/xml/xmlReport				\
+	reportdesign/source/filter/xml/xmlMasterFields			\
+	reportdesign/source/filter/xml/xmlGroup				\
+	reportdesign/source/filter/xml/xmlHelper				\
+	reportdesign/source/filter/xml/xmlSection				\
+	reportdesign/source/filter/xml/xmlComponent			\
+	reportdesign/source/filter/xml/xmlControlProperty		\
+	reportdesign/source/filter/xml/xmlFormattedField		\
+	reportdesign/source/filter/xml/xmlReportElement		\
+	reportdesign/source/filter/xml/xmlReportElementBase	\
+	reportdesign/source/filter/xml/xmlCondPrtExpr			\
+	reportdesign/source/filter/xml/xmlImage				\
+	reportdesign/source/filter/xml/xmlFunction				\
+	reportdesign/source/filter/xml/xmlStyleImport			\
+	reportdesign/source/filter/xml/xmlAutoStyle			\
+	reportdesign/source/filter/xml/xmlExport				\
+	reportdesign/source/filter/xml/dbloader2				\
+	reportdesign/source/filter/xml/xmlFormatCondition		\
+	reportdesign/source/filter/xml/xmlPropertyHandler		\
+	reportdesign/source/filter/xml/xmlColumn				\
+	reportdesign/source/filter/xml/xmlCell					\
+	reportdesign/source/filter/xml/xmlTable				\
+	reportdesign/source/filter/xml/xmlFixedContent			\
+	reportdesign/source/filter/xml/xmlSubDocument			\
+	reportdesign/source/filter/xml/xmlservices				\
+	reportdesign/source/filter/xml/xmlImportDocumentHandler \
+	reportdesign/source/filter/xml/xmlExportDocumentHandler \
+))
+
+$(eval $(call gb_Library_add_noexception_objects,rptxml, \
+	reportdesign/source/shared/xmlstrings \
+))
+
+# vim: set noet sw=4 ts=4:

Added: incubator/ooo/branches/buildsys/main/reportdesign/Makefile
URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/reportdesign/Makefile?rev=1396797&view=auto
==============================================================================
--- incubator/ooo/branches/buildsys/main/reportdesign/Makefile (added)
+++ incubator/ooo/branches/buildsys/main/reportdesign/Makefile Wed Oct 10 21:12:40 2012
@@ -0,0 +1,38 @@
+#*************************************************************************
+#
+# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+# 
+# Copyright 2000, 2011 Oracle and/or its affiliates.
+#
+# OpenOffice.org - a multi-platform office productivity suite
+#
+# This file is part of OpenOffice.org.
+#
+# OpenOffice.org is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Lesser General Public License version 3
+# only, as published by the Free Software Foundation.
+#
+# OpenOffice.org is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU Lesser General Public License version 3 for more details
+# (a copy is included in the LICENSE file that accompanied this code).
+#
+# You should have received a copy of the GNU Lesser General Public License
+# version 3 along with OpenOffice.org.  If not, see
+# <http://www.openoffice.org/license.html>
+# for a copy of the LGPLv3 License.
+#
+#*************************************************************************
+
+ifeq ($(strip $(SOLARENV)),)
+$(error No environment set!)
+endif
+
+gb_PARTIALBUILD := T
+GBUILDDIR := $(SOLARENV)/gbuild
+include $(GBUILDDIR)/gbuild.mk
+
+$(eval $(call gb_Module_make_global_targets,$(shell ls $(dir $(realpath $(firstword $(MAKEFILE_LIST))))/Module*.mk)))
+
+# vim: set noet sw=4 ts=4:

Added: incubator/ooo/branches/buildsys/main/reportdesign/Module_reportdesign.mk
URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/reportdesign/Module_reportdesign.mk?rev=1396797&view=auto
==============================================================================
--- incubator/ooo/branches/buildsys/main/reportdesign/Module_reportdesign.mk (added)
+++ incubator/ooo/branches/buildsys/main/reportdesign/Module_reportdesign.mk Wed Oct 10 21:12:40 2012
@@ -0,0 +1,46 @@
+#*************************************************************************
+#
+# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+#
+# Copyright 2000, 2011 Oracle and/or its affiliates.
+#
+# OpenOffice.org - a multi-platform office productivity suite
+#
+# This file is part of OpenOffice.org.
+#
+# OpenOffice.org is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Lesser General Public License version 3
+# only, as published by the Free Software Foundation.
+#
+# OpenOffice.org is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU Lesser General Public License version 3 for more details
+# (a copy is included in the LICENSE file that accompanied this code).
+#
+# You should have received a copy of the GNU Lesser General Public License
+# version 3 along with OpenOffice.org.  If not, see
+# <http://www.openoffice.org/license.html>
+# for a copy of the LGPLv3 License.
+#
+#*************************************************************************
+
+$(eval $(call gb_Module_Module,reportdesign))
+
+$(eval $(call gb_Module_add_targets,reportdesign,\
+	AllLangResTarget_rpt\
+	AllLangResTarget_rptui\
+	Library_rpt\
+	Library_rptxml\
+	Library_rptui\
+	Package_uiconfig \
+	Package_xml \
+))
+
+# deactivated since sb123;
+# apparently fails because OOo does not find JVM?
+#$(eval $(call gb_Module_add_subsequentcheck_targets,reportdesign,\
+	JunitTest_reportdesign_complex \
+))
+
+# vim: set noet ts=4 sw=4:

Added: incubator/ooo/branches/buildsys/main/reportdesign/Package_uiconfig.mk
URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/reportdesign/Package_uiconfig.mk?rev=1396797&view=auto
==============================================================================
--- incubator/ooo/branches/buildsys/main/reportdesign/Package_uiconfig.mk (added)
+++ incubator/ooo/branches/buildsys/main/reportdesign/Package_uiconfig.mk Wed Oct 10 21:12:40 2012
@@ -0,0 +1,45 @@
+#*************************************************************************
+#
+# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+#
+# Copyright 2000, 2011 Oracle and/or its affiliates.
+#
+# OpenOffice.org - a multi-platform office productivity suite
+#
+# This file is part of OpenOffice.org.
+#
+# OpenOffice.org is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Lesser General Public License version 3
+# only, as published by the Free Software Foundation.
+#
+# OpenOffice.org is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU Lesser General Public License version 3 for more details
+# (a copy is included in the LICENSE file that accompanied this code).
+#
+# You should have received a copy of the GNU Lesser General Public License
+# version 3 along with OpenOffice.org.  If not, see
+# <http://www.openoffice.org/license.html>
+# for a copy of the LGPLv3 License.
+#
+#*************************************************************************
+
+$(eval $(call gb_Package_Package,reportdesign_uiconfig,$(SRCDIR)/reportdesign/uiconfig))
+
+$(eval $(call gb_Package_add_file,reportdesign_uiconfig,xml/uiconfig/modules/dbreport/menubar/menubar.xml,dbreport/menubar/menubar.xml))
+$(eval $(call gb_Package_add_file,reportdesign_uiconfig,xml/uiconfig/modules/dbreport/statusbar/statusbar.xml,dbreport/statusbar/statusbar.xml))
+$(eval $(call gb_Package_add_file,reportdesign_uiconfig,xml/uiconfig/modules/dbreport/toolbar/toolbar.xml,dbreport/toolbar/toolbar.xml))
+$(eval $(call gb_Package_add_file,reportdesign_uiconfig,xml/uiconfig/modules/dbreport/toolbar/Formatting.xml,dbreport/toolbar/Formatting.xml))
+$(eval $(call gb_Package_add_file,reportdesign_uiconfig,xml/uiconfig/modules/dbreport/toolbar/alignmentbar.xml,dbreport/toolbar/alignmentbar.xml))
+$(eval $(call gb_Package_add_file,reportdesign_uiconfig,xml/uiconfig/modules/dbreport/toolbar/arrowshapes.xml,dbreport/toolbar/arrowshapes.xml))
+$(eval $(call gb_Package_add_file,reportdesign_uiconfig,xml/uiconfig/modules/dbreport/toolbar/basicshapes.xml,dbreport/toolbar/basicshapes.xml))
+$(eval $(call gb_Package_add_file,reportdesign_uiconfig,xml/uiconfig/modules/dbreport/toolbar/calloutshapes.xml,dbreport/toolbar/calloutshapes.xml))
+$(eval $(call gb_Package_add_file,reportdesign_uiconfig,xml/uiconfig/modules/dbreport/toolbar/drawbar.xml,dbreport/toolbar/drawbar.xml))
+$(eval $(call gb_Package_add_file,reportdesign_uiconfig,xml/uiconfig/modules/dbreport/toolbar/flowchartshapes.xml,dbreport/toolbar/flowchartshapes.xml))
+$(eval $(call gb_Package_add_file,reportdesign_uiconfig,xml/uiconfig/modules/dbreport/toolbar/reportcontrols.xml,dbreport/toolbar/reportcontrols.xml))
+$(eval $(call gb_Package_add_file,reportdesign_uiconfig,xml/uiconfig/modules/dbreport/toolbar/resizebar.xml,dbreport/toolbar/resizebar.xml))
+$(eval $(call gb_Package_add_file,reportdesign_uiconfig,xml/uiconfig/modules/dbreport/toolbar/sectionalignmentbar.xml,dbreport/toolbar/sectionalignmentbar.xml))
+$(eval $(call gb_Package_add_file,reportdesign_uiconfig,xml/uiconfig/modules/dbreport/toolbar/sectionshrinkbar.xml,dbreport/toolbar/sectionshrinkbar.xml))
+$(eval $(call gb_Package_add_file,reportdesign_uiconfig,xml/uiconfig/modules/dbreport/toolbar/starshapes.xml,dbreport/toolbar/starshapes.xml))
+$(eval $(call gb_Package_add_file,reportdesign_uiconfig,xml/uiconfig/modules/dbreport/toolbar/symbolshapes.xml,dbreport/toolbar/symbolshapes.xml))

Added: incubator/ooo/branches/buildsys/main/reportdesign/Package_xml.mk
URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/reportdesign/Package_xml.mk?rev=1396797&view=auto
==============================================================================
--- incubator/ooo/branches/buildsys/main/reportdesign/Package_xml.mk (added)
+++ incubator/ooo/branches/buildsys/main/reportdesign/Package_xml.mk Wed Oct 10 21:12:40 2012
@@ -0,0 +1,29 @@
+#*************************************************************************
+#
+# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+#
+# Copyright 2000, 2011 Oracle and/or its affiliates.
+#
+# OpenOffice.org - a multi-platform office productivity suite
+#
+# This file is part of OpenOffice.org.
+#
+# OpenOffice.org is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Lesser General Public License version 3
+# only, as published by the Free Software Foundation.
+#
+# OpenOffice.org is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU Lesser General Public License version 3 for more details
+# (a copy is included in the LICENSE file that accompanied this code).
+#
+# You should have received a copy of the GNU Lesser General Public License
+# version 3 along with OpenOffice.org.  If not, see
+# <http://www.openoffice.org/license.html>
+# for a copy of the LGPLv3 License.
+#
+#*************************************************************************
+
+$(eval $(call gb_Package_Package,reportdesign_xml,$(SRCDIR)/reportdesign/prj))
+$(eval $(call gb_Package_add_file,reportdesign_xml,prj/rpt.xml,rpt.xml))

Added: incubator/ooo/branches/buildsys/main/reportdesign/inc/pch/precompiled_rptui.cxx
URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/reportdesign/inc/pch/precompiled_rptui.cxx?rev=1396797&view=auto
==============================================================================
--- incubator/ooo/branches/buildsys/main/reportdesign/inc/pch/precompiled_rptui.cxx (added)
+++ incubator/ooo/branches/buildsys/main/reportdesign/inc/pch/precompiled_rptui.cxx Wed Oct 10 21:12:40 2012
@@ -0,0 +1,29 @@
+/*************************************************************************
+ *
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ * 
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * This file is part of OpenOffice.org.
+ *
+ * OpenOffice.org is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License version 3
+ * only, as published by the Free Software Foundation.
+ *
+ * OpenOffice.org is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Lesser General Public License version 3 for more details
+ * (a copy is included in the LICENSE file that accompanied this code).
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * version 3 along with OpenOffice.org.  If not, see
+ * <http://www.openoffice.org/license.html>
+ * for a copy of the LGPLv3 License.
+ *
+ ************************************************************************/
+
+#include "precompiled_rptui.hxx"
+

Added: incubator/ooo/branches/buildsys/main/reportdesign/inc/pch/precompiled_rptui.hxx
URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/reportdesign/inc/pch/precompiled_rptui.hxx?rev=1396797&view=auto
==============================================================================
--- incubator/ooo/branches/buildsys/main/reportdesign/inc/pch/precompiled_rptui.hxx (added)
+++ incubator/ooo/branches/buildsys/main/reportdesign/inc/pch/precompiled_rptui.hxx Wed Oct 10 21:12:40 2012
@@ -0,0 +1,74 @@
+/*************************************************************************
+ *
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ * 
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * This file is part of OpenOffice.org.
+ *
+ * OpenOffice.org is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License version 3
+ * only, as published by the Free Software Foundation.
+ *
+ * OpenOffice.org is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Lesser General Public License version 3 for more details
+ * (a copy is included in the LICENSE file that accompanied this code).
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * version 3 along with OpenOffice.org.  If not, see
+ * <http://www.openoffice.org/license.html>
+ * for a copy of the LGPLv3 License.
+ *
+ ************************************************************************/
+
+// MARKER(update_precomp.py): Generated on 2006-09-01 17:49:38.561560
+
+#ifdef PRECOMPILED_HEADERS
+#include "com/sun/star/sdb/CommandType.hpp"
+//#include "com/sun/star/chart2/data/DatabaseDataProvider.hpp"
+#include "com/sun/star/chart2/data/XDataReceiver.hpp"
+#include "com/sun/star/reflection/XProxyFactory.hpp"
+#include "com/sun/star/sdb/CommandType.hpp"
+#include "com/sun/star/report/XFormatCondition.hpp"
+#include "com/sun/star/report/XFunction.hpp"
+#include "com/sun/star/report/XReportComponent.hpp"
+#include <com/sun/star/report/ForceNewPage.hpp>
+#include <com/sun/star/report/GroupKeepTogether.hpp>
+#include <com/sun/star/report/GroupOn.hpp>
+#include <com/sun/star/report/KeepTogether.hpp>
+#include <com/sun/star/report/ReportPrintOption.hpp>
+#include <com/sun/star/report/XFixedLine.hpp>
+#include <com/sun/star/report/XFixedText.hpp>
+#include <com/sun/star/report/XFormatCondition.hpp>
+#include <com/sun/star/report/XFormattedField.hpp>
+#include <com/sun/star/report/XFunction.hpp>
+#include <com/sun/star/report/XFunctions.hpp>
+#include <com/sun/star/report/XFunctionsSupplier.hpp>
+#include <com/sun/star/report/XGroup.hpp>
+#include <com/sun/star/report/XGroups.hpp>
+#include <com/sun/star/report/XImageControl.hpp>
+#include <com/sun/star/report/XReportComponent.hpp>
+#include <com/sun/star/report/XReportControlFormat.hpp>
+#include <com/sun/star/report/XReportControlModel.hpp>
+#include <com/sun/star/report/XReportDefinition.hpp>
+#include <com/sun/star/report/XReportEngine.hpp>
+#include <com/sun/star/report/XSection.hpp>
+#include <com/sun/star/report/XShape.hpp>
+#include <com/sun/star/report/meta/XFormulaParser.hpp>
+#include <com/sun/star/report/meta/XFunctionCategory.hpp>
+#include <com/sun/star/report/meta/XFunctionDescription.hpp>
+#include <com/sun/star/report/meta/XFunctionManager.hpp>
+#include "comphelper/sequence.hxx"
+#include "comphelper/sequenceashashmap.hxx"
+#include "comphelper/documentconstants.hxx"
+#include "xmloff/attrlist.hxx"
+#include "xmloff/xmltoken.hxx"
+#include "xmloff/xmlement.hxx"
+#include "xmloff/xmluconv.hxx"
+#include "xmloff/xmltkmap.hxx"
+#include "xmloff/xmlnmspe.hxx"
+#endif

Added: incubator/ooo/branches/buildsys/main/reportdesign/inc/pch/precompiled_rptxml.cxx
URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/reportdesign/inc/pch/precompiled_rptxml.cxx?rev=1396797&view=auto
==============================================================================
--- incubator/ooo/branches/buildsys/main/reportdesign/inc/pch/precompiled_rptxml.cxx (added)
+++ incubator/ooo/branches/buildsys/main/reportdesign/inc/pch/precompiled_rptxml.cxx Wed Oct 10 21:12:40 2012
@@ -0,0 +1,29 @@
+/*************************************************************************
+ *
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ * 
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * This file is part of OpenOffice.org.
+ *
+ * OpenOffice.org is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License version 3
+ * only, as published by the Free Software Foundation.
+ *
+ * OpenOffice.org is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Lesser General Public License version 3 for more details
+ * (a copy is included in the LICENSE file that accompanied this code).
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * version 3 along with OpenOffice.org.  If not, see
+ * <http://www.openoffice.org/license.html>
+ * for a copy of the LGPLv3 License.
+ *
+ ************************************************************************/
+
+#include "precompiled_rptxml.hxx"
+

Added: incubator/ooo/branches/buildsys/main/reportdesign/inc/pch/precompiled_rptxml.hxx
URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/reportdesign/inc/pch/precompiled_rptxml.hxx?rev=1396797&view=auto
==============================================================================
--- incubator/ooo/branches/buildsys/main/reportdesign/inc/pch/precompiled_rptxml.hxx (added)
+++ incubator/ooo/branches/buildsys/main/reportdesign/inc/pch/precompiled_rptxml.hxx Wed Oct 10 21:12:40 2012
@@ -0,0 +1,74 @@
+/*************************************************************************
+ *
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ * 
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * This file is part of OpenOffice.org.
+ *
+ * OpenOffice.org is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License version 3
+ * only, as published by the Free Software Foundation.
+ *
+ * OpenOffice.org is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Lesser General Public License version 3 for more details
+ * (a copy is included in the LICENSE file that accompanied this code).
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * version 3 along with OpenOffice.org.  If not, see
+ * <http://www.openoffice.org/license.html>
+ * for a copy of the LGPLv3 License.
+ *
+ ************************************************************************/
+
+// MARKER(update_precomp.py): Generated on 2006-09-01 17:49:38.561560
+
+#ifdef PRECOMPILED_HEADERS
+#include "com/sun/star/sdb/CommandType.hpp"
+//#include "com/sun/star/chart2/data/DatabaseDataProvider.hpp"
+#include "com/sun/star/chart2/data/XDataReceiver.hpp"
+#include "com/sun/star/reflection/XProxyFactory.hpp"
+#include "com/sun/star/sdb/CommandType.hpp"
+#include "com/sun/star/report/XFormatCondition.hpp"
+#include "com/sun/star/report/XFunction.hpp"
+#include "com/sun/star/report/XReportComponent.hpp"
+#include <com/sun/star/report/ForceNewPage.hpp>
+#include <com/sun/star/report/GroupKeepTogether.hpp>
+#include <com/sun/star/report/GroupOn.hpp>
+#include <com/sun/star/report/KeepTogether.hpp>
+#include <com/sun/star/report/ReportPrintOption.hpp>
+#include <com/sun/star/report/XFixedLine.hpp>
+#include <com/sun/star/report/XFixedText.hpp>
+#include <com/sun/star/report/XFormatCondition.hpp>
+#include <com/sun/star/report/XFormattedField.hpp>
+#include <com/sun/star/report/XFunction.hpp>
+#include <com/sun/star/report/XFunctions.hpp>
+#include <com/sun/star/report/XFunctionsSupplier.hpp>
+#include <com/sun/star/report/XGroup.hpp>
+#include <com/sun/star/report/XGroups.hpp>
+#include <com/sun/star/report/XImageControl.hpp>
+#include <com/sun/star/report/XReportComponent.hpp>
+#include <com/sun/star/report/XReportControlFormat.hpp>
+#include <com/sun/star/report/XReportControlModel.hpp>
+#include <com/sun/star/report/XReportDefinition.hpp>
+#include <com/sun/star/report/XReportEngine.hpp>
+#include <com/sun/star/report/XSection.hpp>
+#include <com/sun/star/report/XShape.hpp>
+#include <com/sun/star/report/meta/XFormulaParser.hpp>
+#include <com/sun/star/report/meta/XFunctionCategory.hpp>
+#include <com/sun/star/report/meta/XFunctionDescription.hpp>
+#include <com/sun/star/report/meta/XFunctionManager.hpp>
+#include "comphelper/sequence.hxx"
+#include "comphelper/sequenceashashmap.hxx"
+#include "comphelper/documentconstants.hxx"
+#include "xmloff/attrlist.hxx"
+#include "xmloff/xmltoken.hxx"
+#include "xmloff/xmlement.hxx"
+#include "xmloff/xmluconv.hxx"
+#include "xmloff/xmltkmap.hxx"
+#include "xmloff/xmlnmspe.hxx"
+#endif

Added: incubator/ooo/branches/buildsys/main/reportdesign/prj/makefile.mk
URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/reportdesign/prj/makefile.mk?rev=1396797&view=auto
==============================================================================
--- incubator/ooo/branches/buildsys/main/reportdesign/prj/makefile.mk (added)
+++ incubator/ooo/branches/buildsys/main/reportdesign/prj/makefile.mk Wed Oct 10 21:12:40 2012
@@ -0,0 +1,40 @@
+#*************************************************************************
+#
+# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+# 
+# Copyright 2000, 2010 Oracle and/or its affiliates.
+#
+# OpenOffice.org - a multi-platform office productivity suite
+#
+# This file is part of OpenOffice.org.
+#
+# OpenOffice.org is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Lesser General Public License version 3
+# only, as published by the Free Software Foundation.
+#
+# OpenOffice.org is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU Lesser General Public License version 3 for more details
+# (a copy is included in the LICENSE file that accompanied this code).
+#
+# You should have received a copy of the GNU Lesser General Public License
+# version 3 along with OpenOffice.org.  If not, see
+# <http://www.openoffice.org/license.html>
+# for a copy of the LGPLv3 License.
+#
+#*************************************************************************
+
+PRJ=..
+TARGET=prj
+
+.INCLUDE : settings.mk
+
+.IF "$(VERBOSE)"!=""
+VERBOSEFLAG :=
+.ELSE
+VERBOSEFLAG := -s
+.ENDIF
+
+all:
+	cd $(PRJ) && $(GNUMAKE) $(VERBOSEFLAG) -r -j$(MAXPROCESS) $(gb_MAKETARGET) && $(GNUMAKE) $(VERBOSEFLAG) -r deliverlog

Added: incubator/ooo/branches/buildsys/main/reportdesign/source/filter/xml/rptxml.component
URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/reportdesign/source/filter/xml/rptxml.component?rev=1396797&view=auto
==============================================================================
--- incubator/ooo/branches/buildsys/main/reportdesign/source/filter/xml/rptxml.component (added)
+++ incubator/ooo/branches/buildsys/main/reportdesign/source/filter/xml/rptxml.component Wed Oct 10 21:12:40 2012
@@ -0,0 +1,67 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--**********************************************************************
+*
+* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+*
+* Copyright 2000, 2010 Oracle and/or its affiliates.
+*
+* OpenOffice.org - a multi-platform office productivity suite
+*
+* This file is part of OpenOffice.org.
+*
+* OpenOffice.org is free software: you can redistribute it and/or modify
+* it under the terms of the GNU Lesser General Public License version 3
+* only, as published by the Free Software Foundation.
+*
+* OpenOffice.org is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+* GNU Lesser General Public License version 3 for more details
+* (a copy is included in the LICENSE file that accompanied this code).
+*
+* You should have received a copy of the GNU Lesser General Public License
+* version 3 along with OpenOffice.org.  If not, see
+* <http://www.openoffice.org/license.html>
+* for a copy of the LGPLv3 License.
+*
+**********************************************************************-->
+
+<component loader="com.sun.star.loader.SharedLibrary"
+    xmlns="http://openoffice.org/2010/uno-components">
+  <implementation name="com.sun.star.comp.report.XMLSettingsExporter">
+    <service name="com.sun.star.document.ExportFilter"/>
+  </implementation>
+    <implementation name="com.sun.star.comp.report.XMLContentExporter">
+    <service name="com.sun.star.document.ExportFilter"/>
+  </implementation>
+  <implementation name="com.sun.star.comp.report.XMLStylesExporter">
+    <service name="com.sun.star.document.ExportFilter"/>
+  </implementation>
+  <implementation name="com.sun.star.comp.report.XMLMetaExporter">
+    <service name="com.sun.star.document.ExportFilter"/>
+  </implementation>
+  <implementation name="com.sun.star.comp.report.XMLFullExporter">
+    <service name="com.sun.star.document.ExportFilter"/>
+  </implementation>
+  <implementation name="com.sun.star.comp.report.ExportFilter">
+    <service name="com.sun.star.document.ExportFilter"/>
+  </implementation>
+  <implementation name="com.sun.star.comp.report.ORptTypeDetection">
+    <service name="com.sun.star.document.ExtendedTypeDetection"/>
+  </implementation>
+  <implementation name="com.sun.star.comp.Report.XMLOasisSettingsImporter">
+    <service name="com.sun.star.document.ImportFilter"/>
+  </implementation>
+  <implementation name="com.sun.star.comp.Report.XMLOasisStylesImporter">
+    <service name="com.sun.star.document.ImportFilter"/>
+  </implementation>
+  <implementation name="com.sun.star.comp.Report.XMLOasisContentImporter">
+    <service name="com.sun.star.document.ImportFilter"/>
+  </implementation>
+  <implementation name="com.sun.star.comp.Report.XMLOasisMetaImporter">
+    <service name="com.sun.star.document.ImportFilter"/>
+  </implementation>
+  <implementation name="com.sun.star.comp.report.OReportFilter">
+    <service name="com.sun.star.document.ImportFilter"/>
+  </implementation>
+</component>

Added: incubator/ooo/branches/buildsys/main/sax/CppunitTest_sax.mk
URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/sax/CppunitTest_sax.mk?rev=1396797&view=auto
==============================================================================
--- incubator/ooo/branches/buildsys/main/sax/CppunitTest_sax.mk (added)
+++ incubator/ooo/branches/buildsys/main/sax/CppunitTest_sax.mk Wed Oct 10 21:12:40 2012
@@ -0,0 +1,47 @@
+#*************************************************************************
+#
+# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+# 
+# Copyright 2000, 2011 Oracle and/or its affiliates.
+#
+# OpenOffice.org - a multi-platform office productivity suite
+#
+# This file is part of OpenOffice.org.
+#
+# OpenOffice.org is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Lesser General Public License version 3
+# only, as published by the Free Software Foundation.
+#
+# OpenOffice.org is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU Lesser General Public License version 3 for more details
+# (a copy is included in the LICENSE file that accompanied this code).
+#
+# You should have received a copy of the GNU Lesser General Public License
+# version 3 along with OpenOffice.org.  If not, see
+# <http://www.openoffice.org/license.html>
+# for a copy of the LGPLv3 License.
+#
+#*************************************************************************
+
+$(eval $(call gb_CppunitTest_CppunitTest,sax_cppunit))
+
+$(eval $(call gb_CppunitTest_add_exception_objects,sax_cppunit, \
+	sax/qa/cppunit/test_converter \
+))
+
+$(eval $(call gb_CppunitTest_add_linked_libs,sax_cppunit, \
+	cppunit \
+	sax \
+	sal \
+	stl \
+    $(gb_STDLIBS) \
+))
+
+$(eval $(call gb_CppunitTest_add_api,sax_cppunit,\
+	udkapi \
+	offapi \
+))
+
+# vim: set noet sw=4 ts=4:

Added: incubator/ooo/branches/buildsys/main/sax/Library_expwrap.mk
URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/sax/Library_expwrap.mk?rev=1396797&view=auto
==============================================================================
--- incubator/ooo/branches/buildsys/main/sax/Library_expwrap.mk (added)
+++ incubator/ooo/branches/buildsys/main/sax/Library_expwrap.mk Wed Oct 10 21:12:40 2012
@@ -0,0 +1,59 @@
+#*************************************************************************
+#
+# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+# 
+# Copyright 2000, 2011 Oracle and/or its affiliates.
+#
+# OpenOffice.org - a multi-platform office productivity suite
+#
+# This file is part of OpenOffice.org.
+#
+# OpenOffice.org is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Lesser General Public License version 3
+# only, as published by the Free Software Foundation.
+#
+# OpenOffice.org is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU Lesser General Public License version 3 for more details
+# (a copy is included in the LICENSE file that accompanied this code).
+#
+# You should have received a copy of the GNU Lesser General Public License
+# version 3 along with OpenOffice.org.  If not, see
+# <http://www.openoffice.org/license.html>
+# for a copy of the LGPLv3 License.
+#
+#*************************************************************************
+
+$(eval $(call gb_Library_Library,expwrap))
+
+$(eval $(call gb_Library_set_componentfile,expwrap,sax/source/expatwrap/expwrap))
+
+$(eval $(call gb_Library_add_api,expwrap,\
+	udkapi \
+	offapi \
+))
+
+$(eval $(call gb_Library_set_include,expwrap,\
+	$$(INCLUDE) \
+	-I$(SRCDIR)/sax/inc \
+))
+
+$(eval $(call gb_Library_add_linked_libs,expwrap,\
+	sal \
+	cppu \
+	cppuhelper \
+	stl \
+    $(gb_STDLIBS) \
+))
+
+$(call gb_Library_use_external,expwrap,expat_utf16)
+
+$(eval $(call gb_Library_add_exception_objects,expwrap,\
+	sax/source/expatwrap/attrlistimpl \
+	sax/source/expatwrap/sax_expat \
+	sax/source/expatwrap/saxwriter \
+	sax/source/expatwrap/xml2utf \
+))
+
+# vim: set noet sw=4 ts=4:

Added: incubator/ooo/branches/buildsys/main/sax/Library_fastsax.mk
URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/sax/Library_fastsax.mk?rev=1396797&view=auto
==============================================================================
--- incubator/ooo/branches/buildsys/main/sax/Library_fastsax.mk (added)
+++ incubator/ooo/branches/buildsys/main/sax/Library_fastsax.mk Wed Oct 10 21:12:40 2012
@@ -0,0 +1,73 @@
+#*************************************************************************
+#
+# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+# 
+# Copyright 2000, 2011 Oracle and/or its affiliates.
+#
+# OpenOffice.org - a multi-platform office productivity suite
+#
+# This file is part of OpenOffice.org.
+#
+# OpenOffice.org is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Lesser General Public License version 3
+# only, as published by the Free Software Foundation.
+#
+# OpenOffice.org is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU Lesser General Public License version 3 for more details
+# (a copy is included in the LICENSE file that accompanied this code).
+#
+# You should have received a copy of the GNU Lesser General Public License
+# version 3 along with OpenOffice.org.  If not, see
+# <http://www.openoffice.org/license.html>
+# for a copy of the LGPLv3 License.
+#
+#*************************************************************************
+
+$(eval $(call gb_Library_Library,fastsax))
+
+$(eval $(call gb_Library_set_componentfile,fastsax,sax/source/fastparser/fastsax))
+
+$(eval $(call gb_Library_add_api,fastsax,\
+	udkapi \
+	offapi \
+))
+
+$(eval $(call gb_Library_set_include,fastsax,\
+	$$(INCLUDE) \
+	-I$(SRCDIR)/sax/inc \
+))
+
+$(eval $(call gb_Library_add_linked_libs,fastsax,\
+	sal \
+	cppu \
+	cppuhelper \
+	sax \
+	stl \
+    $(gb_STDLIBS) \
+))
+
+ifeq ($(SYSTEM_ZLIB),YES)
+$(eval $(call gb_Library_add_defs,fastsax,\
+	-DSYSTEM_ZLIB \
+))
+endif
+
+$(call gb_Library_use_external,fastsax,expat_utf8)
+
+# re-uses xml2utf object from sax.uno lib (see below)
+$(eval $(call gb_Library_add_exception_objects,fastsax,\
+	sax/source/fastparser/facreg \
+	sax/source/fastparser/fastparser \
+	sax/source/expatwrap/xml2utf \
+))
+
+# mba: currently it's unclear whether xml2utf needs to be compiled with the
+# same compiler settings as in the sax.uno lib; in case not, we have to use 
+# a custom target
+#$(eval $(call gb_Library_add_generated_exception_objects,fastsax,\
+#	sax/source/expatwrap/xml2utf \
+#))
+
+# vim: set noet sw=4 ts=4:

Added: incubator/ooo/branches/buildsys/main/sax/Library_sax.mk
URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/sax/Library_sax.mk?rev=1396797&view=auto
==============================================================================
--- incubator/ooo/branches/buildsys/main/sax/Library_sax.mk (added)
+++ incubator/ooo/branches/buildsys/main/sax/Library_sax.mk Wed Oct 10 21:12:40 2012
@@ -0,0 +1,64 @@
+#*************************************************************************
+#
+# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+# 
+# Copyright 2000, 2011 Oracle and/or its affiliates.
+#
+# OpenOffice.org - a multi-platform office productivity suite
+#
+# This file is part of OpenOffice.org.
+#
+# OpenOffice.org is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Lesser General Public License version 3
+# only, as published by the Free Software Foundation.
+#
+# OpenOffice.org is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU Lesser General Public License version 3 for more details
+# (a copy is included in the LICENSE file that accompanied this code).
+#
+# You should have received a copy of the GNU Lesser General Public License
+# version 3 along with OpenOffice.org.  If not, see
+# <http://www.openoffice.org/license.html>
+# for a copy of the LGPLv3 License.
+#
+#*************************************************************************
+
+$(eval $(call gb_Library_Library,sax))
+
+$(eval $(call gb_Library_add_api,sax,\
+	udkapi \
+	offapi \
+))
+
+$(eval $(call gb_Library_add_package_headers,sax,\
+	sax_inc \
+))
+
+$(eval $(call gb_Library_set_include,sax,\
+	$$(INCLUDE) \
+	-I$(SRCDIR)/sax/inc \
+))
+
+$(eval $(call gb_Library_add_defs,sax,\
+	-DSAX_DLLIMPLEMENTATION \
+))
+
+$(eval $(call gb_Library_add_linked_libs,sax,\
+	sal \
+	cppu \
+	cppuhelper \
+	comphelper \
+	stl \
+    $(gb_STDLIBS) \
+))
+
+$(eval $(call gb_Library_add_exception_objects,sax,\
+	sax/source/tools/converter \
+	sax/source/tools/fastattribs \
+	sax/source/tools/fastserializer \
+	sax/source/tools/fshelper \
+))
+
+# vim: set noet sw=4 ts=4:

Added: incubator/ooo/branches/buildsys/main/sax/Makefile
URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/sax/Makefile?rev=1396797&view=auto
==============================================================================
--- incubator/ooo/branches/buildsys/main/sax/Makefile (added)
+++ incubator/ooo/branches/buildsys/main/sax/Makefile Wed Oct 10 21:12:40 2012
@@ -0,0 +1,38 @@
+#*************************************************************************
+#
+# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+# 
+# Copyright 2000, 2011 Oracle and/or its affiliates.
+#
+# OpenOffice.org - a multi-platform office productivity suite
+#
+# This file is part of OpenOffice.org.
+#
+# OpenOffice.org is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Lesser General Public License version 3
+# only, as published by the Free Software Foundation.
+#
+# OpenOffice.org is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU Lesser General Public License version 3 for more details
+# (a copy is included in the LICENSE file that accompanied this code).
+#
+# You should have received a copy of the GNU Lesser General Public License
+# version 3 along with OpenOffice.org.  If not, see
+# <http://www.openoffice.org/license.html>
+# for a copy of the LGPLv3 License.
+#
+#*************************************************************************
+
+ifeq ($(strip $(SOLARENV)),)
+$(error No environment set!)
+endif
+
+gb_PARTIALBUILD := T
+GBUILDDIR := $(SOLARENV)/gbuild
+include $(GBUILDDIR)/gbuild.mk
+
+$(eval $(call gb_Module_make_global_targets,$(shell ls $(dir $(realpath $(firstword $(MAKEFILE_LIST))))/Module*.mk)))
+
+# vim: set noet sw=4 ts=4:

Added: incubator/ooo/branches/buildsys/main/sax/Module_sax.mk
URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/sax/Module_sax.mk?rev=1396797&view=auto
==============================================================================
--- incubator/ooo/branches/buildsys/main/sax/Module_sax.mk (added)
+++ incubator/ooo/branches/buildsys/main/sax/Module_sax.mk Wed Oct 10 21:12:40 2012
@@ -0,0 +1,43 @@
+#*************************************************************************
+#
+# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+# 
+# Copyright 2000, 2011 Oracle and/or its affiliates.
+#
+# OpenOffice.org - a multi-platform office productivity suite
+#
+# This file is part of OpenOffice.org.
+#
+# OpenOffice.org is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Lesser General Public License version 3
+# only, as published by the Free Software Foundation.
+#
+# OpenOffice.org is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU Lesser General Public License version 3 for more details
+# (a copy is included in the LICENSE file that accompanied this code).
+#
+# You should have received a copy of the GNU Lesser General Public License
+# version 3 along with OpenOffice.org.  If not, see
+# <http://www.openoffice.org/license.html>
+# for a copy of the LGPLv3 License.
+#
+#*************************************************************************
+
+$(eval $(call gb_Module_Module,sax))
+
+$(eval $(call gb_Module_add_targets,sax,\
+	Library_sax \
+	Library_expwrap \
+	Library_fastsax \
+	Package_inc \
+))
+
+ifeq ($(WITH_CPPUNIT),YES)
+$(eval $(call gb_Module_add_check_targets,sax,\
+	CppunitTest_sax \
+))
+endif
+
+# vim: set noet sw=4 ts=4:

Added: incubator/ooo/branches/buildsys/main/sax/Package_inc.mk
URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/sax/Package_inc.mk?rev=1396797&view=auto
==============================================================================
--- incubator/ooo/branches/buildsys/main/sax/Package_inc.mk (added)
+++ incubator/ooo/branches/buildsys/main/sax/Package_inc.mk Wed Oct 10 21:12:40 2012
@@ -0,0 +1,34 @@
+#*************************************************************************
+#
+# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+# 
+# Copyright 2000, 2011 Oracle and/or its affiliates.
+#
+# OpenOffice.org - a multi-platform office productivity suite
+#
+# This file is part of OpenOffice.org.
+#
+# OpenOffice.org is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Lesser General Public License version 3
+# only, as published by the Free Software Foundation.
+#
+# OpenOffice.org is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU Lesser General Public License version 3 for more details
+# (a copy is included in the LICENSE file that accompanied this code).
+#
+# You should have received a copy of the GNU Lesser General Public License
+# version 3 along with OpenOffice.org.  If not, see
+# <http://www.openoffice.org/license.html>
+# for a copy of the LGPLv3 License.
+#
+#*************************************************************************
+
+$(eval $(call gb_Package_Package,sax_inc,$(SRCDIR)/sax/inc))
+$(eval $(call gb_Package_add_file,sax_inc,inc/sax/dllapi.h,sax/dllapi.h))
+$(eval $(call gb_Package_add_file,sax_inc,inc/sax/fshelper.hxx,sax/fshelper.hxx))
+$(eval $(call gb_Package_add_file,sax_inc,inc/sax/fastattribs.hxx,sax/fastattribs.hxx))
+$(eval $(call gb_Package_add_file,sax_inc,inc/sax/tools/converter.hxx,sax/tools/converter.hxx))
+
+# vim: set noet sw=4 ts=4:

Added: incubator/ooo/branches/buildsys/main/sax/prj/makefile.mk
URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/sax/prj/makefile.mk?rev=1396797&view=auto
==============================================================================
--- incubator/ooo/branches/buildsys/main/sax/prj/makefile.mk (added)
+++ incubator/ooo/branches/buildsys/main/sax/prj/makefile.mk Wed Oct 10 21:12:40 2012
@@ -0,0 +1,40 @@
+#*************************************************************************
+#
+# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+# 
+# Copyright 2000, 2010 Oracle and/or its affiliates.
+#
+# OpenOffice.org - a multi-platform office productivity suite
+#
+# This file is part of OpenOffice.org.
+#
+# OpenOffice.org is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Lesser General Public License version 3
+# only, as published by the Free Software Foundation.
+#
+# OpenOffice.org is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU Lesser General Public License version 3 for more details
+# (a copy is included in the LICENSE file that accompanied this code).
+#
+# You should have received a copy of the GNU Lesser General Public License
+# version 3 along with OpenOffice.org.  If not, see
+# <http://www.openoffice.org/license.html>
+# for a copy of the LGPLv3 License.
+#
+#*************************************************************************
+
+PRJ=..
+TARGET=prj
+
+.INCLUDE : settings.mk
+
+.IF "$(VERBOSE)"!=""
+VERBOSEFLAG :=
+.ELSE
+VERBOSEFLAG := -s
+.ENDIF
+
+all:
+	cd $(PRJ) && $(GNUMAKE) $(VERBOSEFLAG) -r -j$(MAXPROCESS) $(gb_MAKETARGET) && $(GNUMAKE) $(VERBOSEFLAG) -r deliverlog

Propchange: incubator/ooo/branches/buildsys/main/sax/prj/makefile.mk
------------------------------------------------------------------------------
    svn:executable = *

Added: incubator/ooo/branches/buildsys/main/sd/AllLangResTarget_sd.mk
URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/sd/AllLangResTarget_sd.mk?rev=1396797&view=auto
==============================================================================
--- incubator/ooo/branches/buildsys/main/sd/AllLangResTarget_sd.mk (added)
+++ incubator/ooo/branches/buildsys/main/sd/AllLangResTarget_sd.mk Wed Oct 10 21:12:40 2012
@@ -0,0 +1,92 @@
+#*************************************************************************
+#
+# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+# 
+# Copyright 2000, 2011 Oracle and/or its affiliates.
+#
+# OpenOffice.org - a multi-platform office productivity suite
+#
+# This file is part of OpenOffice.org.
+#
+# OpenOffice.org is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Lesser General Public License version 3
+# only, as published by the Free Software Foundation.
+#
+# OpenOffice.org is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU Lesser General Public License version 3 for more details
+# (a copy is included in the LICENSE file that accompanied this code).
+#
+# You should have received a copy of the GNU Lesser General Public License
+# version 3 along with OpenOffice.org.  If not, see
+# <http://www.openoffice.org/license.html>
+# for a copy of the LGPLv3 License.
+#
+#*************************************************************************
+
+$(eval $(call gb_AllLangResTarget_AllLangResTarget,sd))
+
+$(eval $(call gb_AllLangResTarget_add_srs,sd,\
+	sd/res \
+))
+
+$(eval $(call gb_SrsTarget_SrsTarget,sd/res))
+
+$(eval $(call gb_SrsTarget_set_include,sd/res,\
+	$$(INCLUDE) \
+	-I$(OUTDIR)/inc \
+	-I$(WORKDIR)/inc/sd \
+	-I$(SRCDIR)/sd/inc \
+	-I$(SRCDIR)/sd/source/ui/inc \
+	-I$(SRCDIR)/sd/source/ui/slidesorter/inc \
+))
+
+$(eval $(call gb_SrsTarget_add_files,sd/res,\
+	sd/source/core/glob.src \
+	sd/source/filter/html/pubdlg.src \
+	sd/source/ui/accessibility/accessibility.src \
+	sd/source/ui/animations/CustomAnimation.src \
+	sd/source/ui/animations/CustomAnimationCreateDialog.src \
+	sd/source/ui/animations/CustomAnimationDialog.src \
+	sd/source/ui/animations/CustomAnimationPane.src \
+	sd/source/ui/animations/SlideTransitionPane.src \
+	sd/source/ui/annotations/annotations.src \
+	sd/source/ui/app/popup.src \
+	sd/source/ui/app/res_bmp.src \
+	sd/source/ui/app/strings.src \
+	sd/source/ui/dlg/animobjs.src \
+	sd/source/ui/dlg/brkdlg.src \
+	sd/source/ui/dlg/celltempl.src \
+	sd/source/ui/dlg/copydlg.src \
+	sd/source/ui/dlg/custsdlg.src \
+	sd/source/ui/dlg/dlgass.src \
+	sd/source/ui/dlg/dlgfield.src \
+	sd/source/ui/dlg/dlgolbul.src \
+	sd/source/ui/dlg/dlgpage.src \
+	sd/source/ui/dlg/dlgsnap.src \
+	sd/source/ui/dlg/dlg_char.src \
+	sd/source/ui/dlg/headerfooterdlg.src \
+	sd/source/ui/dlg/inspagob.src \
+	sd/source/ui/dlg/ins_paste.src \
+	sd/source/ui/dlg/LayerDialog.src \
+	sd/source/ui/dlg/layeroptionsdlg.src \
+	sd/source/ui/dlg/masterlayoutdlg.src \
+	sd/source/ui/dlg/morphdlg.src \
+	sd/source/ui/dlg/navigatr.src \
+	sd/source/ui/dlg/PaneDockingWindow.src \
+	sd/source/ui/dlg/paragr.src \
+	sd/source/ui/dlg/present.src \
+	sd/source/ui/dlg/prltempl.src \
+	sd/source/ui/dlg/prntopts.src \
+	sd/source/ui/dlg/sdpreslt.src \
+	sd/source/ui/dlg/tabtempl.src \
+	sd/source/ui/dlg/tpaction.src \
+	sd/source/ui/dlg/tpoption.src \
+	sd/source/ui/dlg/vectdlg.src \
+	sd/source/ui/notes/NotesChildWindow.src \
+	sd/source/ui/slideshow/slideshow.src \
+	sd/source/ui/slidesorter/view/SlsResource.src \
+	sd/source/ui/table/TableDesignPane.src \
+	sd/source/ui/view/DocumentRenderer.src \
+))

Added: incubator/ooo/branches/buildsys/main/sd/JunitTest_sd_unoapi.mk
URL: http://svn.apache.org/viewvc/incubator/ooo/branches/buildsys/main/sd/JunitTest_sd_unoapi.mk?rev=1396797&view=auto
==============================================================================
--- incubator/ooo/branches/buildsys/main/sd/JunitTest_sd_unoapi.mk (added)
+++ incubator/ooo/branches/buildsys/main/sd/JunitTest_sd_unoapi.mk Wed Oct 10 21:12:40 2012
@@ -0,0 +1,52 @@
+#*************************************************************************
+#
+# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+# 
+# Copyright 2000, 2011 Oracle and/or its affiliates.
+#
+# OpenOffice.org - a multi-platform office productivity suite
+#
+# This file is part of OpenOffice.org.
+#
+# OpenOffice.org is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Lesser General Public License version 3
+# only, as published by the Free Software Foundation.
+#
+# OpenOffice.org is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU Lesser General Public License version 3 for more details
+# (a copy is included in the LICENSE file that accompanied this code).
+#
+# You should have received a copy of the GNU Lesser General Public License
+# version 3 along with OpenOffice.org.  If not, see
+# <http://www.openoffice.org/license.html>
+# for a copy of the LGPLv3 License.
+#
+#*************************************************************************
+
+$(eval $(call gb_JunitTest_JunitTest,sd_unoapi))
+
+$(eval $(call gb_JunitTest_set_defs,sd_unoapi,\
+	$$(DEFS) \
+	-Dorg.openoffice.test.arg.sce=$(SRCDIR)/sd/qa/unoapi/sd.sce \
+	-Dorg.openoffice.test.arg.xcl=$(SRCDIR)/sd/qa/unoapi/knownissues.xcl \
+))
+
+$(eval $(call gb_JunitTest_add_jars,sd_unoapi,\
+	$(OUTDIR)/bin/OOoRunner.jar \
+	$(OUTDIR)/bin/ridl.jar \
+	$(OUTDIR)/bin/test.jar \
+	$(OUTDIR)/bin/unoil.jar \
+	$(OUTDIR)/bin/jurt.jar \
+))
+
+$(eval $(call gb_JunitTest_add_sourcefiles,sd_unoapi,\
+	sd/qa/unoapi/Test \
+))
+
+$(eval $(call gb_JunitTest_add_classes,sd_unoapi,\
+	org.openoffice.sd.qa.unoapi.Test \
+))
+
+# vim: set noet sd=4 ts=4: