]> git.decadent.org.uk Git - ion3.git/blob - debian/copyright
850683c9f4370f5316a89e61eeb44f06c34db27a
[ion3.git] / debian / copyright
1 This package is maintained by: Per Olofsson <pelle@dsv.su.se>
2
3 It is based on the ion package which was created by Tommi Virtanen
4 <tv@debian.org>
5
6 It was downloaded from: http://iki.fi/tuomov/ion/
7
8 Upstream author: Tuomo Valkonen <tuomov@iki.fi>
9
10 Copyright:
11
12 The following copyright notice appears in the source files:
13
14 /*
15  * ion/ioncore/init.c
16  *
17  * Copyright (c) Tuomo Valkonen 1999-2004. 
18  *
19  * Ion is free software; you can redistribute it and/or modify it under
20  * the terms of the GNU Lesser General Public License as published by
21  * the Free Software Foundation; either version 2.1 of the License, or
22  * (at your option) any later version.
23  */
24
25 The GNU Lesser General Public License can be found in
26 /usr/share/common-licenses/LGPL on Debian systems.
27
28 The README also states:
29
30 --
31 Ion was written by Tuomo Valkonen.
32
33 The autoconf script written by Tom Payne for the most part.
34
35 The dock module was written by Tom Payne and Per Olofsson.
36
37 share/ion-completefile/ion-completefile.c is based on editline, (c)
38 1992 Simmule Turner and Rich Salz. See the file for details.
39
40 libtu/snprintf_2.2/ was written by Mark Martinec, see the README there
41 or <http://www.ijs.si/software/snprintf/> for more. I made some minor
42 modifications. 
43
44 The code that de/fontset.c is based on was apparently originally written 
45 by Tomohiro Kubota; see
46 <http://www.debian.org/doc/manuals/intro-i18n/ch-examples.en.html#s13.4.5>.
47
48 Various patches have been contributed by other individuals unlisted here.
49 (See the mailing list archives.)
50 --
51
52 The licences for editline and snprintf_2.2 are reproduced at the
53 bottom of this file. Note that snprintf_2.2 isn't normally linked to
54 to the binaries on Debian GNU/Linux systems.
55
56 The source files in the libtu library which is enclosed within Ion
57 include the following copyright notice:
58
59 /*
60  * libtu/misc.c
61  *
62  * Copyright (c) Tuomo Valkonen 1999-2002. 
63  *
64  * You may distribute and modify this library under the terms of either
65  * the Clarified Artistic License or the GNU LGPL, version 2.1 or later.
66  */
67
68 The Clarified Artistic License is reproduced at the end of this file.
69
70 dock/dock.c includes the following copyright notice:
71
72 /*
73  * Ion dock module
74  * Copyright (C) 2003 Tom Payne
75  * Copyright (C) 2003 Per Olofsson
76  *
77  * by Tom Payne <ion@tompayne.org>
78  * based on code by Per Olofsson <pelle@dsv.su.se>
79  *
80  * This library is free software; you can redistribute it and/or
81  * modify it under the terms of the GNU Lesser General Public
82  * License as published by the Free Software Foundation; either
83  * version 2.1 of the License, or (at your option) any later version.
84  *
85  * This library is distributed in the hope that it will be useful,
86  * but WITHOUT ANY WARRANTY; without even the implied warranty of
87  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
88  * Lesser General Public License for more details.
89  *
90  * You should have received a copy of the GNU Lesser General Public
91  * License along with this library; if not, write to the Free Software
92  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
93  *
94  * $Header: /home/twp/cvsroot/twp/ion/ion-devel-dock/dock.c,v 1.17 2003/12/21 11:59:48 twp Exp $
95  *
96  */
97
98 The GNU Lesser General Public License can be found in
99 /usr/share/common-licenses/LGPL on Debian systems.
100
101 The document "Ion: Configuring and extending with Lua" in the ion3-doc
102 package has the following copyright notice:
103
104  Ion: Configuring and extending with Lua
105  Copyright (C)  2003 Tuomo Valkonen.
106
107  This document is free; you can redistribute it and/or modify
108  it under the terms of the GNU General Public License as published by
109  the Free Software Foundation; either version 2 of the License, or
110  (at your option) any later version.
111
112  This document is distributed in the hope that it will be useful,
113  but WITHOUT ANY WARRANTY; without even the implied warranty of
114  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
115  chapter entitled ''GNU General Public License'' for more details.
116
117 The GNU General Public License can be found in
118 /usr/share/common-licenses/GPL on Debian systems.
119
120 The licence from share/ion-completefile/ion-completefile.c:
121
122 /****************************************************************************/
123 /*                                                                          */
124 /* Copyright 1992 Simmule Turner and Rich Salz.  All rights reserved.       */
125 /*                                                                          */
126 /* This software is not subject to any license of the American Telephone    */
127 /* and Telegraph Company or of the Regents of the University of California. */
128 /*                                                                          */
129 /* Permission is granted to anyone to use this software for any purpose on  */
130 /* any computer system, and to alter it and redistribute it freely, subject */
131 /* to the following restrictions:                                           */
132 /* 1. The authors are not responsible for the consequences of use of this   */
133 /*    software, no matter how awful, even if they arise from flaws in it.   */
134 /* 2. The origin of this software must not be misrepresented, either by     */
135 /*    explicit claim or by omission.  Since few users ever read sources,    */
136 /*    credits must appear in the documentation.                             */
137 /* 3. Altered versions must be plainly marked as such, and must not be      */
138 /*    misrepresented as being the original software.  Since few users       */
139 /*    ever read sources, credits must appear in the documentation.          */
140 /* 4. This notice may not be removed or altered.                            */
141 /*                                                                          */
142 /****************************************************************************/
143 /*                                                                          */
144 /*  This is a line-editing library, it can be linked into almost any        */
145 /*  program to provide command-line editing and recall.                     */
146 /*                                                                          */
147 /*  Posted to comp.sources.misc Sun, 2 Aug 1992 03:05:27 GMT                */
148 /*      by rsalz@osf.org (Rich $alz)                                        */
149 /*                                                                          */
150 /****************************************************************************/
151 /*                                                                          */
152 /*  The version contained here has some modifications by awb@cstr.ed.ac.uk  */
153 /*  (Alan W Black) in order to integrate it with the Edinburgh Speech Tools */
154 /*  library and Scheme-in-one-defun in particular.  All modifications to    */
155 /*  to this work are continued with the same copyright above.  That is      */
156 /*  This version editline does not have the the "no commercial use"         */
157 /*  restriction that some of the rest of the EST library may have           */
158 /*  awb Dec 30 1998                                                         */
159 /*                                                                          */
160 /****************************************************************************/
161
162 The licence for the files in libtu/snprintf_2.2:
163
164 --
165 The Frontier Artistic License Version 1.0
166 Derived from the Artistic License at OpenSource.org.
167 Submitted to OpenSource.org for Open Source Initiative certification.
168    
169 Preamble
170
171 The intent of this document is to state the conditions under which a
172 Package may be copied, such that the Copyright Holder maintains some
173 semblance of artistic control over the development of the package,
174 while giving the users of the package the right to use and distribute
175 the Package in a more-or-less customary fashion, plus the right to
176 make reasonable modifications.
177    
178 Definitions
179
180   "Package" refers to the script, suite, file, or collection of
181   scripts, suites, and/or files distributed by the Copyright Holder,
182   and to derivatives of that Package created through textual modification.
183
184   "Standard Version" refers to such a Package if it has not been
185   modified, or has been modified in accordance with the wishes of
186   the Copyright Holder.
187
188   "Copyright Holder" is whoever is named in the copyright statement
189   or statements for the package.
190
191   "You" is you, if you're thinking about copying or distributing
192   this Package.
193
194   "Reasonable copying fee" is whatever you can justify on the basis
195   of media cost, duplication charges, time of people involved, and
196   so on. (You will not be required to justify it to the Copyright
197   Holder, but only to the computing community at large as a market
198   that must bear the fee.)
199
200   "Freely Available" means that no fee is charged for the item
201   itself, though there may be fees involved in handling the item.
202   It also means that recipients of the item may redistribute it under
203   the same conditions they received it.
204        
205
206 Terms
207
208 1. You may make and give away verbatim copies of the source form of
209 the Standard Version of this Package without restriction, provided
210 that you duplicate all of the original copyright notices and
211 associated disclaimers.
212    
213 2. You may apply bug fixes, portability fixes, and other modifications
214 derived from the Public Domain or from the Copyright Holder. A Package
215 modified in such a way shall still be considered the Standard Version.
216    
217 3. You may otherwise modify your copy of this Package in any way,
218 provided that you insert a prominent notice in each changed script,
219 suite, or file stating how and when you changed that script, suite,
220 or file, and provided that you do at least ONE of the following:
221    
222   a) Use the modified Package only within your corporation or
223   organization, or retain the modified Package solely for personal use.
224      
225   b) Place your modifications in the Public Domain or otherwise make
226   them Freely Available, such as by posting said modifications to Usenet
227   or an equivalent medium, or placing the modifications on a major archive
228   site such as ftp.uu.net, or by allowing the Copyright Holder to include
229   your modifications in the Standard Version of the Package.
230      
231   c) Rename any non-standard executables so the names do not conflict
232   with standard executables, which must also be provided, and provide
233   a separate manual page (or equivalent) for each non-standard executable
234   that clearly documents how it differs from the Standard Version.
235      
236   d) Make other distribution arrangements with the Copyright Holder.
237      
238 4. You may distribute the programs of this Package in object code or
239 executable form, provided that you do at least ONE of the following:
240    
241   a) Distribute a Standard Version of the executables and library
242   files, together with instructions (in the manual page or
243   equivalent) on where to get the Standard Version.
244      
245   b) Accompany the distribution with the machine-readable source of
246   the Package with your modifications.
247      
248   c) Accompany any non-standard executables with their corresponding
249   Standard Version executables, give the non-standard executables
250   non-standard names, and clearly document the differences in manual
251   pages (or equivalent), together with instructions on where to get
252   the Standard Version.
253      
254   d) Make other distribution arrangements with the Copyright Holder.
255      
256 5. You may charge a reasonable copying fee for any distribution of
257 this Package. You may charge any fee you choose for support of this
258 Package. You may not charge a fee for this Package itself. However,
259 you may distribute this Package in aggregate with other (possibly
260 commercial) programs as part of a larger (possibly commercial)
261 software distribution provided that you do not advertise this Package
262 as a product of your own.
263    
264 6. The scripts and library files supplied as input to or produced as
265 output from the programs of this Package do not automatically fall
266 under the copyright of this Package, but belong to whomever generated
267 them, and may be sold commercially, and may be aggregated with this
268 Package.
269    
270 7. Scripts, suites, or programs supplied by you that depend on or
271 otherwise make use of this Package shall not be considered part of
272 this Package.
273    
274 8. The name of the Copyright Holder may not be used to endorse or
275 promote products derived from this software without specific prior
276 written permission.
277    
278 9. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
279 WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
280 MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
281    
282                         The End
283
284
285 http://www.spinwardstars.com/frontier/fal.html
286 --
287
288 The Clarified Artistic License:
289
290 --
291 The Clarified Artistic License
292
293 Preamble
294
295 The intent of this document is to state the conditions under which a
296 Package may be copied, such that the Copyright Holder maintains some
297 semblance of artistic control over the development of the package, while
298 giving the users of the package the right to use and distribute the Package
299 in a more-or-less customary fashion, plus the right to make reasonable
300 modifications.
301
302 Definitions:
303
304 "Package" refers to the collection of files distributed by the Copyright
305 Holder, and derivatives of that collection of files created through textual
306 modification.
307 "Standard Version" refers to such a Package if it has not been modified, or
308 has been modified in accordance with the wishes of the Copyright Holder as
309 specified below.
310 "Copyright Holder" is whoever is named in the copyright or copyrights for
311 the package.
312 "You" is you, if you're thinking about copying or distributing this
313 Package.
314 "Distribution fee" is a fee you charge for providing a copy of this Package
315 to another party.
316 "Freely Available" means that no fee is charged for the right to use the
317 item, though there may be fees involved in handling the item. It also means
318 that recipients of the item may redistribute it under the same conditions
319 they received it.
320    
321  1. You may make and give away verbatim copies of the source form of the
322     Standard Version of this Package without restriction, provided that you
323     duplicate all of the original copyright notices and associated
324     disclaimers.
325  2. You may apply bug fixes, portability fixes and other modifications
326     derived from the Public Domain, or those made Freely Available, or from
327     the Copyright Holder. A Package modified in such a way shall still be
328     considered the Standard Version.
329  3. You may otherwise modify your copy of this Package in any way, provided
330     that you insert a prominent notice in each changed file stating how and
331     when you changed that file, and provided that you do at least ONE of
332     the following:
333        
334      1. place your modifications in the Public Domain or otherwise make them
335         Freely Available, such as by posting said modifications to Usenet
336         or an equivalent medium, or placing the modifications on a major
337         network archive site allowing unrestricted access to them, or by
338         allowing the Copyright Holder to include your modifications in the
339         Standard Version of the Package.
340      2. use the modified Package only within your corporation or
341         organization.
342      3. rename any non-standard executables so the names do not conflict
343         with standard executables, which must also be provided, and provide
344         a separate manual page for each non-standard executable that
345         clearly documents how it differs from the Standard Version.
346      4. make other distribution arrangements with the Copyright Holder.
347      5. permit and encourge anyone who receives a copy of the modified
348         Package permission to make your modifications Freely Available in
349         some specific way.
350    
351  4. You may distribute the programs of this Package in object code or
352     executable form, provided that you do at least ONE of the following:
353        
354      1. distribute a Standard Version of the executables and library files,
355         together with instructions (in the manual page or equivalent) on
356         where to get the Standard Version.
357      2. accompany the distribution with the machine-readable source of the
358         Package with your modifications.
359      3. give non-standard executables non-standard names, and clearly
360         document the differences in manual pages (or equivalent), together
361         with instructions on where to get the Standard Version.
362      4. make other distribution arrangements with the Copyright Holder.
363      5. offer the machine-readable source of the Package, with your
364         modifications, by mail order.
365    
366  5. You may charge a distribution fee for any distribution of this Package.
367     If you offer support for this Package, you may charge any fee you
368     choose for that support. You may not charge a license fee for the right
369     to use this Package itself. You may distribute this Package in
370     aggregate with other (possibly commercial and possibly nonfree)
371     programs as part of a larger (possibly commercial and possibly nonfree)
372     software distribution, and charge license fees for other parts of that
373     software distribution, provided that you do not advertise this Package
374     as a product of your own. If the Package includes an interpreter, You
375     may embed this Package's interpreter within an executable of yours (by
376     linking); this shall be construed as a mere form of aggregation,
377     provided that the complete Standard Version of the interpreter is so
378     embedded.
379  6. The scripts and library files supplied as input to or produced as output
380     from the programs of this Package do not automatically fall under the
381     copyright of this Package, but belong to whoever generated them, and
382     may be sold commercially, and may be aggregated with this Package. If
383     such scripts or library files are aggregated with this Package via the
384     so-called "undump" or "unexec" methods of producing a binary executable
385     image, then distribution of such an image shall neither be construed as
386     a distribution of this Package nor shall it fall under the restrictions
387     of Paragraphs 3 and 4, provided that you do not represent such an
388     executable image as a Standard Version of this Package.
389  7. C subroutines (or comparably compiled subroutines in other languages)
390     supplied by you and linked into this Package in order to emulate
391     subroutines and variables of the language defined by this Package shall
392     not be considered part of this Package, but are the equivalent of input
393     as in Paragraph 6, provided these subroutines do not change the
394     language in any way that would cause it to fail the regression tests
395     for the language.
396  8. Aggregation of the Standard Version of the Package with a commercial
397     distribution is always permitted provided that the use of this Package
398     is embedded; that is, when no overt attempt is made to make this
399     Package's interfaces visible to the end user of the commercial
400     distribution. Such use shall not be construed as a distribution of this
401     Package.
402  9. The name of the Copyright Holder may not be used to endorse or promote
403     products derived from this software without specific prior written
404     permission.
405 10. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
406     WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
407     MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
408 --