From 14741b19b656053dd7e9c2e879f4a8e49a7fd9e1 Mon Sep 17 00:00:00 2001 From: groogy Date: Wed, 3 Nov 2010 08:01:26 +0000 Subject: [PATCH] added license git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/branches/sfml2@1595 4e206d99-4929-0410-ac5d-dfc041789085 --- ruby/license.txt | 25 +++++++++++++++++++++++++ ruby/sfml-system/extconf.rb | 21 +++++++++++++++++++++ ruby/sfml-system/system/Clock.cpp | 22 ++++++++++++++++++++++ ruby/sfml-system/system/Clock.hpp | 22 ++++++++++++++++++++++ ruby/sfml-system/system/System.cpp | 22 ++++++++++++++++++++++ ruby/sfml-system/system/System.hpp | 22 ++++++++++++++++++++++ ruby/sfml-system/system/Vector2.cpp | 22 ++++++++++++++++++++++ ruby/sfml-system/system/Vector2.hpp | 22 ++++++++++++++++++++++ ruby/sfml-system/system/Vector3.cpp | 22 ++++++++++++++++++++++ ruby/sfml-system/system/Vector3.hpp | 22 ++++++++++++++++++++++ ruby/sfml-window/extconf.rb | 21 +++++++++++++++++++++ 11 files changed, 243 insertions(+) create mode 100644 ruby/license.txt diff --git a/ruby/license.txt b/ruby/license.txt new file mode 100644 index 000000000..43a305285 --- /dev/null +++ b/ruby/license.txt @@ -0,0 +1,25 @@ +rbSFML +---- + +rbSFML - Copyright (c) 2010 Henrik Valter Vogelius Hansson - groogy@groogy.se + +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/ruby/sfml-system/extconf.rb b/ruby/sfml-system/extconf.rb index 8bb4b66f1..16969709c 100644 --- a/ruby/sfml-system/extconf.rb +++ b/ruby/sfml-system/extconf.rb @@ -1,3 +1,24 @@ +# rbSFML - Copyright (c) 2010 Henrik Valter Vogelius Hansson - groogy@groogy.se +# 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. + require 'mkmf' dir_config("system") diff --git a/ruby/sfml-system/system/Clock.cpp b/ruby/sfml-system/system/Clock.cpp index 5a0f72948..357862697 100644 --- a/ruby/sfml-system/system/Clock.cpp +++ b/ruby/sfml-system/system/Clock.cpp @@ -1,3 +1,25 @@ +/* rbSFML - Copyright (c) 2010 Henrik Valter Vogelius Hansson - groogy@groogy.se + * 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. + */ + #include "Clock.hpp" #include "System.hpp" #include diff --git a/ruby/sfml-system/system/Clock.hpp b/ruby/sfml-system/system/Clock.hpp index 762b07487..6234561ea 100644 --- a/ruby/sfml-system/system/Clock.hpp +++ b/ruby/sfml-system/system/Clock.hpp @@ -1,3 +1,25 @@ +/* rbSFML - Copyright (c) 2010 Henrik Valter Vogelius Hansson - groogy@groogy.se + * 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. + */ + #ifndef SFML_RUBYEXT_CLOCK_HEADER_ #define SFML_RUBYEXT_CLOCK_HEADER_ diff --git a/ruby/sfml-system/system/System.cpp b/ruby/sfml-system/system/System.cpp index 5702162ef..f536d32d0 100644 --- a/ruby/sfml-system/system/System.cpp +++ b/ruby/sfml-system/system/System.cpp @@ -1,3 +1,25 @@ +/* rbSFML - Copyright (c) 2010 Henrik Valter Vogelius Hansson - groogy@groogy.se + * 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. + */ + #include "System.hpp" #include "Clock.hpp" #include "Vector2.hpp" diff --git a/ruby/sfml-system/system/System.hpp b/ruby/sfml-system/system/System.hpp index 546514206..c2bf7b1cc 100644 --- a/ruby/sfml-system/system/System.hpp +++ b/ruby/sfml-system/system/System.hpp @@ -1,3 +1,25 @@ +/* rbSFML - Copyright (c) 2010 Henrik Valter Vogelius Hansson - groogy@groogy.se + * 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. + */ + #ifndef SFML_RUBYEXT_SYSTEM_HEADER_ #define SFML_RUBYEXT_SYSTEM_HEADER_ diff --git a/ruby/sfml-system/system/Vector2.cpp b/ruby/sfml-system/system/Vector2.cpp index 5a36e2870..78cbb72c8 100644 --- a/ruby/sfml-system/system/Vector2.cpp +++ b/ruby/sfml-system/system/Vector2.cpp @@ -1,3 +1,25 @@ +/* rbSFML - Copyright (c) 2010 Henrik Valter Vogelius Hansson - groogy@groogy.se + * 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. + */ + #include "Vector2.hpp" #include "System.hpp" diff --git a/ruby/sfml-system/system/Vector2.hpp b/ruby/sfml-system/system/Vector2.hpp index 028205dd9..7e300e77b 100644 --- a/ruby/sfml-system/system/Vector2.hpp +++ b/ruby/sfml-system/system/Vector2.hpp @@ -1,3 +1,25 @@ +/* rbSFML - Copyright (c) 2010 Henrik Valter Vogelius Hansson - groogy@groogy.se + * 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. + */ + #ifndef SFML_RUBYEXT_VECTOR2_HEADER_ #define SFML_RUBYEXT_VECTOR2_HEADER_ diff --git a/ruby/sfml-system/system/Vector3.cpp b/ruby/sfml-system/system/Vector3.cpp index 58d533550..95e62b98b 100644 --- a/ruby/sfml-system/system/Vector3.cpp +++ b/ruby/sfml-system/system/Vector3.cpp @@ -1,3 +1,25 @@ +/* rbSFML - Copyright (c) 2010 Henrik Valter Vogelius Hansson - groogy@groogy.se + * 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. + */ + #include "Vector3.hpp" #include "System.hpp" diff --git a/ruby/sfml-system/system/Vector3.hpp b/ruby/sfml-system/system/Vector3.hpp index f6a6dc29c..26dc6230e 100644 --- a/ruby/sfml-system/system/Vector3.hpp +++ b/ruby/sfml-system/system/Vector3.hpp @@ -1,3 +1,25 @@ +/* rbSFML - Copyright (c) 2010 Henrik Valter Vogelius Hansson - groogy@groogy.se + * 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. + */ + #ifndef SFML_RUBYEXT_VECTOR3_HEADER_ #define SFML_RUBYEXT_VECTOR3_HEADER_ diff --git a/ruby/sfml-window/extconf.rb b/ruby/sfml-window/extconf.rb index 410235d49..eed305e50 100644 --- a/ruby/sfml-window/extconf.rb +++ b/ruby/sfml-window/extconf.rb @@ -1,3 +1,24 @@ +# rbSFML - Copyright (c) 2010 Henrik Valter Vogelius Hansson - groogy@groogy.se +# 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. + require 'mkmf' dir_config("window")