[Libreoffice-commits] core.git: odk/Package_share_readme.mk readlicense_oo/CustomTarget_license.mk readlicense_oo/license readlicense_oo/Module_readlicense_oo.mk readlicense_oo/Package_files.mk readlicense_oo/Package_license.mk readlicense_oo/README Repository.mk sfx2/source solenv/bin
Libreoffice Gerrit user
logerrit at kemper.freedesktop.org
Tue Mar 19 14:17:17 UTC 2019
Repository.mk | 2
odk/Package_share_readme.mk | 8
readlicense_oo/CustomTarget_license.mk | 47
readlicense_oo/Module_readlicense_oo.mk | 9
readlicense_oo/Package_files.mk | 14
readlicense_oo/Package_license.mk | 14
readlicense_oo/README | 31
readlicense_oo/license/LICENSE | 9280 --------------------------
readlicense_oo/license/LICENSE.fodt | 6696 ------------------
readlicense_oo/license/LICENSE.html | 118
readlicense_oo/license/license.xml | 6250 +++++++++++++++++
readlicense_oo/license/license_html.xsl | 32
readlicense_oo/license/license_plain_text.xsl | 62
sfx2/source/appl/appserv.cxx | 2
solenv/bin/modules/installer/environment.pm | 2
15 files changed, 6444 insertions(+), 16123 deletions(-)
New commits:
commit 7a9f6df7fb83ec23d09cb5744c2c865fa22e7143
Author: Tamas Bunth <tamas.bunth at collabora.co.uk>
AuthorDate: Mon Mar 4 16:54:06 2019 +0100
Commit: Andras Timar <andras.timar at collabora.com>
CommitDate: Tue Mar 19 15:16:51 2019 +0100
single source file for licensing info with conditional text
... for easier maintenance. This commit only introduces the
framework. Follow up commits will update the license file.
Advantages:
* single source, multiple outputs (html, txt)
* conditional text, i.e. output will not include license
terms of components that are not configured in the build
Change-Id: I0ffad41119228a0a26fd1b6ce19930ca6085adb2
Reviewed-on: https://gerrit.libreoffice.org/69396
Tested-by: Jenkins
Reviewed-by: Andras Timar <andras.timar at collabora.com>
diff --git a/Repository.mk b/Repository.mk
index e6e02c00aa8e..12007f3486e4 100644
--- a/Repository.mk
+++ b/Repository.mk
@@ -1030,7 +1030,7 @@ $(eval $(call gb_Helper_register_packages_for_install,brand,\
) \
) \
readlicense_oo_files \
- $(if $(filter WNT,$(OS)),readlicense_oo_license) \
+ readlicense_oo_license \
$(call gb_Helper_optional,DESKTOP,setup_native_packinfo) \
))
diff --git a/odk/Package_share_readme.mk b/odk/Package_share_readme.mk
index 558bdd5cb84d..8a40075c5044 100644
--- a/odk/Package_share_readme.mk
+++ b/odk/Package_share_readme.mk
@@ -7,17 +7,19 @@
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
-$(eval $(call gb_Package_Package,odk_share_readme,$(SRCDIR)))
+readlicense_oo_DIR := $(call gb_CustomTarget_get_workdir,readlicense_oo/license)
+$(eval $(call gb_Package_Package,odk_share_readme,$(readlicense_oo_DIR)))
$(eval $(call gb_Package_set_outdir,odk_share_readme,$(INSTDIR)))
$(eval $(call gb_Package_add_files,odk_share_readme,$(SDKDIRNAME)/share/readme,\
- readlicense_oo/license/LICENSE.html \
+ license.html \
))
# for WNT see Package_share_readme_generated.mk
ifneq ($(OS),WNT)
-$(eval $(call gb_Package_add_file,odk_share_readme,$(SDKDIRNAME)/share/readme/LICENSE,readlicense_oo/license/LICENSE))
+readlicense_oo_DIR := $(call gb_CustomTarget_get_workdir,readlicense_oo/license)
+$(eval $(call gb_Package_add_file,odk_share_readme,$(SDKDIRNAME)/share/readme/LICENSE,LICENSE))
endif
# vim: set noet sw=4 ts=4:
diff --git a/readlicense_oo/CustomTarget_license.mk b/readlicense_oo/CustomTarget_license.mk
index 653f1dd38541..75923d109970 100644
--- a/readlicense_oo/CustomTarget_license.mk
+++ b/readlicense_oo/CustomTarget_license.mk
@@ -10,15 +10,60 @@
$(eval $(call gb_CustomTarget_CustomTarget,readlicense_oo/license))
readlicense_oo_DIR := $(call gb_CustomTarget_get_workdir,readlicense_oo/license)
+readlicense_oo_LICENSE_xml := $(SRCDIR)/readlicense_oo/license/license.xml
+$(call gb_CustomTarget_get_target,readlicense_oo/license) : $(readlicense_oo_DIR)/license.html
+
+ifeq ($(OS),WNT)
$(call gb_CustomTarget_get_target,readlicense_oo/license) : $(readlicense_oo_DIR)/license.txt
+else
+$(call gb_CustomTarget_get_target,readlicense_oo/license) : $(readlicense_oo_DIR)/LICENSE
+endif
+
+$(readlicense_oo_DIR)/license.html : \
+ $(SRCDIR)/readlicense_oo/license/license_html.xsl \
+ $(readlicense_oo_LICENSE_xml) \
+ | $(readlicense_oo_DIR)/.dir \
+ $(call gb_ExternalExecutable_get_dependencies,xsltproc)
+ $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),XSL,1)
+ $(call gb_Helper_abbreviate_dirs, \
+ $(call gb_ExternalExecutable_get_command,xsltproc) --nonet --novalid -o $@ \
+ --stringparam build_type "$(BUILD_TYPE)" \
+ --stringparam os "$(OS)" \
+ --stringparam themes "$(WITH_THEMES)" \
+ $(if $(MPL_SUBSET),,--stringparam no_mpl_subset no_mpl_subset) \
+ $< \
+ $(readlicense_oo_LICENSE_xml) \
+ $(if $(filter WNT,$(OS)), \
+ && $(gb_AWK) 'sub("$$","\r")' $@ > $@.tmp \
+ && mv $@.tmp $@ \
+ ) \
+ )
+
+$(readlicense_oo_DIR)/LICENSE : \
+ $(SRCDIR)/readlicense_oo/license/license_plain_text.xsl \
+ $(readlicense_oo_LICENSE_xml) \
+ | $(readlicense_oo_DIR)/.dir \
+ $(call gb_ExternalExecutable_get_dependencies,xsltproc)
+ $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),XSL,1)
+ $(call gb_Helper_abbreviate_dirs, \
+ $(call gb_ExternalExecutable_get_command,xsltproc) --nonet --novalid -o $@ \
+ --stringparam build_type "$(BUILD_TYPE)" \
+ --stringparam os "$(OS)" \
+ --stringparam themes "$(WITH_THEMES)" \
+ $(if $(MPL_SUBSET),,--stringparam no_mpl_subset no_mpl_subset) \
+ $< \
+ $(readlicense_oo_LICENSE_xml) \
+ )
+ifeq ($(OS),WNT)
$(readlicense_oo_DIR)/license.txt : \
- $(SRCDIR)/readlicense_oo/license/LICENSE \
+ $(readlicense_oo_DIR)/LICENSE \
| $(readlicense_oo_DIR)/.dir
$(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),AWK,1)
$(call gb_Helper_abbreviate_dirs, \
$(gb_AWK) 'sub("$$","\r")' $< > $@.tmp && mv $@.tmp $@ \
)
+endif
# vim:set shiftwidth=4 tabstop=4 noexpandtab:
diff --git a/readlicense_oo/Module_readlicense_oo.mk b/readlicense_oo/Module_readlicense_oo.mk
index f3f2a7dcc409..d79e0f7c1fee 100644
--- a/readlicense_oo/Module_readlicense_oo.mk
+++ b/readlicense_oo/Module_readlicense_oo.mk
@@ -11,15 +11,10 @@ $(eval $(call gb_Module_Module,readlicense_oo))
$(eval $(call gb_Module_add_targets,readlicense_oo,\
CustomTarget_readme \
- Package_files \
- Package_readlicense_oo_readmes \
-))
-
-ifeq (WNT,$(OS))
-$(eval $(call gb_Module_add_targets,readlicense_oo,\
CustomTarget_license \
+ Package_files \
Package_license \
+ Package_readlicense_oo_readmes \
))
-endif
# vim:set noet sw=4 ts=4:
diff --git a/readlicense_oo/Package_files.mk b/readlicense_oo/Package_files.mk
index 0570a79ee82f..101d3878de3f 100644
--- a/readlicense_oo/Package_files.mk
+++ b/readlicense_oo/Package_files.mk
@@ -9,26 +9,12 @@
$(eval $(call gb_Package_Package,readlicense_oo_files,$(SRCDIR)/readlicense_oo/license))
-# LICENSE (upper case) is copied without EOL conversion
-# license.txt is converted, prior to copy, see Package_license.mk
-ifneq ($(OS),WNT)
-ifneq ($(OS),MACOSX)
-$(eval $(call gb_Package_add_file,readlicense_oo_files,LICENSE,LICENSE))
-else
-$(eval $(call gb_Package_add_file,readlicense_oo_files,Resources/LICENSE,LICENSE))
-endif
-endif
-
ifneq ($(OS),MACOSX)
$(eval $(call gb_Package_add_file,readlicense_oo_files,NOTICE,NOTICE))
-$(eval $(call gb_Package_add_file,readlicense_oo_files,LICENSE.fodt,LICENSE.fodt))
$(eval $(call gb_Package_add_file,readlicense_oo_files,CREDITS.fodt,CREDITS.fodt))
-$(eval $(call gb_Package_add_file,readlicense_oo_files,LICENSE.html,LICENSE.html))
else
$(eval $(call gb_Package_add_file,readlicense_oo_files,Resources/NOTICE,NOTICE))
-$(eval $(call gb_Package_add_file,readlicense_oo_files,Resources/LICENSE.fodt,LICENSE.fodt))
$(eval $(call gb_Package_add_file,readlicense_oo_files,Resources/CREDITS.fodt,CREDITS.fodt))
-$(eval $(call gb_Package_add_file,readlicense_oo_files,Resources/LICENSE.html,LICENSE.html))
endif
# vim: set noet sw=4 ts=4:
diff --git a/readlicense_oo/Package_license.mk b/readlicense_oo/Package_license.mk
index 7dd1d8c148c3..473b3e44fbf4 100644
--- a/readlicense_oo/Package_license.mk
+++ b/readlicense_oo/Package_license.mk
@@ -9,6 +9,18 @@
$(eval $(call gb_Package_Package,readlicense_oo_license,$(call gb_CustomTarget_get_workdir,readlicense_oo/license)))
-$(eval $(call gb_Package_add_file,readlicense_oo_license,license.txt,license.txt))
+ifneq ($(OS),WNT)
+ifneq ($(OS),MACOSX)
+$(eval $(call gb_Package_add_file,readlicense_oo_license,LICENSE,LICENSE))
+else
+$(eval $(call gb_Package_add_file,readlicense_oo_license,Resources/LICENSE,LICENSE))
+endif
+endif
+
+ifneq ($(OS),MACOSX)
+$(eval $(call gb_Package_add_file,readlicense_oo_license,LICENSE.html,license.html))
+else
+$(eval $(call gb_Package_add_file,readlicense_oo_license,Resources/LICENSE.html,license.html))
+endif
# vim: set noet sw=4 ts=4:
diff --git a/readlicense_oo/README b/readlicense_oo/README
index f4c46c85499e..cd73b2040285 100644
--- a/readlicense_oo/README
+++ b/readlicense_oo/README
@@ -1,2 +1,33 @@
Contains the stock libreoffice licensing blurb, as distributed in the install
directory, and also potentially at run-time.
+
+Generating licence files
+------------------------
+
+License files are generated from a single source file (licese/license.xml).
+Output file formats are plain text and html.
+
+- The plain text and the html format is generated with xslt. There are two
+ separate xsl files for plain text and html.
+
+Conditional text
+----------------
+
+The contents of the license file depends on the build configuration. Several
+externals may or may not be shipped with LibreOffice. Therefore, we need to pass
+information about build configuration to the xslt processor.
+
+Variables used for conditional text:
+
+- BUILD_TYPE: A space separated list of libraries/externals. If an external is
+ present in that list, then the related license text should be included.
+
+- MPL_SUBSET: If the variable is defined, then GPL and LGPL license text will not
+ be included, because none of the built-in code need it.
+
+- OS: The target platform. E.g. MSVC Runtime is packaged and used only on Windows.
+
+- WITH_THEMES: A space separated list of icon sets that are used in the build.
+
+Conditional text are surrounded by and extra <div> tag. The class attribute of
+that <div> tag decides which parameter values are taken into consideration.
diff --git a/readlicense_oo/license/LICENSE b/readlicense_oo/license/LICENSE
deleted file mode 100644
index 333da9631336..000000000000
--- a/readlicense_oo/license/LICENSE
+++ /dev/null
@@ -1,9280 +0,0 @@
-
- Licensing and Legal information
-
- This product is made available subject to the terms of the Mozilla
- Public License, v. 2.0. A copy of the MPL Version 2 license can be
- found below.
-
- See MPL Version 2 below
-
- Third Party Code Additional copyright notices and license terms
- applicable to portions of the Software can be found below in this
- document.
-
- All trademarks and registered trademarks mentioned herein are the
- property of their respective owners.
-
- Copyright © 2000–2019 LibreOffice contributors. All rights reserved.
-
- This product is based on OpenOffice.org. Portions of this software are
- copyright © 2000-2011, Oracle and/or its affiliates.
-
- This product has been created by The Document Foundation, incorporating
- many modifications from different contributors, see
- https://www.libreoffice.org/ for more details.
-
- Note: Do not translate or localize this document. Only English version
- is legally binding.
-
- Contents
-
- Libraries
-
- Extensions
-
- Fonts
-
- Dictionaries
-
- Artwork
-
- Miscellaneous
-
- GNU Lesser General Public License Version 3
-
- GNU Lesser General Public License Version 2.1
-
- GNU Library General Public License Version 2
-
- GNU General Public License Version 3
-
- GNU General Public License Version 2
-
- Mozilla Public License Version 1.1
-
- Mozilla Public License Version 2.0
-
- SIL Open Font License Version 1.1 – 26 February 2007
-
- Apache License
-
- The LaTeX Project Public License
-
- Creative Commons Attribution-ShareAlike 3.0 Unported
-
- Third Party Code Additional Copyright Notices and License Terms
-
- Libraries
-
-Apache Commons
-
- The following software may be included in this product: Apache Commons
- (codec, httpclient, lang, logging). Use of any of this software is
- governed by the terms of the license below:
-
- See Apache License Version 2.0 below
-
-beanshell
-
- The following software may be included in this product: beanshell. Use
- of any of this software is governed by the terms of the license below:
-
- See Apache License Version 2.0 below
-
-C++ Boost Library
-
- The following software may be included in this product: C++ Boost
- Library. Use of any of this software is governed by the terms of the
- license below:
-
- Boost Software License - Version 1.0 - August 17th, 2003
-
- Permission is hereby granted, free of charge, to any person or
- organization obtaining a copy of the software and accompanying
- documentation covered by this license (the "Software") to use,
- reproduce, display, distribute, execute, and transmit the Software, and
- to prepare derivative works of the Software, and to permit
- third-parties to whom the Software is furnished to do so, all subject
- to the following:
-
- The copyright notices in the Software and this entire statement,
- including the above license grant, this restriction and the following
- disclaimer, must be included in all copies of the Software, in whole or
- in part, and all derivative works of the Software, unless such copies
- or derivative works are solely in the form of machine-executable object
- code generated by a source language processor.
-
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND
- NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE
- DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR OTHER LIABILITY,
- WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
- CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
- SOFTWARE.
-
-Cairo
-
- The following software may be included in this product: Cairo. Use of
- any of this software is governed by the terms of the license below:
-
- Cairo is free software.
-
- Every source file in the implementation[*] of cairo is available to be
- redistributed and/or modified under the terms of either the GNU Lesser
- General Public License (LGPL) version 2.1 or the Mozilla Public License
- (MPL) version 1.1. Some files are available under more liberal terms,
- but we believe that in all cases, each file may be used under either
- the LGPL or the MPL.
-
- See the following files in this directory for the precise terms and
- conditions of either license:
-
- See LGPL Version 2.1 below
-
- See MPL Version 1.1 below
-
- Please see each file in the implementation for copyright and licensing
- information, (in the opening comment of each file).
-
- [*] The implementation of cairo is contained entirely within the "src"
- and "pixman" directories of the cairo source distribution. There are
- other components of the cairo source distribution (such as the "test"
- and "perf") that are auxiliary to the library itself. None of the
- source code in these directories contributes to a build of the cairo
- library itself, (libcairo.so or cairo.dll or similar).
-
- These auxiliary components are also free software, but may be under
- different license terms than cairo itself. For example, most of the
- test cases in the perf and test directories are made available under a
- MIT license to simplify any use of this code for reference purposes in
- using cairo itself. Other files might be available under the GNU
- General Public License (GPL), for example. Again, please see the
- opening comment of each file for copyright and licensing information.
-
-CLucene
-
- The following software may be included in this product: CLucene. Use of
- any of this software is governed by the terms of the license below:
-
- CLucene is distributed under the GNU Lesser General Public License
- (LGPL) or the Apache License, Version 2.0
-
- See LGPL Version 2.1 below
-
- See Apache License Version 2.0 below
-
-expat XML Parser Toolkit
-
- The following software may be included in this product: expat XML
- Parser Toolkit. Use of any of this software is governed by the terms of
- the license below:
-
- Copyright (c) 1998, 1999, 2000 Thai Open Source Software Center Ltd and
- Clark Cooper
-
- Copyright (c) 2001, 2002, 2003 Expat maintainers.
-
- Permission is hereby granted, free of charge, to any person obtaining a
- copy of this software and associated documentation files (the
- "Software"), to deal in the Software without restriction, including
- without limitation the rights to use, copy, modify, merge, publish,
- distribute, sublicense, and/or sell copies of the Software, and to
- permit persons to whom the Software is furnished to do so, subject to
- the following conditions:
-
- The above copyright notice and this permission notice shall be included
- in all copies or substantial portions of the Software.
-
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-Flute
-
- The following software may be included in this product: Flute. Use of
- any of this software is governed by the terms of the license below:
-
- W3C IPR SOFTWARE NOTICE
-
- Copyright © 2002 World Wide Web Consortium, (Massachusetts Institute of
- Technology, Institut National de Recherche en Informatique et en
- Automatique, Keio University). All Rights Reserved.
-
- Note: The original version of the W3C Software Copyright Notice and
- License could be found at
- http://www.w3.org/Consortium/Legal/copyright-software-19980720
-
- Copyright © 1994-2000 World Wide Web Consortium, (Massachusetts
- Institute of Technology, Institut National de Recherche en
- Informatique et en Automatique, Keio University). All Rights
- Reserved. http://www.w3.org/Consortium/Legal/
-
- This W3C work (including software, documents, or other related items)
- is being provided by the copyright holders under the following license.
- By obtaining, using and/or copying this work, you (the licensee) agree
- that you have read, understood, and will comply with the following
- terms and conditions:
-
- Permission to use, copy, and modify this software and its
- documentation, with or without modification, for any purpose and
- without fee or royalty is hereby granted, provided that you include the
- following on ALL copies of the software and documentation or portions
- thereof, including modifications, that you make:
- 1. The full text of this NOTICE in a location viewable to users of the
- redistributed or derivative work.
- 2. Any pre-existing intellectual property disclaimers, notices, or
- terms and conditions. If none exist, a short notice of the
- following form (hypertext is preferred, text is permitted) should
- be used within the body of any redistributed or derivative code:
- "Copyright © 2002 World Wide Web Consortium, (Massachusetts
- Institute of Technology, Institut National de Recherche en
- Informatique et en Automatique, Keio University). All Rights
- Reserved. http://www.w3.org/Consortium/Legal/"
- 3. Notice of any changes or modifications to the W3C files, including
- the date changes were made. (We recommend you provide URIs to the
- location from which the code is derived.)
-
- THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT
- HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED,
- INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS
- FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE OR
- DOCUMENTATION WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS,
- TRADEMARKS OR OTHER RIGHTS.
-
- COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL
- OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR
- DOCUMENTATION.
-
- The name and trademarks of copyright holders may NOT be used in
- advertising or publicity pertaining to the software without specific,
- written prior permission. Title to copyright in this software and any
- associated documentation will at all times remain with copyright
- holders.
-
- Freetype Library
-
- The following software may be included in this product: Freetype. Use
- of any of this software is governed by the terms of the license below:
-
- 0. Definitions
-
- Throughout this license, the terms `package', `FreeType Project', and
- `FreeType archive' refer to the set of files originally distributed by
- the authors (David Turner, Robert Wilhelm, and Werner Lemberg) as the
- `FreeType Project', be they named as alpha, beta or final release.
-
- `You' refers to the licensee, or person using the project, where
- `using' is a generic term including compiling the project's source code
- as well as linking it to form a `program' or `executable'. This program
- is referred to as `a program using the FreeType engine'.
-
- This license applies to all files distributed in the original FreeType
- Project, including all source code, binaries and documentation, unless
- otherwise stated in the file in its original, unmodified form as
- distributed in the original archive. If you are unsure whether or not a
- particular file is covered by this license, you must contact us to
- verify this.
-
- The FreeType Project is copyright (C) 1996-2000 by David Turner, Robert
- Wilhelm, and Werner Lemberg. All rights reserved except as specified
- below.
-
- 1. No Warranty
-
- THE FREETYPE PROJECT IS PROVIDED `AS IS' WITHOUT WARRANTY OF ANY KIND,
- EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, WARRANTIES OF
- MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT WILL
- ANY OF THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY DAMAGES
- CAUSED BY THE USE OR THE INABILITY TO USE, OF THE FREETYPE PROJECT.
-
- 2. Redistribution
-
- This license grants a worldwide, royalty-free, perpetual and
- irrevocable right and license to use, execute, perform, compile,
- display, copy, create derivative works of, distribute and sublicense
- the FreeType Project (in both source and object code forms) and
- derivative works thereof for any purpose; and to authorize others to
- exercise some or all of the rights granted herein, subject to the
- following conditions:
- * Redistribution of source code must retain this license file
- ('FTL.TXT') unaltered; any additions, deletions or changes to the
- original files must be clearly indicated in accompanying
- documentation. The copyright notices of the unaltered, original
- files must be preserved in all copies of source files.
- * Redistribution in binary form must provide a disclaimer that states
- that the software is based in part of the work of the FreeType
- Team, in the distribution documentation. We also encourage you to
- put an URL to the FreeType web page in your documentation, though
- this isn't mandatory.
-
- These conditions apply to any software derived from or based on the
- FreeType Project, not just the unmodified files. If you use our work,
- you must acknowledge us. However, no fee need be paid to us.
-
- 3. Advertising
-
- Neither the FreeType authors and contributors nor you shall use the
- name of the other for commercial, advertising, or promotional purposes
- without specific prior written permission.
-
- We suggest, but do not require, that you use one or more of the
- following phrases to refer to this software in your documentation or
- advertising materials: `FreeType Project', `FreeType Engine', `FreeType
- library', or `FreeType Distribution'.
-
- As you have not signed this license, you are not required to accept it.
- However, as the FreeType Project is copyrighted material, only this
- license, or another one contracted with the authors, grants you the
- right to use, distribute, and modify it. Therefore, by using,
- distributing, or modifying the FreeType Project, you indicate that you
- understand and accept all the terms of this license.
-
- 4. Contacts
-
- There are two mailing lists related to FreeType:
- * freetype at freetype.org
-
- Discusses general use and applications of FreeType, as well as future
- and wanted additions to the library and distribution. If you are
- looking for support, start in this list if you haven't found anything
- to help you in the documentation.
- * devel at freetype.org
-
- Discusses bugs, as well as engine internals, design issues, specific
- licenses, porting, etc.
- * http://www.freetype.org
-
- Holds the current FreeType web page, which will allow you to download
- our latest development version and read online documentation.
-
- You can also contact us individually at:
-
- David Turner
- Robert Wilhelm
- Werner Lemberg
-
-GNU ISO C++ Library
-
- The following software may be included in this product: GNU ISO C++
- Library. Use of any of this software is governed by the terms of the
- license below:
-
- © Free Software Foundation, Inc.
-
- See GPL Version 2 below
-
- Additional License(s)
-
-libstdc++:
-// Explicit instantiation file.
-
-// Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002
-// Free Software Foundation, Inc.
-//
-// This file is part of the GNU ISO C++ Library. This library is free
-// software; you can redistribute it and/or modify it under the
-// terms of the GNU General Public License as published by the
-// Free Software Foundation; either version 2, or (at your option)
-// any later version.
-
-// This library 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 General Public License for more details.
-
-// You should have received a copy of the GNU General Public License along
-// with this library; see the file COPYING. If not, write to the Free
-// Software Foundation, 59 Temple Place - Suite 330, Boston, MA
-02111-1307,
-// USA.
-
-// As a special exception, you may use this file as part of a free
-software
-// library without restriction. Specifically, if other files instantiate
-// templates or use macros or inline functions from this file, or you
-compile
-// this file and link it with other files to produce an executable, this
-// file does not by itself cause the resulting executable to be covered by
-// the GNU General Public License. This exception does not however
-// invalidate any other reasons why the executable file might be
-covered by
-// the GNU General Public License.
-
-libgcc:
-//
-// ISO C++ 14882:
-//
-
-/* Copyright (C) 2001, 2002 Free Software Foundation, Inc.
- Contributed by Jakub Jelinek .
-
- This file is part of GNU CC.
-
- GNU CC is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2, or (at your option)
- any later version.
-
- GNU CC 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 General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with GNU CC; see the file COPYING. If not, write to
- the Free Software Foundation, 59 Temple Place - Suite 330,
- Boston, MA 02111-1307, USA. */
-
-/* As a special exception, if you link this library with other files,
- some of which are compiled with GCC, to produce an executable,
- this library does not by itself cause the resulting executable
- to be covered by the GNU General Public License.
- This exception does not however invalidate any other reasons why
- the executable file might be covered by the GNU General Public
-License. */
-
-/* Locate the FDE entry for a given address, using PT_GNU_EH_FRAME ELF
- segment and dl_iterate_phdr to avoid register/deregister calls at
- DSO load/unload. */
-
-Firebird
-
- The applicable and approved licenses for the source files of the
- Firebird RDBMS project are:
-
- 1) InterBase Public License (IPL), version 1.0
-
- 2) Initial Developer's Public License (IDPL), version 1.0
-
- The IPL is copyright of Borland Corp., the other licenses are copyright
- by the source code authors and contributors. Both are variants of the
- Mozilla Public License V.1.1 (MPL). See
- http://www.firebirdsql.org/en/licensing/
-
-fontconfig
-
- The following software may be included in this product: fontconfig. Use
- of any of this software is governed by the terms of the license below:
-
- Copyright © 2002 Keith Packard
-
- Permission to use, copy, modify, distribute, and sell this software and
- its documentation for any purpose is hereby granted without fee,
- provided that the above copyright notice appear in all copies and that
- both that copyright notice and this permission notice appear in
- supporting documentation, and that the name of the author(s) not be
- used in advertising or publicity pertaining to distribution of the
- software without specific, written prior permission. The authors make
- no representations about the suitability of this software for any
- purpose. It is provided "as is" without express or implied warranty.
-
- THE AUTHOR(S) DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
- INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
- EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY SPECIAL, INDIRECT OR
- CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
- USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
- OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- PERFORMANCE OF THIS SOFTWARE.
-
-GpgME
-
- License (software): LGPLv2.1+
- License (manual+tools): GPLv3+
-
- See GNU Lesser General Public License Version 2.1 below
- See GNU General Public License Version 3 below
-
-Graphite2
-
- The following software may be included in this product: Graphite2. Use
- of any of this software is governed by the terms of the license below:
-
- Copyright 2010, SIL International All rights reserved.
-
- This library is free software; you can redistribute it and/or modify it
- under the terms of the GNU Lesser General Public License as published
- by the Free Software Foundation; either version 2.1 of License, or (at
- your option) any later version.
-
- This program 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 for more details.
-
- You should also have received a copy of the GNU Lesser General Public
- License along with this library in the file named "LICENSE". If not,
- write to the Free Software Foundation, Inc., 59 Temple Place, Suite
- 330, Boston, MA 02111-1307, USA or visit their web page on the internet
- at http://www.fsf.org/licenses/lgpl.html.
-
- Alternatively, you may use this library under the terms of the Mozilla
- Public License (http://mozilla.org/MPL) or under the GNU General
- Public License, as published by the Free Software Foundation; either
- version 2 of the license or (at your option) any later version.
-
- See LGPL Version 2.1 below
-
- See MPL Version 1.1 below
-
-HarfBuzz
-
- HarfBuzz is licensed under the so-called "Old MIT" license. Details
- follow. For parts of HarfBuzz that are licensed under different
- licenses see individual files names COPYING in subdirectories where
- applicable.
-
- Copyright © 2010,2011,2012 Google, Inc.
- Copyright © 2012 Mozilla Foundation
- Copyright © 2011 Codethink Limited
- Copyright © 2008,2010 Nokia Corporation and/or its subsidiary(-ies)
- Copyright © 2009 Keith Stribley
- Copyright © 2009 Martin Hosken and SIL International
- Copyright © 2007 Chris Wilson
- Copyright © 2006 Behdad Esfahbod
- Copyright © 2005 David Turner
- Copyright © 2004,2007,2008,2009,2010 Red Hat, Inc.
- Copyright © 1998-2004 David Turner and Werner Lemberg
-
- For full copyright notices consult the individual files in the package.
-
- Permission is hereby granted, without written agreement and without
- license or royalty fees, to use, copy, modify, and distribute this
- software and its documentation for any purpose, provided that the above
- copyright notice and the following two paragraphs appear in all copies
- of this software.
-
- IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
- DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING
- OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE
- COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
- THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
- BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
- FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON
- AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO PROVIDE
- MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
-
-HSQLDB
-
- The following software may be included in this product: HSQLDB. Use of
- any of this software is governed by the terms of the license below:
-
- ORIGINAL LICENSE (a.k.a. "hypersonic_lic.txt")
-
- For content, code, and products originally developed by Thomas Mueller
- and the Hypersonic SQL Group:
-
- Copyright (c) 1995-2000 by the Hypersonic SQL Group. All rights
- reserved. Redistribution and use in source and binary forms, with or
- without modification, are permitted provided that the following
- conditions are met:
-
- Redistribution of source code must retain the above copyright notice,
- this list of conditions and the following disclaimer.
-
- Redistribution in binary form must reproduce the above copyright
- notice, this list of conditions and the following disclaimer in the
- documentation and/or other materials provided with the distribution.
-
- Neither the name of the Hypersonic SQL Group nor the names of its
- contributors may be used to endorse or promote products derived from
- this software without specific prior written permission.
-
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
- IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
- TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
- PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE HYPERSONIC SQL
- GROUP, OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- This software consists of voluntary contributions made by many
- individuals on behalf of the Hypersonic SQL Group.
-
- For work added by the HSQL Development Group (a.k.a. hsqldb_lic.txt)
-
- Copyright (c) 2001-2004, The HSQL Development Group All rights
- reserved.
-
- Redistribution and use in source and binary forms, with or without
- modification, are permitted provided that the following conditions are
- met:
-
- Redistribution of source code must retain the above copyright notice,
- this list of conditions and the following disclaimer.
-
- Redistribution in binary form must reproduce the above copyright
- notice, this list of conditions and the following disclaimer in the
- documentation and/or other materials provided with the distribution.
-
- Neither the name of the HSQL Development Group nor the names of its
- contributors may be used to endorse or promote products derived from
- this software without specific prior written permission.
-
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
- IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
- TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
- PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL HSQL DEVELOPMENT
- GROUP, HSQLDB.ORG, OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
- INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
- BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
- OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
- TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
- USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
- DAMAGE.
-
-Hunspell
-
- The following software may be included in this product: Hunspell. Use
- of any of this software is governed by the terms of the license below:
-
- GPL 2.0/LGPL 2.1/MPL 1.1 tri-license
-
- The contents of this software may be used under the terms of the GNU
- General Public License Version 2 or later (the "GPL"), or the GNU
- Lesser General Public License Version 2.1 or later (the "LGPL") or
- (excepting the LGPLed GNU gettext library in the intl/ directory) the
- Mozilla Public License Version 1.1 or later (the "MPL").
-
- Software distributed under these licenses is distributed on an "AS IS"
- basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
- licenses for the specific language governing rights and limitations
- under the licenses.
-
- See GPL Version 2 below
-
- See LGPL Version 2.1 below
-
- See MPL Version 1.1 below
-
-Hyphen
-
- The following software may be included in this product: Hyphen. Use of
- any of this software is governed by the terms of the license below:
-
- GPL 2.0/LGPL 2.1/MPL 1.1 tri-license
-
- The contents of this software may be used under the terms of the GNU
- General Public License Version 2 or later (the "GPL"), or the GNU
- Lesser General Public License Version 2.1 or later (the "LGPL") or
- (excepting the LGPLed GNU gettext library in the intl/ directory) the
- Mozilla Public License Version 1.1 or later (the "MPL").
-
- The Plain TeX hyphenation tables "hyphen.tex" by Donald E. Knuth has a
- non MPL/LGPL compatible license, but freely redistributable: "Unlimited
- copying and redistribution of this file are permitted as long as this
- file is not modified. Modifications are permitted, but only if the
- resulting file is not named hyphen.tex."
-
- Software distributed under these licenses is distributed on an "AS IS"
- basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
- licenses for the specific language governing rights and limitations
- under the licenses.
-
- See GPL Version 2 below
-
- See LGPL Version 2.1 below
-
- See MPL Version 1.1 below
-
-IAccessible2
-
- The following software may be included in this product: IAccessible2
- API.
-
- IAccessible2 IDL Specification
-
- Copyright (c) 2007, 2013 Linux Foundation
- Copyright (c) 2006 IBM Corporation
- Copyright (c) 2000, 2006 Sun Microsystems, Inc.
- All rights reserved.
-
- Redistribution and use in source and binary forms, with or without
- modification, are permitted provided that the following conditions are
- met:
- 1. Redistributions of source code must retain the above copyright
- notice, this list of conditions and the following disclaimer.
-
- 1. Redistributions in binary form must reproduce the above copyright
- notice, this list of conditions and the following disclaimer in the
- documentation and/or other materials provided with the
- distribution.
-
- 1. Neither the name of the Linux Foundation nor the names of its
- contributors may be used to endorse or promote products derived
- from this software without specific prior written permission.
-
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
- IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
- TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
- PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
- This BSD License conforms to the Open Source Initiative "Simplified BSD
- License" as published at:
- http://www.opensource.org/licenses/bsd-license.php
-
- IAccessible2 is a trademark of the Linux Foundation. The IAccessible2
- mark may be used in accordance with the Linux Foundation Trademark
- Policy to indicate compliance with the IAccessible2 specification.
-
- Find out more about IAccessible2 at
- http://accessibility.linuxfoundation.org/.
-
-ICU
-
- The following software may be included in this product: ICU. Use of any
- of this software is governed by the terms of the license below:
-
- ICU License - ICU 1.8.1 and later
-
- COPYRIGHT AND PERMISSION NOTICE
-
- Copyright (c) 1995-2002 International Business Machines Corporation and
- others All rights reserved.
-
- Permission is hereby granted, free of charge, to any person obtaining a
- copy of this software and associated documentation files (the
- "Software"), to deal in the Software without restriction, including
- without limitation the rights to use, copy, modify, merge, publish,
- distribute, and/or sell copies of the Software, and to permit persons
- to whom the Software is furnished to do so, provided that the above
- copyright notice(s) and this permission notice appear in all copies of
- the Software and that both the above copyright notice(s) and this
- permission notice appear in supporting documentation.
-
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
- OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
- HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL
- INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING
- FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
- NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
- WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
-
- Except as contained in this notice, the name of a copyright holder
- shall not be used in advertising or otherwise to promote the sale, use
- or other dealings in this Software without prior written authorization
- of the copyright holder.
-
- All trademarks and registered trademarks mentioned herein are the
- property of their respective owners.
-
-IJG JPEG Library
-
- The following software may be included in this product: IJG JPEG
- Library. Use of any of this software is governed by the terms of the
- license below:
-
- In plain English:
- 1. We don't promise that this software works. (But if you find any
- bugs, please let us know!)
- 2. You can use this software for whatever you want. You don't have to
- pay us.
- 3. You may not pretend that you wrote this software. If you use it in
- a program, you must acknowledge somewhere in your documentation
- that you've used the IJG code.
-
- In legalese:
-
- The authors make NO WARRANTY or representation, either express or
- implied, with respect to this software, its quality, accuracy,
- merchantability, or fitness for a particular purpose. This software is
- provided "AS IS", and you, its user, assume the entire risk as to its
- quality and accuracy.
-
- This software is copyright (C) 1991-1998, Thomas G. Lane. All Rights
- Reserved except as specified below.
-
- Permission is hereby granted to use, copy, modify, and distribute this
- software (or portions thereof) for any purpose, without fee, subject to
- these conditions: (1) If any part of the source code for this software
- is distributed, then this README file must be included, with this
- copyright and no-warranty notice unaltered; and any additions,
- deletions, or changes to the original files must be clearly indicated
- in accompanying documentation. (2) If only executable code is
- distributed, then the accompanying documentation must state that "this
- software is based in part on the work of the Independent JPEG Group".
- (3) Permission for use of this software is granted only if the user
- accepts full responsibility for any undesirable consequences; the
- authors accept NO LIABILITY for damages of any kind.
-
- These conditions apply to any software derived from or based on the IJG
- code, not just to the unmodified library. If you use our work, you
- ought to acknowledge us.
-
- Permission is NOT granted for the use of any IJG author's name or
- company name in advertising or publicity relating to this software or
- products derived from it. This software may be referred to only as "the
- Independent JPEG Group's software".
-
- We specifically permit and encourage the use of this software as the
- basis of commercial products, provided that all warranty or liability
- claims are assumed by the product vendor.
-
- ansi2knr.c is included in this distribution by permission of L. Peter
- Deutsch, sole proprietor of its copyright holder, Aladdin Enterprises
- of Menlo Park, CA. ansi2knr.c is NOT covered by the above copyright and
- conditions, but instead by the usual distribution terms of the Free
- Software Foundation; principally, that you must include source code if
- you redistribute it. (See the file ansi2knr.c for full details.)
- However, since ansi2knr.c is not needed as part of any program
- generated from the IJG code, this does not limit you more than the
- foregoing paragraphs do.
-
- The Unix configuration script "configure" was produced with GNU
- Autoconf. It is copyright by the Free Software Foundation but is freely
- distributable. The same holds for its supporting scripts (config.guess,
- config.sub, ltconfig, ltmain.sh). Another support script, install-sh,
- is copyright by M.I.T. but is also freely distributable.
-
- It appears that the arithmetic coding option of the JPEG spec is
- covered by patents owned by IBM, AT&T, and Mitsubishi. Hence arithmetic
- coding cannot legally be used without obtaining one or more licenses.
- For this reason, support for arithmetic coding has been removed from
- the free JPEG software. (Since arithmetic coding provides only a
- marginal gain over the unpatented Huffman mode, it is unlikely that
- very many implementations will support it.) So far as we are aware,
- there are no patent restrictions on the remaining code.
-
- The IJG distribution formerly included code to read and write GIF
- files. To avoid entanglement with the Unisys LZW patent, GIF reading
- support has been removed altogether, and the GIF writer has been
- simplified to produce "uncompressed GIFs". This technique does not use
- the LZW algorithm; the resulting GIF files are larger than usual, but
- are readable by all standard GIF decoders.
-
- We are required to state that
-
- "The Graphics Interchange Format(c) is the Copyright property of
- CompuServe Incorporated. GIF(sm) is a Service Mark property of
- CompuServe Incorporated."
-
-JDOM
-
- The following software may be included in this product: JDOM. Use of
- any of this software is governed by the terms of the license below:
-
- Copyright (C) 2000-2004 Jason Hunter & Brett McLaughlin. All rights
- reserved.
-
- Redistribution and use in source and binary forms, with or without
- modification, are permitted provided that the following conditions are
- met:
-
- 1. Redistribution of source code must retain the above copyright
- notice, this list of conditions, and the following disclaimer.
-
- 2. Redistribution in binary form must reproduce the above copyright
- notice, this list of conditions, and the disclaimer that follows these
- conditions in the documentation and/or other materials provided with
- the distribution.
-
- 3. The name "JDOM" must not be used to endorse or promote products
- derived from this software without prior written permission. For
- written permission, please contact <request_AT_jdom_DOT_org>.
-
- 4. Products derived from this software may not be called "JDOM", nor
- may "JDOM" appear in their name, without prior written permission from
- the JDOM Project Management <request_AT_jdom_DOT_org>.
-
- In addition, we request (but do not require) that you include in the
- end-user documentation provided with the redistribution and/or in the
- software itself an acknowledgement equivalent to the following:
-
- "This product includes software developed by the JDOM Project
- (http://www.jdom.org/)."
-
- Alternatively, the acknowledgment may be graphical using the logos
- available at http://www.jdom.org/images/logos.
-
- THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
- WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
- MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
- NO EVENT SHALL THE JDOM AUTHORS OR THE PROJECT CONTRIBUTORS BE LIABLE
- FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
- BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
- WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
- OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
- ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
- This software consists of voluntary contributions made by many
- individuals on behalf of the JDOM Project and was originally created by
- Jason Hunter <jhunter_AT_jdom_DOT_org> and Brett McLaughlin
- <brett_AT_jdom_DOT_org>. For more information on the JDOM Project,
- please see http://www.jdom.org/.
-
-libassuan
-
- License (library): LGPLv2.1+
- License (manual): GPLv3+
-
- See GNU Lesser General Public License Version 2.1 below
- See GNU General Public License Version 3 below
-
-libatomic_ops
-
- The following software may be included in this product: libatomic_ops.
- Use of any of this software is governed by the terms of the license
- below:
-
- See GPL Version 2 below
-
-libcdr
-
- The following software may be included in this product: libcdr. Use of
- any of this software is governed by the terms of the license below:
-
- MPL 1.1 / LGPL v2+ / GPL v2+
-
- See GPL Version 2 below
-
- See LGPL Version 2 below
-
- See MPL Version 1.1 below
-
-libcmis
-
- The following software may be included in this product: libcmis. Use of
- any of this software is governed by the terms of the license below:
-
- MPL 1.1 / LGPL v2+ / GPL v2+
-
- See GPL Version 2 below
-
- See LGPL Version 2 below
-
- See MPL Version 1.1 below
-
-libcurl
-
- The following software may be included in this product: libcurl. Use of
- any of this software is governed by the terms of the license below:
-
- Copyright (c) 1996 - 2009, Daniel Stenberg, <daniel at haxx.se>.
-
- All rights reserved.
-
- Permission to use, copy, modify, and distribute this software for any
- purpose with or without fee is hereby granted, provided that the above
- copyright notice and this permission notice appear in all copies.
-
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
- OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
- AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
- CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
- SOFTWARE.
-
- Except as contained in this notice, the name of a copyright holder
- shall not be used in advertising or otherwise to promote the sale, use
- or other dealings in this Software without prior written authorization
- of the copyright holder.
-
-libeot
-
- The following software may be included in this product: libeot. Use of
- any of this software is governed by the terms of the license below:
-
- See MPL Version 2 below
-
-libe-book
-
- The following software may be included in this product: libe-book. Use
- of any of this software is governed by the terms of the license below:
-
- LGPL v2.1+ / MPL 2+
-
- See LGPL Version 2.1 below
-
- See MPL Version 2 below
-
-libetonyek
-
- The following software may be included in this product: libetonyek. Use
- of any of this software is governed by the terms of the license below:
-
- See MPL Version 2 below
-
-libexttextcat
-
- The following software may be included in this product: libexttextcat.
- Use of any of this software is governed by the terms of the license
- below:
-
- Copyright (c) 2003, WiseGuys Internet B.V.
-
- All rights reserved.
-
- Redistribution and use in source and binary forms, with or without
- modification, are permitted provided that the following conditions are
- met:
-
- - Redistribution of source code must retain the above copyright notice,
- this list of conditions and the following disclaimer.
-
- - Redistribution in binary form must reproduce the above copyright
- notice, this list of conditions and the following disclaimer in the
- documentation and/or other materials provided with the distribution.
-
- - Neither the name of the WiseGuys Internet B.V. nor the names of its
- contributors may be used to endorse or promote products derived from
- this software without specific prior written permission.
-
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
- IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
- TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
- PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-libfreehand
-
- The following software may be included in this product: libfreehand.
- Use of any of this software is governed by the terms of the license
- below:
-
- See MPL Version 2 below
-
-libgpg-error
-
- License (library): LGPLv2.1+
- License (manual+tools): GPLv2+ with exception
-
- See GNU Lesser General Public License Version 2.1 below
- See GNU General Public License Version 2 below
-
-liblangtag
-
- The following software may be included in this product: liblangtag. Use
- of any of this software is governed by the terms of the license below:
-
- See LGPL Version 3 below
-
-libmspub
-
- The following software may be included in this product: libmspub. Use
- of any of this software is governed by the terms of the license below:
-
- MPL 1.1 / LGPL v2+ / GPL v2+
-
- See GPL Version 2 below
-
- See LGPL Version 2 below
-
- See MPL Version 1.1 below
-
-libmwaw
-
- The following software may be included in this product: libmwaw. Use of
- any of this software is governed by the terms of the license below:
-
- LGPL v2.1+ / MPL 2
-
- See LGPL Version 2.1 below
-
- See MPL Version 2 below
-
-libodfgen
-
- The following software may be included in this product: libodfgen. Use
- of any of this software is governed by the terms of the license below:
-
- LGPL v2.1+ / MPL 2
-
- See LGPL Version 2.1 below
-
- See MPL Version 2 below
-
-liborcus
-
- The following software may be included in this product: liborcus. Use
- of any of this software is governed by the terms of the license below:
-
- Permission is hereby granted, free of charge, to any person obtaining a
- copy of this software and associated documentation files (the
- "Software"), to deal in the Software without restriction, including
- without limitation the rights to use, copy, modify, merge, publish,
- distribute, sublicense, and/or sell copies of the Software, and to
- permit persons to whom the Software is furnished to do so, subject to
- the following conditions:
-
- The above copyright notice and this permission notice shall be included
- in all copies or substantial portions of the Software.
-
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-libpng
-
- The following software may be included in this product: libpng. Use of
- any of this software is governed by the terms of the license below:
-
- This copy of the libpng notices is provided for your convenience. In
- case of
- any discrepancy between this copy and the notices in the file png.h
- that is
- included in the libpng distribution, the latter shall prevail.
- COPYRIGHT NOTICE, DISCLAIMER, and LICENSE:
- If you modify libpng you may insert additional notices immediately
- following
- this sentence.
- This code is released under the libpng license.
- libpng versions 1.2.6, August 15, 2004, through 1.5.1, February 3,
- 2011, are
- Copyright (c) 2004, 2006-2011 Glenn Randers-Pehrson, and are
- distributed according to the same disclaimer and license as
- libpng-1.2.5
- with the following individual added to the list of Contributing Authors
- Cosmin Truta
- libpng versions 1.0.7, July 1, 2000, through 1.2.5 - October 3, 2002,
- are
- Copyright (c) 2000-2002 Glenn Randers-Pehrson, and are
- distributed according to the same disclaimer and license as
- libpng-1.0.6
- with the following individuals added to the list of Contributing
- Authors
- Simon-Pierre Cadieux
- Eric S. Raymond
- Gilles Vollant
- and with the following additions to the disclaimer:
- There is no warranty against interference with your enjoyment of the
- library or against infringement. There is no warranty that our
- efforts or the library will fulfill any of your particular purposes
- or needs. This library is provided with all faults, and the entire
- risk of satisfactory quality, performance, accuracy, and effort is with
- the user.
- libpng versions 0.97, January 1998, through 1.0.6, March 20, 2000, are
- Copyright (c) 1998, 1999 Glenn Randers-Pehrson, and are
- distributed according to the same disclaimer and license as
- libpng-0.96,
- with the following individuals added to the list of Contributing
- Authors:
- Tom Lane
- Glenn Randers-Pehrson
- Willem van Schaik
- libpng versions 0.89, June 1996, through 0.96, May 1997, are
- Copyright (c) 1996, 1997 Andreas Dilger
- Distributed according to the same disclaimer and license as
- libpng-0.88,
- with the following individuals added to the list of Contributing
- Authors:
- John Bowler
- Kevin Bracey
- Sam Bushell
- Magnus Holmgren
- Greg Roelofs
- Tom Tanner
- libpng versions 0.5, May 1995, through 0.88, January 1996, are
- Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.
- For the purposes of this copyright and license, "Contributing Authors"
- is defined as the following set of individuals:
- Andreas Dilger
- Dave Martindale
- Guy Eric Schalnat
- Paul Schmidt
- Tim Wegner
- The PNG Reference Library is supplied "AS IS". The Contributing Authors
- and Group 42, Inc. disclaim all warranties, expressed or implied,
- including, without limitation, the warranties of merchantability and of
- fitness for any purpose. The Contributing Authors and Group 42, Inc.
- assume no liability for direct, indirect, incidental, special,
- exemplary,
- or consequential damages, which may result from the use of the PNG
- Reference Library, even if advised of the possibility of such damage.
- Permission is hereby granted to use, copy, modify, and distribute this
- source code, or portions hereof, for any purpose, without fee, subject
- to the following restrictions:
- 1. The origin of this source code must not be misrepresented.
- 2. Altered versions must be plainly marked as such and must not
- be misrepresented as being the original source.
- 3. This Copyright notice may not be removed or altered from any
- source or altered source distribution.
- The Contributing Authors and Group 42, Inc. specifically permit,
- without
- fee, and encourage the use of this source code as a component to
- supporting the PNG file format in commercial products. If you use this
- source code in a product, acknowledgment is not required but would be
- appreciated.
- A "png_get_copyright" function is available, for convenient use in
- "about"
- boxes and the like:
- printf("%s",png_get_copyright(NULL));
- Also, the PNG logo (in PNG format, of course) is supplied in the
- files "pngbar.png" and "pngbar.jpg (88x31) and "pngnow.png" (98x31).
- Libpng is OSI Certified Open Source Software. OSI Certified Open Source
- is a
- certification mark of the Open Source Initiative.
- Glenn Randers-Pehrson
- glennrp at users.sourceforge.net
- February 3, 2011
-
-libvisio
-
- The following software may be included in this product: libvisio. Use
- of any of this software is governed by the terms of the license below:
-
- MPL 1.1+ / LGPL v2.1+ / GPL v2+
-
- See GPL Version 2 below
-
- See LGPL Version 2.1 below
-
- See MPL Version 1.1 below
-
-libwpd
-
- The following software may be included in this product: libwpd. Use of
- any of this software is governed by the terms of the license below:
-
- LGPL v2.1+ / MPL 2
-
- See LGPL Version 2.1 below
-
- See MPL Version 2 below
-
-libwpg
-
- The following software may be included in this product: libwpg. Use of
- any of this software is governed by the terms of the license below:
-
- LGPL v2.1+ / MPL 2
-
- See LGPL Version 2.1 below
-
- See MPL Version 2 below
-
-libwps
-
- The following software may be included in this product: libwps. Use of
- any of this software is governed by the terms of the license below:
-
- LGPL v2.1+ / MPL 2
-
- See LGPL Version 2.1 below
-
- See MPL Version 2 below
-
-libxml2
-
- The following software may be included in this product: libxml2. Use of
- any of this software is governed by the terms of the license below:
-
- Except where otherwise noted in the source code (e.g. the files hash.c,
- list.c and the trio files, which are covered by a similar license but
- with different Copyright notices) all the files are:
-
- Copyright (C) 1998-2003 Daniel Veillard. All Rights Reserved.
-
- Permission is hereby granted, free of charge, to any person obtaining a
- copy of this software and associated documentation files (the
- "Software"), to deal in the Software without restriction, including
- without limitation the rights to use, copy, modify, merge, publish,
- distribute, sublicense, and/or sell copies of the Software, and to
- permit persons to whom the Software is furnished to do so, subject to
- the following conditions:
-
- The above copyright notice and this permission notice shall be included
- in all copies or substantial portions of the Software.
-
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- MERCHANTABILITY, FIT- NESS FOR A PARTICULAR PURPOSE AND
- NONINFRINGEMENT. IN NO EVENT SHALL THE DANIEL VEILLARD BE LIABLE FOR
- ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
- CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CON- NECTION
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
- Except as contained in this notice, the name of Daniel Veillard shall
- not be used in advertising or otherwise to promote the sale, use or
- other dealings in this Software without prior written authorization
- from him.
-
-libxslt
-
- The following software may be included in this product: libxslt. Use of
- any of this software is governed by the terms of the license below:
-
- License for libxslt except libexslt
-
- Copyright (C) 2001-2002 Daniel Veillard. All Rights Reserved.
-
- Permission is hereby granted, free of charge, to any person obtaining a
- copy of this software and associated documentation files (the
- "Software"), to deal in the Software without restriction, including
- without limitation the rights to use, copy, modify, merge, publish,
- distribute, sublicense, and/or sell copies of the Software, and to
- permit persons to whom the Software is furnished to do so, subject to
- the following conditions:
-
- The above copyright notice and this permission notice shall be included
- in all copies or substantial portions of the Software.
-
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- MERCHANTABILITY, FIT- NESS FOR A PARTICULAR PURPOSE AND
- NONINFRINGEMENT. IN NO EVENT SHALL THE DANIEL VEILLARD BE LIABLE FOR
- ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
- CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CON- NECTION
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
- Except as contained in this notice, the name of Daniel Veillard shall
- not be used in advertising or otherwise to promote the sale, use or
- other dealings in this Software without prior written authorization
- from him.
-
- License for libexslt
-
- Copyright (C) 2001-2002 Thomas Broyer, Charlie Bozeman and Daniel
- Veillard. All Rights Reserved.
-
- Permission is hereby granted, free of charge, to any person obtaining a
- copy of this software and associated documentation files (the
- "Software"), to deal in the Software without restriction, including
- without limitation the rights to use, copy, modify, merge, publish,
- distribute, sublicense, and/or sell copies of the Software, and to
- permit persons to whom the Software is furnished to do so, subject to
- the following conditions:
-
- The above copyright notice and this permission notice shall be included
- in all copies or substantial portions of the Software.
-
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- MERCHANTABILITY, FIT- NESS FOR A PARTICULAR PURPOSE AND
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM,
- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
- OTHERWISE, ARISING FROM, OUT OF OR IN CON- NECTION WITH THE SOFTWARE OR
- THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
- Except as contained in this notice, the name of the authors shall not
- be used in advertising or otherwise to promote the sale, use or other
- dealings in this Software without prior written authorization from him.
-
-Little CMS (lcms2)
-
- The following software may be included in this product: Little CMS
- (lcms2). Use of any of this software is governed by the terms of the
- license below:
-
- Copyright (c) 1998-2011 Marti Maria Saguer
-
- Permission is hereby granted, free of charge, to any person obtaining a
- copy of this software and associated documentation files (the
- "Software"), to deal in the Software without restriction, including
- without limitation the rights to use, copy, modify, merge, publish,
- distribute, sublicense, and/or sell copies of the Software, and to
- permit persons to whom the Software is furnished to do so, subject to
- the following conditions:
-
- The above copyright notice and this permission notice shall be included
- in all copies or substantial portions of the Software.
-
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-lpsolve
-
- The following software may be included in this product: lpsolve. Use of
- any of this software is governed by the terms of the license below:
-
- See LGPL Version 2.1 below
-
-mdds
-
- The following software may be included in this product: mdds. Use of
- any of this software is governed by the terms of the license below:
-
- Copyright (c) 2010 Kohei Yoshida
-
- Permission is hereby granted, free of charge, to any person obtaining a
- copy of this software and associated documentation files (the
- "Software"), to deal in the Software without restriction, including
- without limitation the rights to use, copy, modify, merge, publish,
- distribute, sublicense, and/or sell copies of the Software, and to
- permit persons to whom the Software is furnished to do so, subject to
- the following conditions:
-
- The above copyright notice and this permission notice shall be included
- in all copies or substantial portions of the Software.
-
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-Mesa
-
- The following software may be included in this product: The Mesa 3D
- Graphics Library. The default Mesa license is as follows:
-
- Copyright (C) 1999-2007 Brian Paul All Rights Reserved.
-
- Permission is hereby granted, free of charge, to any person obtaining a
- copy of this software and associated documentation files (the
- "Software"), to deal in the Software without restriction, including
- without limitation the rights to use, copy, modify, merge, publish,
- distribute, sublicense, and/or sell copies of the Software, and to
- permit persons to whom the Software is furnished to do so, subject to
- the following conditions:
-
- The above copyright notice and this permission notice shall be included
- in all copies or substantial portions of the Software.
-
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
- IN NO EVENT SHALL BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
- DEALINGS IN THE SOFTWARE.
-
- Ext headers
-
- Copyright (c) 2007 The Khronos Group Inc.
-
- Permission is hereby granted, free of charge, to any person obtaining a
- copy of this software and/or associated documentation files (the
- "Materials"), to deal in the Materials without restriction, including
- without limitation the rights to use, copy, modify, merge, publish,
- distribute, sublicense, and/or sell copies of the Materials, and to
- permit persons to whom the Materials are furnished to do so, subject to
- the following conditions:
-
- The above copyright notice and this permission notice shall be included
- in all copies or substantial portions of the Materials.
-
- THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
- MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS.
-
-Microsoft Visual C++ 2010 Runtime Libraries
-
- The following software may be included in this product: Microsoft
- Visual C++ 2010 Runtime Libraries. Use of any of this software is
- governed by the terms of the license below:
-
- MICROSOFT SOFTWARE LICENSE TERMS
-
- MICROSOFT VISUAL C++ 2010 RUNTIME LIBRARIES WITH SERVICE PACK 1
-
- These license terms are an agreement between Microsoft Corporation (or
- based on where you live, one of its affiliates) and you. Please read
- them. They apply to the software named above, which includes the media
- on which you received it, if any. The terms also apply to any Microsoft
- * updates,
- * supplements,
- * Internet-based services, and
- * support services
-
- for this software, unless other terms accompany those items. If so,
- those terms apply.
-
- BY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT
- THEM, DO NOT USE THE SOFTWARE.
-
- If you comply with these license terms, you have the rights below.
- 1. INSTALLATION AND USE RIGHTS. You may install and use any number of
- copies of the software on your devices.
- 2. SCOPE OF LICENSE. The software is licensed, not sold. This
- agreement only gives you some rights to use the software. Microsoft
- reserves all other rights. Unless applicable law gives you more
- rights despite this limitation, you may use the software only as
- expressly permitted in this agreement. In doing so, you must comply
- with any technical limitations in the software that only allow you
- to use it in certain ways. You may not
-
- * disclose the results of any benchmark tests of the software to any
- third party without Microsoft’s prior written approval;
- * work around any technical limitations in the software;
- * reverse engineer, decompile or disassemble the software, except and
- only to the extent that applicable law expressly permits, despite
- this limitation;
- * make more copies of the software than specified in this agreement
- or allowed by applicable law, despite this limitation;
- * publish the software for others to copy;
- * rent, lease or lend the software;
- * transfer the software or this agreement to any third party; or
- * use the software for commercial software hosting services.
-
- 3. BACKUP COPY. You may make one backup copy of the software. You may
- use it only to reinstall the software.
- 4. DOCUMENTATION. Any person that has valid access to your computer or
- internal network may copy and use the documentation for your
- internal, reference purposes.
- 5. EXPORT RESTRICTIONS. The software is subject to United States
- export laws and regulations. You must comply with all domestic and
- international export laws and regulations that apply to the
- software. These laws include restrictions on destinations, end
- users and end use. For additional information, see
- www.microsoft.com/exporting.
- 6. SUPPORT SERVICES. Because this software is “as is,” we may not
- provide support services for it.
- 7. ENTIRE AGREEMENT. This agreement, and the terms for supplements,
- updates, Internet-based services and support services that you use,
- are the entire agreement for the software and support services.
- 8. APPLICABLE LAW.
-
- a. United States. If you acquired the software in the United States,
- Washington state law governs the interpretation of this agreement
- and applies to claims for breach of it, regardless of conflict of
- laws principles. The laws of the state where you live govern all
- other claims, including claims under state consumer protection
- laws, unfair competition laws, and in tort.
- b. Outside the United States. If you acquired the software in any
- other country, the laws of that country apply.
-
- 9. LEGAL EFFECT. This agreement describes certain legal rights. You
- may have other rights under the laws of your country. You may also
- have rights with respect to the party from whom you acquired the
- software. This agreement does not change your rights under the laws
- of your country if the laws of your country do not permit it to do
- so.
- 10. DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR
- THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES,
- GUARANTEES OR CONDITIONS. YOU MAY HAVE ADDITIONAL CONSUMER RIGHTS
- UNDER YOUR LOCAL LAWS WHICH THIS AGREEMENT CANNOT CHANGE. TO THE
- EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE
- IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
- PURPOSE AND NON-INFRINGEMENT.
- 11. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. YOU CAN
- RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO
- U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING
- CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL
- DAMAGES.
-
- This limitation applies to
- * anything related to the software, services, content (including
- code) on third party Internet sites, or third party programs; and
- * claims for breach of contract, breach of warranty, guarantee or
- condition, strict liability, negligence, or other tort to the
- extent permitted by applicable law.
-
- It also applies even if Microsoft knew or should have known about the
- possibility of the damages. The above limitation or exclusion may not
- apply to you because your country may not allow the exclusion or
- limitation of incidental, consequential or other damages.
-
-Mozilla
-
- The following software may be included in this product: Mozilla,
- Mozilla Address Book, NP SDK. Use of any of this software is governed
- by the terms of the license below:
-
- See MPL 1.1 below
-
-MySQL Connector/C++
-
- The following software may be included in this product:
- MySQL Connector/C++. Use of any of this software is governed by the
- terms of the license below:
-
- Copyright 2007-2008 MySQL AB, 2008-2009 Sun Microsystems Inc.
-
- See GPL Version 2 below
-
-MyThes
-
- The following software may be included in this product: MyThes. Use of
- any of this software is governed by the terms of the license below:
-
- Copyright 2003 Kevin B. Hendricks, Stratford, Ontario, Canada And
- Contributors. All rights reserved.
-
- Redistribution and use in source and binary forms, with or without
- modification, are permitted provided that the following conditions are
- met:
-
- 1. Redistribution of source code must retain the above copyright
- notice, this list of conditions and the following disclaimer.
-
- 2. Redistribution in binary form must reproduce the above copyright
- notice, this list of conditions and the following disclaimer in the
- documentation and/or other materials provided with the distribution.
-
- 3. All modifications to the source code must be clearly marked as such.
- Binary redistribution based on modified source code must be clearly
- marked as modified versions in the documentation and/or other materials
- provided with the distribution.
-
- THIS SOFTWARE IS PROVIDED BY KEVIN B. HENDRICKS AND CONTRIBUTORS ``AS
- IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
- TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
- PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL KEVIN B. HENDRICKS
- OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-neon
-
- The following software may be included in this product: neon. Use of
- any of this software is governed by the terms of the license below:
-
- neon is Copyright (C) 1999-2007 Joe Orton <joe at manyfish.co.uk>
- Portions are:
- Copyright (C) 1999-2000 Tommi Komulainen <Tommi.Komulainen at iki.fi>
- Copyright (C) 1999-2000 Peter Boos <pedib at colorfullife.com>
- Copyright (C) 1991, 1995, 1996, 1997 Free Software Foundation, Inc.
- Copyright (C) 2004 Aleix Conchillo Flaque <aleix at member.fsf.org>
- Copyright (C) 2004 Jiang Lei <tristone at deluxe.ocn.ne.jp>
- Copyright (C) 2004-2005 Vladimir Berezniker @
- http://public.xdi.org/=vmpn
-
- See LGPL Version 2.1 below
-
-Network Security Services (NSS)
-
- The following software may be included in this product: Network
- Security Services (NSS). Use of any of this software is governed by the
- terms of the license below:
-
- See MPL 1.1 below
-
-OpenLDAP
-
- The following software may be included in this product: OpenLDAP. Use
- of any of this software is governed by the terms of the license below:
-
- The OpenLDAP Public License
-
- Version 2.8, 17 August 2003
-
- Redistribution and use of this software and associated documentation
- ("Software"), with or without modification, are permitted provided that
- the following conditions are met:
- 1. Redistributions in source form must retain copyright statements and
- notices,
- 2. Redistributions in binary form must reproduce applicable copyright
- statements and notices, this list of conditions, and the following
- disclaimer in the documentation and/or other materials provided
- with the distribution, and
- 3. Redistributions must contain a verbatim copy of this document.
-
- The OpenLDAP Foundation may revise this license from time to time. Each
- revision is distinguished by a version number. You may use this
- Software under terms of this license revision or under the terms of any
- subsequent revision of the license.
-
- THIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND ITS
- CONTRIBUTORS ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
- INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
- MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
- NO EVENT SHALL THE OPENLDAP FOUNDATION, ITS CONTRIBUTORS, OR THE
- AUTHOR(S) OR OWNER(S) OF THE SOFTWARE BE LIABLE FOR ANY DIRECT,
- INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
- SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
- HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
- STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
- IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
- POSSIBILITY OF SUCH DAMAGE.
-
- The names of the authors and copyright holders must not be used in
- advertising or otherwise to promote the sale, use or other dealing in
- this Software without specific, written prior permission. Title to
- copyright in this Software shall at all times remain with copyright
- holders.
-
- OpenLDAP is a registered trademark of the OpenLDAP Foundation.
-
- Copyright 1999-2003 The OpenLDAP Foundation, Redwood City, California,
- USA. All Rights Reserved. Permission to copy and distribute verbatim
- copies of this document is granted.
-
-OpenSSL
-
- The following software may be included in this product: OpenSSL. Use of
- any of this software is governed by the terms of the license below:
-
- The OpenSSL toolkit stays under a dual license, i.e. both the
- conditions of the OpenSSL License and the original SSLeay license apply
- to the toolkit.
-
- See below for the actual license texts. Actually both licenses are
- BSD-style Open Source licenses. In case of any license issues related
- to OpenSSL please contact openssl-core at openssl.org.
-
- OpenSSL License
-
- Copyright (c) 1998-2007 The OpenSSL Project. All rights reserved.
-
- Redistribution and use in source and binary forms, with or without
- modification, are permitted provided that the following conditions are
- met:
- 1. Redistribution of source code must retain the above copyright
- notice, this list of conditions and the following disclaimer.
- 2. Redistribution in binary form must reproduce the above copyright
- notice, this list of conditions and the following disclaimer in the
- documentation and/or other materials provided with the
- distribution.
- 3. All advertising materials mentioning features or use of this
- software must display the following acknowledgment: "This product
- includes software developed by the OpenSSL Project for use in the
- OpenSSL Toolkit. (http://www.openssl.org/)"
- 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used
- to endorse or promote products derived from this software without
- prior written permission. For written permission, please contact
- openssl-core at openssl.org.
- 5. Products derived from this software may not be called "OpenSSL" nor
- may "OpenSSL" appear in their names without prior written
- permission of the OpenSSL Project.
- 6. Redistribution of any form whatsoever must retain the following
- acknowledgment: "This product includes software developed by the
- OpenSSL Project for use in the OpenSSL Toolkit
- (http://www.openssl.org/)"
-
- THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
- EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR ITS
- CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
- This product includes cryptographic software written by Eric Young
- (eay at cryptsoft.com). This product includes software written by Tim
- Hudson (tjh at cryptsoft.com).
-
- Original SSLeay License
-
- Copyright (C) 1995-1998 Eric Young (eay at cryptsoft.com) All rights
- reserved.
-
- This package is an SSL implementation written by Eric Young
- (eay at cryptsoft.com).
- The implementation was written so as to conform with Netscapes SSL.
-
- This library is free for commercial and non-commercial use as long as
- the following conditions are aheared to. The following conditions apply
- to all code found in this distribution, be it the RC4, RSA, lhash, DES,
- etc., code; not just the SSL code. The SSL documentation included with
- this distribution is covered by the same copyright terms except that
- the holder is Tim Hudson (tjh at cryptsoft.com).
-
- Copyright remains Eric Young's, and as such any Copyright notices in
- the code are not to be removed. If this package is used in a product,
- Eric Young should be given attribution as the author of the parts of
- the library used. This can be in the form of a textual message at
- program startup or in documentation (online or textual) provided with
- the package.
-
- Redistribution and use in source and binary forms, with or without
- modification, are permitted provided that the following conditions are
- met:
- 1. Redistribution of source code must retain the copyright notice,
- this list of conditions and the following disclaimer.
- 2. Redistribution in binary form must reproduce the above copyright
- notice, this list of conditions and the following disclaimer in the
- documentation and/or other materials provided with the
- distribution.
- 3. All advertising materials mentioning features or use of this
- software must display the following acknowledgment: "This product
- includes cryptographic software written by Eric Young
- (eay at cryptsoft.com)" The word 'cryptographic' can be left out if
- the routines from the library being used are not cryptographic
- related :-).
- 4. If you include any Windows specific code (or a derivative thereof)
- from the apps directory (application code) you must include an
- acknowledgment: "This product includes software written by Tim
- Hudson (tjh at cryptsoft.com)"
-
- THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND ANY EXPRESS OR
- IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
- ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
- DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
- OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
- HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
- STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
- IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
- POSSIBILITY OF SUCH DAMAGE.
-
- The license and distribution terms for any publicly available version
- or derivative of this code cannot be changed. i.e. this code cannot
- simply be copied and put under another distribution license [including
- the GNU Public License.]
-
-Pentaho Reporting Flow Engine
-
- The following software may be included in this product: Pentaho
- Reporting Flow Engine (including core, flow-engine, libbase, libfonts,
- libformula, liblayout, libloader, librepository, libserializer, and
- libxml). Use of any of this software is governed by the terms of the
- license below:
-
- See LGPL Version 2.1 below
-
-Pixman
-
- The following software may be included in this product: Pixman
- (libpixman). Use of any of this software is governed by the terms of
- the license below:
-
- The following is the MIT license, agreed upon by most contributors.
-
- Copyright holders of new code should use this license statement where
- possible. They may also add themselves to the list below.
-
- Copyright 1987, 1988, 1989, 1998 The Open Group
- Copyright 1987, 1988, 1989 Digital Equipment Corporation
- Copyright 1999, 2004, 2008 Keith Packard
- Copyright 2000 SuSE, Inc.
- Copyright 2000 Keith Packard, member of The XFree86 Project, Inc.
- Copyright 2004, 2005, 2007, 2008, 2009, 2010 Red Hat, Inc.
- Copyright 2004 Nicholas Miell
- Copyright 2005 Lars Knoll & Zack Rusin, Trolltech
- Copyright 2005 Trolltech AS
- Copyright 2007 Luca Barbato
- Copyright 2008 Aaron Plattner, NVIDIA Corporation
- Copyright 2008 Rodrigo Kumpera
- Copyright 2008 André Tupinambá
- Copyright 2008 Mozilla Corporation
- Copyright 2008 Frederic Plourde
- Copyright 2009, Oracle and/or its affiliates. All rights reserved.
- Copyright 2009, 2010 Nokia Corporation
-
- Permission is hereby granted, free of charge, to any person obtaining a
- copy of this software and associated documentation files (the
- "Software"), to deal in the Software without restriction, including
- without limitation the rights to use, copy, modify, merge, publish,
- distribute, sublicense, and/or sell copies of the Software, and to
- permit persons to whom the Software is furnished to do so, subject to
- the following conditions: The above copyright notice and this
- permission notice (including the next paragraph) shall be included in
- all copies or substantial portions of the Software.
-
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-poppler
-
- The following software may be included in this product: poppler. Use of
- any of this software is governed by the terms of the license below:
-
- See GPL Version 2 below
-
-PostgreSQL
-
- The following software may be included in this product: PostgreSQL. Use
- of any of this software is governed by the terms of the license below:
-
- PostgreSQL is released under the PostgreSQL License, a liberal Open
- Source license, similar to the BSD or MIT licenses.
-
- PostgreSQL Database Management System
- (formerly known as Postgres, then as Postgres95)
-
- Portions Copyright (c) 1996-2012, The PostgreSQL Global Development
- Group
-
- Portions Copyright (c) 1994, The Regents of the University of
- California
-
- Permission to use, copy, modify, and distribute this software and its
- documentation for any purpose, without fee, and without a written
- agreement is hereby granted, provided that the above copyright notice
- and this paragraph and the following two paragraphs appear in all
- copies.
-
- IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY
- FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES,
- INCLUDING LOST PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS
- DOCUMENTATION, EVEN IF THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF
- THE POSSIBILITY OF SUCH DAMAGE.
-
- THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,
- INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
- MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE
- PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF
- CALIFORNIA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT, UPDATES,
- ENHANCEMENTS, OR MODIFICATIONS.
-
-Python
-
- The following software may be included in this product: Python. Use of
- any of this software is governed by the terms of the license below:
-
- PSF LICENSE AGREEMENT FOR PYTHON 2.3
-
- 1. This LICENSE AGREEMENT is between the Python Software Foundation
- ("PSF"), and the Individual or Organization ("Licensee") accessing and
- otherwise using Python 2.3 software in source or binary form and its
- associated documentation.
-
- 2. Subject to the terms and conditions of this License Agreement, PSF
- hereby grants Licensee a nonexclusive, royalty-free, world-wide license
- to reproduce, analyze, test, perform and/or display publicly, prepare
- derivative works, distribute, and otherwise use Python 2.3 alone or in
- any derivative version, provided, however, that PSF's License Agreement
- and PSF's notice of copyright, i.e., "Copyright (c) 2001, 2002, 2003,
- 2004 Python Software Foundation; All Rights Reserved" are retained in
- Python 2.3 alone or in any derivative version prepared by Licensee.
-
- 3. In the event Licensee prepares a derivative work that is based on or
- incorporates Python 2.3 or any part thereof, and wants to make the
- derivative work available to others as provided herein, then Licensee
- hereby agrees to include in any such work a brief summary of the
- changes made to Python 2.3.
-
- 4. PSF is making Python 2.3 available to Licensee on an "AS IS" basis.
- PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY
- OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND DISCLAIMS ANY
- REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY
- PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 2.3 WILL NOT INFRINGE ANY
- THIRD PARTY RIGHTS.
-
- 5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON 2.3
- FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS A
- RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 2.3, OR
- ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
-
- 6. This License Agreement will automatically terminate upon a material
- breach of its terms and conditions.
-
- 7. Nothing in this License Agreement shall be deemed to create any
- relationship of agency, partnership, or joint venture between PSF and
- Licensee. This License Agreement does not grant permission to use PSF
- trademarks or trade name in a trademark sense to endorse or promote
- products or services of Licensee, or any third party.
-
- 8. By copying, installing or otherwise using Python 2.3, Licensee
- agrees to be bound by the terms and conditions of this License
- Agreement.
-
- BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0
-
- BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1
-
- 1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an
- office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the
- Individual or Organization ("Licensee") accessing and otherwise using
- this software in source or binary form and its associated documentation
- ("the Software").
-
- 2. Subject to the terms and conditions of this BeOpen Python License
- Agreement, BeOpen hereby grants Licensee a non-exclusive, royalty-free,
- world-wide license to reproduce, analyze, test, perform and/or display
- publicly, prepare derivative works, distribute, and otherwise use the
- Software alone or in any derivative version, provided, however, that
- the BeOpen Python License is retained in the Software, alone or in any
- derivative version prepared by Licensee.
-
... etc. - the rest is truncated
More information about the Libreoffice-commits
mailing list