You've already forked lazarus-ccr
lazbarcode: Change license from GPL to BSD (in acreement with author, Jose Mejuto)
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@6194 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -20,7 +20,7 @@ Author:
|
|||||||
Jose Mejuto
|
Jose Mejuto
|
||||||
|
|
||||||
License:
|
License:
|
||||||
GPL 3.0 as it is being inherited from the zint source code.
|
BSD 3 as it is being inherited from the zint backend source code.
|
||||||
|
|
||||||
wiki Page:
|
wiki Page:
|
||||||
http://wiki.freepascal.org/LazBarcodes
|
http://wiki.freepascal.org/LazBarcodes
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
</SearchPaths>
|
</SearchPaths>
|
||||||
</CompilerOptions>
|
</CompilerOptions>
|
||||||
<Description Value="Provides barcode 1D and 2D generation based in the 'C' zint library."/>
|
<Description Value="Provides barcode 1D and 2D generation based in the 'C' zint library."/>
|
||||||
<Version Major="1" Release="1"/>
|
<Version Major="1" Release="2"/>
|
||||||
<Files Count="1">
|
<Files Count="1">
|
||||||
<Item1>
|
<Item1>
|
||||||
<Filename Value="..\src\ubarcodes.pas"/>
|
<Filename Value="..\src\ubarcodes.pas"/>
|
||||||
|
@ -13,8 +13,22 @@
|
|||||||
</SearchPaths>
|
</SearchPaths>
|
||||||
</CompilerOptions>
|
</CompilerOptions>
|
||||||
<Description Value="Provides barcode 1D and 2D generation based in the 'C' zint library."/>
|
<Description Value="Provides barcode 1D and 2D generation based in the 'C' zint library."/>
|
||||||
<License Value="GNU General Public License version 3.0 (GPLv3)"/>
|
<License Value="BSD 3
|
||||||
<Version Major="1" Release="1"/>
|
|
||||||
|
ZINT was originally developed by Robin Stuart and licensed under the terms of the GPL (Gnu
|
||||||
|
Public License). In 2013 Robin Stuart and all developers that contributed to the code agreed
|
||||||
|
to change the license to a less restrictive one (see ZINT mailing list of May 2013 for
|
||||||
|
related mails) under the following conditions:
|
||||||
|
- the names of original copyright holder Robin Stuart and contributors are not removed,
|
||||||
|
neither from sources nor from the manual
|
||||||
|
- the documentation is done in British English (as Robin said: "Oh, and please don't
|
||||||
|
replace the word "colour" with "color" in the documentation - that really annoys me!")
|
||||||
|
|
||||||
|
Change to BSD-license is done for backend and therefore for ZINT shared library only, for
|
||||||
|
the frontends and Qt4-backend the GPL is still valid. Since BSD-license is GPL-compatible
|
||||||
|
this gives the possibility to include ZINT library in own products or link against it from
|
||||||
|
own software."/>
|
||||||
|
<Version Major="1" Release="2"/>
|
||||||
<Files Count="9">
|
<Files Count="9">
|
||||||
<Item1>
|
<Item1>
|
||||||
<Filename Value="..\src\zint.pp"/>
|
<Filename Value="..\src\zint.pp"/>
|
||||||
|
@ -12,26 +12,37 @@ interface
|
|||||||
//{$PACKRECORDS C}
|
//{$PACKRECORDS C}
|
||||||
{$ENDIF}
|
{$ENDIF}
|
||||||
|
|
||||||
|
{ zint.h - definitions for libzint
|
||||||
|
|
||||||
{ zint.h - definitions for libzint
|
libzint - the open source barcode library
|
||||||
|
Copyright (C) 2009-2017 Robin Stuart <rstuart114@gmail.com>
|
||||||
|
|
||||||
libzint - the open source barcode library
|
Redistribution and use in source and binary forms, with or without
|
||||||
Copyright (C) 2009 Robin Stuart <robin@zint.org.uk>
|
modification, are permitted provided that the following conditions
|
||||||
|
are met:
|
||||||
|
|
||||||
This program is free software; you can redistribute it and/or modify
|
1. Redistributions of source code must retain the above copyright
|
||||||
it under the terms of the GNU General Public License as published by
|
notice, this list of conditions and the following disclaimer.
|
||||||
the Free Software Foundation; either version 3 of the License, or
|
2. Redistributions in binary form must reproduce the above copyright
|
||||||
(at your option) any later version.
|
notice, this list of conditions and the following disclaimer in the
|
||||||
|
documentation and/or other materials provided with the distribution.
|
||||||
|
3. Neither the name of the project nor the names of its contributors
|
||||||
|
may be used to endorse or promote products derived from this software
|
||||||
|
without specific prior written permission.
|
||||||
|
|
||||||
This program is distributed in the hope that it will be useful,
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||||
GNU General Public License for more details.
|
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.
|
||||||
|
}
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License along
|
|
||||||
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
||||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
||||||
}
|
|
||||||
{$ifndef ZINT_H}
|
{$ifndef ZINT_H}
|
||||||
{$define ZINT_H}
|
{$define ZINT_H}
|
||||||
{ C++ extern C conditionnal removed }
|
{ C++ extern C conditionnal removed }
|
||||||
|
Reference in New Issue
Block a user