~ubuntu-branches/ubuntu/oneiric/libmng/oneiric

« back to all changes in this revision

Viewing changes to LICENSE

  • Committer: Bazaar Package Importer
  • Author(s): Shiju p. Nair
  • Date: 2006-04-07 09:49:11 UTC
  • mfrom: (0.2.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20060407094911-ay3179o63gvlh4ll
Tags: 1.0.9-1
* New upstream release. (closes: #303968, #271979)
* Patch from Aurelien Jarno <aurel32@debian.org> to support GNU/kFreeBSD.
  Closes: #314696)
* Patch from Christopher Bodenstein <cb@physicman.net> to support
  hurd-i386. (closes: #361103)
* README.Debian provide information on what options are compiled in to
  libmng.(closes: #174523)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* ************************************************************************** */
2
 
/* *                                                                        * */
3
 
/* * COPYRIGHT NOTICE:                                                      * */
4
 
/* *                                                                        * */
5
 
/* * Copyright (c) 2000 Gerard Juyn (gerard@libmng.com)                     * */
6
 
/* * [You may insert additional notices after this sentence if you modify   * */
7
 
/* *  this source]                                                          * */
8
 
/* *                                                                        * */
9
 
/* * For the purposes of this copyright and license, "Contributing Authors" * */
10
 
/* * is defined as the following set of individuals:                        * */
11
 
/* *                                                                        * */
12
 
/* *    Gerard Juyn                                                         * */
13
 
/* *                                                                        * */
14
 
/* * The MNG Library is supplied "AS IS".  The Contributing Authors         * */
15
 
/* * disclaim all warranties, expressed or implied, including, without      * */
16
 
/* * limitation, the warranties of merchantability and of fitness for any   * */
17
 
/* * purpose.  The Contributing Authors assume no liability for direct,     * */
18
 
/* * indirect, incidental, special, exemplary, or consequential damages,    * */
19
 
/* * which may result from the use of the MNG Library, even if advised of   * */
20
 
/* * the possibility of such damage.                                        * */
21
 
/* *                                                                        * */
22
 
/* * Permission is hereby granted to use, copy, modify, and distribute this * */
23
 
/* * source code, or portions hereof, for any purpose, without fee, subject * */
24
 
/* * to the following restrictions:                                         * */
25
 
/* *                                                                        * */
26
 
/* * 1. The origin of this source code must not be misrepresented;          * */
27
 
/* *    you must not claim that you wrote the original software.            * */
28
 
/* *                                                                        * */
29
 
/* * 2. Altered versions must be plainly marked as such and must not be     * */
30
 
/* *    misrepresented as being the original source.                        * */
31
 
/* *                                                                        * */
32
 
/* * 3. This Copyright notice may not be removed or altered from any source * */
33
 
/* *    or altered source distribution.                                     * */
34
 
/* *                                                                        * */
35
 
/* * The Contributing Authors specifically permit, without fee, and         * */
36
 
/* * encourage the use of this source code as a component to supporting     * */
37
 
/* * the MNG and JNG file format in commercial products.  If you use this   * */
38
 
/* * source code in a product, acknowledgment would be highly appreciated.  * */
39
 
/* *                                                                        * */
40
 
/* ************************************************************************** */
41
 
/* *                                                                        * */
42
 
/* * Parts of this software have been adapted from the libpng package.      * */
43
 
/* * Although this library supports all features from the PNG specification * */
44
 
/* * (as MNG descends from it) it does not require the libpng package.      * */
45
 
/* * It does require the zlib library and optionally the IJG jpeg library,  * */
46
 
/* * and/or the "little-cms" library by Marti Maria (depending on the       * */
47
 
/* * inclusion of support for JNG and Full-Color-Management respectively.   * */
48
 
/* *                                                                        * */
49
 
/* * This library's function is primarily to read and display MNG           * */
50
 
/* * animations. It is not meant as a full-featured image-editing           * */
51
 
/* * component! It does however offer creation and editing functionality    * */
52
 
/* * at the chunk level.                                                    * */
53
 
/* * (future modifications may include some more support for creation       * */
54
 
/* *  and or editing)                                                       * */
55
 
/* *                                                                        * */
56
 
/* ************************************************************************** */
 
1
/* ************************************************************************** */
 
2
/* *                                                                        * */
 
3
/* * COPYRIGHT NOTICE:                                                      * */
 
4
/* *                                                                        * */
 
5
/* * Copyright (c) 2000 Gerard Juyn (gerard@libmng.com)                     * */
 
6
/* * [You may insert additional notices after this sentence if you modify   * */
 
7
/* *  this source]                                                          * */
 
8
/* *                                                                        * */
 
9
/* * For the purposes of this copyright and license, "Contributing Authors" * */
 
10
/* * is defined as the following set of individuals:                        * */
 
11
/* *                                                                        * */
 
12
/* *    Gerard Juyn                                                         * */
 
13
/* *                                                                        * */
 
14
/* * The MNG Library is supplied "AS IS".  The Contributing Authors         * */
 
15
/* * disclaim all warranties, expressed or implied, including, without      * */
 
16
/* * limitation, the warranties of merchantability and of fitness for any   * */
 
17
/* * purpose.  The Contributing Authors assume no liability for direct,     * */
 
18
/* * indirect, incidental, special, exemplary, or consequential damages,    * */
 
19
/* * which may result from the use of the MNG Library, even if advised of   * */
 
20
/* * the possibility of such damage.                                        * */
 
21
/* *                                                                        * */
 
22
/* * Permission is hereby granted to use, copy, modify, and distribute this * */
 
23
/* * source code, or portions hereof, for any purpose, without fee, subject * */
 
24
/* * to the following restrictions:                                         * */
 
25
/* *                                                                        * */
 
26
/* * 1. The origin of this source code must not be misrepresented;          * */
 
27
/* *    you must not claim that you wrote the original software.            * */
 
28
/* *                                                                        * */
 
29
/* * 2. Altered versions must be plainly marked as such and must not be     * */
 
30
/* *    misrepresented as being the original source.                        * */
 
31
/* *                                                                        * */
 
32
/* * 3. This Copyright notice may not be removed or altered from any source * */
 
33
/* *    or altered source distribution.                                     * */
 
34
/* *                                                                        * */
 
35
/* * The Contributing Authors specifically permit, without fee, and         * */
 
36
/* * encourage the use of this source code as a component to supporting     * */
 
37
/* * the MNG and JNG file format in commercial products.  If you use this   * */
 
38
/* * source code in a product, acknowledgment would be highly appreciated.  * */
 
39
/* *                                                                        * */
 
40
/* ************************************************************************** */
 
41
/* *                                                                        * */
 
42
/* * Parts of this software have been adapted from the libpng package.      * */
 
43
/* * Although this library supports all features from the PNG specification * */
 
44
/* * (as MNG descends from it) it does not require the libpng package.      * */
 
45
/* * It does require the zlib library and optionally the IJG jpeg library,  * */
 
46
/* * and/or the "little-cms" library by Marti Maria (depending on the       * */
 
47
/* * inclusion of support for JNG and Full-Color-Management respectively.   * */
 
48
/* *                                                                        * */
 
49
/* * This library's function is primarily to read and display MNG           * */
 
50
/* * animations. It is not meant as a full-featured image-editing           * */
 
51
/* * component! It does however offer creation and editing functionality    * */
 
52
/* * at the chunk level.                                                    * */
 
53
/* * (future modifications may include some more support for creation       * */
 
54
/* *  and or editing)                                                       * */
 
55
/* *                                                                        * */
 
56
/* ************************************************************************** */