diff --git a/data/system/data/licenses/Bullet b/data/system/data/licenses/Bullet new file mode 100644 index 0000000000..ff9172c0aa --- /dev/null +++ b/data/system/data/licenses/Bullet @@ -0,0 +1,17 @@ +Copyright (c) 2003-2006 Gino van den Bergen / Erwin Coumans + http://continuousphysics.com/Bullet/ + +This software is provided 'as-is', without any express or implied warranty. +In no event will the authors be held liable for any damages arising from the +use of this software. +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it freely, +subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not claim + that you wrote the original software. If you use this software in a product, + an acknowledgment in the product documentation would be appreciated but is + not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. diff --git a/data/system/data/licenses/Info-ZIP b/data/system/data/licenses/Info-ZIP new file mode 100644 index 0000000000..f71e7e3f11 --- /dev/null +++ b/data/system/data/licenses/Info-ZIP @@ -0,0 +1,49 @@ +This is version 1999-Oct-05 of the Info-ZIP copyright and license. +The definitive version of this document should be available at +ftp://ftp.cdrom.com/pub/infozip/license.html indefinitely. + + +Copyright (c) 1990-1999 Info-ZIP. All rights reserved. + +For the purposes of this copyright and license, "Info-ZIP" is defined as +the following set of individuals: + + Mark Adler, John Bush, Karl Davis, Harald Denker, Jean-Michel Dubois, + Jean-loup Gailly, Hunter Goatley, Ian Gorman, Chris Herborth, Dirk Haase, + Greg Hartwig, Robert Heath, Jonathan Hudson, Paul Kienitz, David Kirschbaum, + Johnny Lee, Onno van der Linden, Igor Mandrichenko, Steve P. Miller, + Sergio Monesi, Keith Owens, George Petrov, Greg Roelofs, Kai Uwe Rommel, + Steve Salisbury, Dave Smith, Christian Spieler, Antoine Verheijen, + Paul von Behren, Rich Wales, Mike White + +This software is provided "as is," without warranty of any kind, express +or implied. In no event shall Info-ZIP or its contributors be held liable +for any direct, indirect, incidental, special or consequential damages +arising out of the use of or inability to use this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + + 1. Redistributions of source code must retain the above copyright notice, + definition, disclaimer, and this list of conditions. + + 2. Redistributions in binary form must reproduce the above copyright + notice, definition, disclaimer, and this list of conditions in + documentation and/or other materials provided with the distribution. + + 3. Altered versions--including, but not limited to, ports to new operating + systems, existing ports with new graphical interfaces, and dynamic, + shared, or static library versions--must be plainly marked as such + and must not be misrepresented as being the original source. Such + altered versions also must not be misrepresented as being Info-ZIP + releases--including, but not limited to, labeling of the altered + versions with the names "Info-ZIP" (or any variation thereof, including, + but not limited to, different capitalizations), "Pocket UnZip," "WiZ" + or "MacZip" without the explicit permission of Info-ZIP. Such altered + versions are further prohibited from misrepresentative use of the + Zip-Bugs or Info-ZIP e-mail addresses or of the Info-ZIP URL(s). + + 4. Info-ZIP retains the right to use the names "Info-ZIP," "Zip," "UnZip," + "WiZ," "Pocket UnZip," "Pocket Zip," and "MacZip" for its own source and + binary releases. diff --git a/src/apps/aboutsystem/AboutSystem.cpp b/src/apps/aboutsystem/AboutSystem.cpp index 890ca0020c..2f9b1fc2e5 100644 --- a/src/apps/aboutsystem/AboutSystem.cpp +++ b/src/apps/aboutsystem/AboutSystem.cpp @@ -1232,19 +1232,16 @@ AboutView::_CreateCreditsView() // zip copyrights _AddPackageCredit(PackageCredit("Info-ZIP") .SetCopyright(COPYRIGHT_STRING - "1990-2002 Info-ZIP. All rights reserved.")); - // TODO: License! + "1990-2002 Info-ZIP. All rights reserved.") + .SetLicense("Info-ZIP") + .SetURL("http://www.info-zip.org")); // bzip2 copyrights _AddPackageCredit(PackageCredit("bzip2") .SetCopyright(COPYRIGHT_STRING - "1996-2005 Julian R Seward. All rights reserved.")); - // TODO: License! - - // VIM copyrights - _AddPackageCredit(PackageCredit("Vi IMproved") - .SetCopyright(COPYRIGHT_STRING "Bram Moolenaar et al.")); - // TODO: License! + "1996-2005 Julian R Seward. All rights reserved.") + .SetLicense("BSD (4-clause)") + .SetURL("http://bzip.org")); // lp_solve copyrights _AddPackageCredit(PackageCredit("lp_solve") @@ -1256,14 +1253,15 @@ AboutView::_CreateCreditsView() // OpenEXR copyrights _AddPackageCredit(PackageCredit("OpenEXR") .SetCopyright(COPYRIGHT_STRING "2002-2005 Industrial Light & Magic, " - "a division of Lucas Digital Ltd. LLC.")); - // TODO: License! + "a division of Lucas Digital Ltd. LLC.") + .SetLicense("BSD (3-clause)") + .SetURL("http://www.openexr.com")); // Bullet copyrights _AddPackageCredit(PackageCredit("Bullet") .SetCopyright(COPYRIGHT_STRING "2003-2008 Erwin Coumans") + .SetLicense("Bullet") .SetURL("http://www.bulletphysics.com")); - // TODO: License! // atftp copyrights _AddPackageCredit(PackageCredit("atftp")