113 lines
5 KiB
Text
113 lines
5 KiB
Text
This package was debianized by Jean-Francois Dockes <jfd@recoll.org> on
|
|
Wed, 10 Jan 2007 16:04:13 +0100.
|
|
|
|
It was downloaded from http://www.recoll.org
|
|
|
|
Upstream Author: Jean-Francois Dockes <jfd@recoll.org>
|
|
|
|
Copyright: (C) 2005,2006, Jean-Francois Dockes <jfd@recoll.org>
|
|
|
|
License:
|
|
|
|
This package 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 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This package 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 package; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
On Debian systems, the complete text of the GNU General
|
|
Public License can be found in `/usr/share/common-licenses/GPL'.
|
|
|
|
The Debian packaging is (C) 2007, Jean-Francois Dockes <jfd@recoll.org> and
|
|
is licensed under the GPL, see above.
|
|
|
|
Portions of the software are:
|
|
|
|
Copyright (C) 2001-2002 by Kevin Atkinson under the GNU LGPL:
|
|
/* This file is part of The New Aspell
|
|
* Copyright (C) 2001-2002 by Kevin Atkinson under the GNU LGPL
|
|
* license version 2.0 or 2.1. You should have received a copy of the
|
|
* LGPL license along with this library if you did not you can find it
|
|
* at http://www.gnu.org/.
|
|
|
|
On Debian systems, the complete text of the GNU LGPL
|
|
can be found in `/usr/share/common-licenses/LGPL-2'.
|
|
|
|
|
|
Copyright 2002-2005 Andreas Aardal Hanssen
|
|
Copyright (C) 2000-2004 Mikio Hirabayashi
|
|
Copyright 1999,2000,2001 BrightStation PLC
|
|
Copyright 2001 Ananova Ltd
|
|
Copyright 2002 Olly Betts
|
|
Copyright (C) 2000, 2001, 2002 Loic Dachary <loic@senga.org>
|
|
- GPL V2 or later, same license text as above
|
|
|
|
Copyright (c) 1991-2004 Unicode, Inc.
|
|
|
|
COPYRIGHT AND PERMISSION NOTICE
|
|
|
|
Copyright © 1991-2006 Unicode, Inc. All rights reserved. Distributed under
|
|
the Terms of Use in http://www.unicode.org/copyright.html.
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a
|
|
copy of the Unicode data files and any associated documentation (the "Data
|
|
Files") or Unicode software and any associated documentation (the
|
|
"Software") to deal in the Data Files or Software without restriction,
|
|
including without limitation the rights to use, copy, modify, merge,
|
|
publish, distribute, and/or sell copies of the Data Files or Software, and
|
|
to permit persons to whom the Data Files or Software are furnished to do
|
|
so, provided that (a) the above copyright notice(s) and this permission
|
|
notice appear with all copies of the Data Files or Software, (b) both the
|
|
above copyright notice(s) and this permission notice appear in associated
|
|
documentation, and (c) there is clear notice in each modified Data File or
|
|
in the Software as well as in the documentation associated with the Data
|
|
File(s) or Software that the data or software has been modified.
|
|
|
|
THE DATA FILES AND SOFTWARE 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 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 THE DATA FILES OR 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 these Data Files or Software without prior written
|
|
authorization of the copyright holder.
|
|
|
|
Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All
|
|
/*
|
|
* MD5C.C - RSA Data Security, Inc., MD5 message-digest algorithm
|
|
*
|
|
* Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All
|
|
* rights reserved.
|
|
*
|
|
* License to copy and use this software is granted provided that it
|
|
* is identified as the "RSA Data Security, Inc. MD5 Message-Digest
|
|
* Algorithm" in all material mentioning or referencing this software
|
|
* or this function.
|
|
*
|
|
* License is also granted to make and use derivative works provided
|
|
* that such works are identified as "derived from the RSA Data
|
|
* Security, Inc. MD5 Message-Digest Algorithm" in all material
|
|
* mentioning or referencing the derived work.
|
|
*
|
|
* RSA Data Security, Inc. makes no representations concerning either
|
|
* the merchantability of this software or the suitability of this
|
|
* software for any particular purpose. It is provided "as is"
|
|
* without express or implied warranty of any kind.
|
|
*
|
|
* These notices must be retained in any copies of any part of this
|
|
* documentation and/or software.
|
|
*/
|