summaryrefslogtreecommitdiff
path: root/thirdparty
diff options
context:
space:
mode:
authorJosé Fonseca <jose.r.fonseca@gmail.com>2012-12-11 07:22:16 +0000
committerJosé Fonseca <jose.r.fonseca@gmail.com>2012-12-11 07:22:16 +0000
commit8fae49d8ccee46f43bb06f035dd5b3ea105ba3aa (patch)
tree1ba2bf6bbc0eceee136bf51630cfc7c7da117fee /thirdparty
parent9db16b3989481f8d6dfc8932d760fcc16217ecbd (diff)
Install all thirdparty licenses.
Diffstat (limited to 'thirdparty')
-rw-r--r--thirdparty/getopt/CMakeLists.txt8
-rw-r--r--thirdparty/getopt/LICENSE45
-rw-r--r--thirdparty/less/CMakeLists.txt4
-rw-r--r--thirdparty/libpng/CMakeLists.txt8
-rw-r--r--thirdparty/msinttypes/.gitignore (renamed from thirdparty/msvc/.gitignore)0
-rw-r--r--thirdparty/msinttypes/LICENSE25
-rw-r--r--thirdparty/msinttypes/Makefile (renamed from thirdparty/msvc/Makefile)0
-rw-r--r--thirdparty/msinttypes/inttypes.h (renamed from thirdparty/msvc/inttypes.h)0
-rw-r--r--thirdparty/msinttypes/stdbool.h (renamed from thirdparty/msvc/stdbool.h)0
-rw-r--r--thirdparty/msinttypes/stdint.h (renamed from thirdparty/msvc/stdint.h)0
-rw-r--r--thirdparty/qjson/CMakeLists.txt11
-rw-r--r--thirdparty/snappy/CMakeLists.txt8
-rw-r--r--thirdparty/zlib/CMakeLists.txt8
13 files changed, 110 insertions, 7 deletions
diff --git a/thirdparty/getopt/CMakeLists.txt b/thirdparty/getopt/CMakeLists.txt
index fc46f7d1..224fc1ea 100644
--- a/thirdparty/getopt/CMakeLists.txt
+++ b/thirdparty/getopt/CMakeLists.txt
@@ -1,5 +1,11 @@
include_directories (${CMAKE_CURRENT_SOURCE_DIR})
-add_library (getopt_bundled STATIC
+add_library (getopt_bundled STATIC EXCLUDE_FROM_ALL
getopt_long.c
)
+
+install (
+ FILES LICENSE
+ DESTINATION ${DOC_INSTALL_DIR}
+ RENAME LICENSE-getopt.txt
+)
diff --git a/thirdparty/getopt/LICENSE b/thirdparty/getopt/LICENSE
new file mode 100644
index 00000000..1a9141b0
--- /dev/null
+++ b/thirdparty/getopt/LICENSE
@@ -0,0 +1,45 @@
+Copyright (c) 2002 Todd C. Miller <Todd.Miller@courtesan.com>
+
+Permission to use, copy, modify, and distribute this software for any
+purpose with or without fee is hereby granted, provided that the above
+copyright notice and this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ANY SPECIAL, DIRECT, 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 THIS SOFTWARE.
+
+Sponsored in part by the Defense Advanced Research Projects
+Agency (DARPA) and Air Force Research Laboratory, Air Force
+Materiel Command, USAF, under agreement number F39502-99-1-0512.
+
+
+Copyright (c) 2000 The NetBSD Foundation, Inc.
+All rights reserved.
+
+This code is derived from software contributed to The NetBSD Foundation
+by Dieter Baron and Thomas Klausner.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions
+are met:
+1. Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+2. Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+
+THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
+``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
+TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION 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.
diff --git a/thirdparty/less/CMakeLists.txt b/thirdparty/less/CMakeLists.txt
index 95e71755..ef4eba63 100644
--- a/thirdparty/less/CMakeLists.txt
+++ b/thirdparty/less/CMakeLists.txt
@@ -31,6 +31,6 @@ install (
install (
FILES LICENSE
- DESTINATION doc
- RENAME LICENSE.less
+ DESTINATION ${DOC_INSTALL_DIR}
+ RENAME LICENSE-less.txt
)
diff --git a/thirdparty/libpng/CMakeLists.txt b/thirdparty/libpng/CMakeLists.txt
index 7775f915..7cf2be90 100644
--- a/thirdparty/libpng/CMakeLists.txt
+++ b/thirdparty/libpng/CMakeLists.txt
@@ -1,6 +1,6 @@
include_directories(${CMAKE_CURRENT_SOURCE_DIR})
-add_library (png_bundled STATIC
+add_library (png_bundled STATIC EXCLUDE_FROM_ALL
png.c
pngerror.c
pngget.c
@@ -21,3 +21,9 @@ add_library (png_bundled STATIC
set_target_properties (png_bundled PROPERTIES
COMPILE_FLAGS "${CMAKE_SHARED_LIBRARY_C_FLAGS}"
)
+
+install (
+ FILES LICENSE
+ DESTINATION ${DOC_INSTALL_DIR}
+ RENAME LICENSE-libpng.txt
+)
diff --git a/thirdparty/msvc/.gitignore b/thirdparty/msinttypes/.gitignore
index 24600083..24600083 100644
--- a/thirdparty/msvc/.gitignore
+++ b/thirdparty/msinttypes/.gitignore
diff --git a/thirdparty/msinttypes/LICENSE b/thirdparty/msinttypes/LICENSE
new file mode 100644
index 00000000..7af067da
--- /dev/null
+++ b/thirdparty/msinttypes/LICENSE
@@ -0,0 +1,25 @@
+Copyright (c) 2006-2008 Alexander Chemeris
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are met:
+
+ 1. Redistributions of source code must retain the above copyright notice,
+ this list of conditions and the following disclaimer.
+
+ 2. Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+
+ 3. The name of the author may be used to endorse or promote products
+ derived from this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
+WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
+EVENT SHALL THE AUTHOR 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.
diff --git a/thirdparty/msvc/Makefile b/thirdparty/msinttypes/Makefile
index ab18b4dd..ab18b4dd 100644
--- a/thirdparty/msvc/Makefile
+++ b/thirdparty/msinttypes/Makefile
diff --git a/thirdparty/msvc/inttypes.h b/thirdparty/msinttypes/inttypes.h
index 4b3828a2..4b3828a2 100644
--- a/thirdparty/msvc/inttypes.h
+++ b/thirdparty/msinttypes/inttypes.h
diff --git a/thirdparty/msvc/stdbool.h b/thirdparty/msinttypes/stdbool.h
index 99a735df..99a735df 100644
--- a/thirdparty/msvc/stdbool.h
+++ b/thirdparty/msinttypes/stdbool.h
diff --git a/thirdparty/msvc/stdint.h b/thirdparty/msinttypes/stdint.h
index d02608a5..d02608a5 100644
--- a/thirdparty/msvc/stdint.h
+++ b/thirdparty/msinttypes/stdint.h
diff --git a/thirdparty/qjson/CMakeLists.txt b/thirdparty/qjson/CMakeLists.txt
index 512efc83..f142371a 100644
--- a/thirdparty/qjson/CMakeLists.txt
+++ b/thirdparty/qjson/CMakeLists.txt
@@ -27,4 +27,13 @@ set (qjson_SRCS
#serializerrunnable.cpp
)
-add_library (qjson_bundled STATIC ${qjson_SRCS} ${qjson_MOC_SRCS})
+add_library (qjson_bundled STATIC EXCLUDE_FROM_ALL
+ ${qjson_SRCS}
+ ${qjson_MOC_SRCS}
+)
+
+install (
+ FILES COPYING.lib
+ DESTINATION ${DOC_INSTALL_DIR}
+ RENAME LICENSE-qjson.txt
+)
diff --git a/thirdparty/snappy/CMakeLists.txt b/thirdparty/snappy/CMakeLists.txt
index 9bbecdba..25281a6b 100644
--- a/thirdparty/snappy/CMakeLists.txt
+++ b/thirdparty/snappy/CMakeLists.txt
@@ -8,7 +8,7 @@ if (CMAKE_COMPILER_IS_GNUCXX)
add_definitions (-Wno-unused-function)
endif ()
-add_library (snappy_bundled STATIC
+add_library (snappy_bundled STATIC EXCLUDE_FROM_ALL
snappy.cc
snappy-sinksource.cc
snappy-stubs-internal.cc
@@ -18,3 +18,9 @@ add_library (snappy_bundled STATIC
set_target_properties (snappy_bundled PROPERTIES
COMPILE_FLAGS "${CMAKE_SHARED_LIBRARY_CXX_FLAGS}"
)
+
+install (
+ FILES COPYING
+ DESTINATION ${DOC_INSTALL_DIR}
+ RENAME LICENSE-snappy.txt
+)
diff --git a/thirdparty/zlib/CMakeLists.txt b/thirdparty/zlib/CMakeLists.txt
index b1e953d1..3cf970ee 100644
--- a/thirdparty/zlib/CMakeLists.txt
+++ b/thirdparty/zlib/CMakeLists.txt
@@ -9,7 +9,7 @@ else ()
add_definitions (-DHAVE_UNISTD_H)
endif ()
-add_library (z_bundled STATIC
+add_library (z_bundled STATIC EXCLUDE_FROM_ALL
adler32.c
compress.c
crc32.c
@@ -30,3 +30,9 @@ add_library (z_bundled STATIC
set_target_properties (z_bundled PROPERTIES
COMPILE_FLAGS "${CMAKE_SHARED_LIBRARY_C_FLAGS}"
)
+
+install (
+ FILES README
+ DESTINATION ${DOC_INSTALL_DIR}
+ RENAME LICENSE-zlib.txt
+)