[QGIS Commit] r13756 - trunk/qgis/cmake

svn_qgis at osgeo.org svn_qgis at osgeo.org
Sun Jun 20 13:09:21 EDT 2010


Author: wonder
Date: 2010-06-20 17:09:21 +0000 (Sun, 20 Jun 2010)
New Revision: 13756

Added:
   trunk/qgis/cmake/COPYING-CMAKE-SCRIPTS
Modified:
   trunk/qgis/cmake/Bison.cmake
   trunk/qgis/cmake/FindExpat.cmake
   trunk/qgis/cmake/FindGDAL.cmake
   trunk/qgis/cmake/FindGEOS.cmake
   trunk/qgis/cmake/FindGRASS.cmake
   trunk/qgis/cmake/FindIconv.cmake
   trunk/qgis/cmake/FindPostgres.cmake
   trunk/qgis/cmake/FindProj.cmake
   trunk/qgis/cmake/FindQWT.cmake
   trunk/qgis/cmake/FindSPATIALITE.cmake
   trunk/qgis/cmake/FindSqlite3.cmake
   trunk/qgis/cmake/Flex.cmake
   trunk/qgis/cmake/PyQt4Macros.cmake
Log:
Added copyright notices to CMake modules, BSD license has been set to the modules (typical license for CMake modules).


Modified: trunk/qgis/cmake/Bison.cmake
===================================================================
--- trunk/qgis/cmake/Bison.cmake	2010-06-20 15:58:31 UTC (rev 13755)
+++ trunk/qgis/cmake/Bison.cmake	2010-06-20 17:09:21 UTC (rev 13756)
@@ -1,3 +1,9 @@
+# Macros for Bison
+# ~~~~~~~~~~~~~~~~
+# Copyright (c) 2007, Martin Dobias <wonder.sk at gmail.com>
+# Redistribution and use is allowed according to the terms of the BSD license.
+# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
+
 # use bison for .yy files
 
 # search for bison

Added: trunk/qgis/cmake/COPYING-CMAKE-SCRIPTS
===================================================================
--- trunk/qgis/cmake/COPYING-CMAKE-SCRIPTS	                        (rev 0)
+++ trunk/qgis/cmake/COPYING-CMAKE-SCRIPTS	2010-06-20 17:09:21 UTC (rev 13756)
@@ -0,0 +1,22 @@
+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 copyright
+   notice, this list of conditions and the following disclaimer.
+2. Redistributions in binary form must reproduce the 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 not 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.

Modified: trunk/qgis/cmake/FindExpat.cmake
===================================================================
--- trunk/qgis/cmake/FindExpat.cmake	2010-06-20 15:58:31 UTC (rev 13755)
+++ trunk/qgis/cmake/FindExpat.cmake	2010-06-20 17:09:21 UTC (rev 13756)
@@ -1,4 +1,9 @@
-
+# Find Expat
+# ~~~~~~~~~~
+# Copyright (c) 2007, Martin Dobias <wonder.sk at gmail.com>
+# Redistribution and use is allowed according to the terms of the BSD license.
+# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
+#
 # CMake module to search for Expat library
 # (library for parsing XML files)
 #

Modified: trunk/qgis/cmake/FindGDAL.cmake
===================================================================
--- trunk/qgis/cmake/FindGDAL.cmake	2010-06-20 15:58:31 UTC (rev 13755)
+++ trunk/qgis/cmake/FindGDAL.cmake	2010-06-20 17:09:21 UTC (rev 13756)
@@ -1,14 +1,20 @@
-## Once run this will define: 
-## 
-## GDAL_FOUND       = system has GDAL lib
-##
-## GDAL_LIBRARY     = full path to the library
-##
-## GDAL_INCLUDE_DIR      = where to find headers 
-##
-## Magnus Homann
+# Find GDAL
+# ~~~~~~~~~
+# Copyright (c) 2007, Magnus Homann <magnus at homann dot se>
+# Redistribution and use is allowed according to the terms of the BSD license.
+# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
+#
+#
+# Once run this will define: 
+# 
+# GDAL_FOUND       = system has GDAL lib
+#
+# GDAL_LIBRARY     = full path to the library
+#
+# GDAL_INCLUDE_DIR      = where to find headers 
 
 
+
 IF(WIN32)
 
   IF (MINGW)

Modified: trunk/qgis/cmake/FindGEOS.cmake
===================================================================
--- trunk/qgis/cmake/FindGEOS.cmake	2010-06-20 15:58:31 UTC (rev 13755)
+++ trunk/qgis/cmake/FindGEOS.cmake	2010-06-20 17:09:21 UTC (rev 13756)
@@ -1,3 +1,10 @@
+# Find GEOS
+# ~~~~~~~~~
+# Copyright (c) 2008, Mateusz Loskot <mateusz at loskot.net>
+# (based on FindGDAL.cmake by Magnus Homann)
+# Redistribution and use is allowed according to the terms of the BSD license.
+# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
+#
 # CMake module to search for GEOS library
 #
 # If it's found it sets GEOS_FOUND to TRUE
@@ -5,8 +12,7 @@
 #    GEOS_INCLUDE_DIR
 #    GEOS_LIBRARY
 #
-# Mateusz Loskot <mateusz at loskot.net>
-# (based in FindGDAL.cmake by Magnus Homann)
+ 
 
 IF(WIN32)
 

Modified: trunk/qgis/cmake/FindGRASS.cmake
===================================================================
--- trunk/qgis/cmake/FindGRASS.cmake	2010-06-20 15:58:31 UTC (rev 13755)
+++ trunk/qgis/cmake/FindGRASS.cmake	2010-06-20 17:09:21 UTC (rev 13756)
@@ -1,3 +1,8 @@
+# Find GRASS
+# ~~~~~~~~~~
+# Copyright (c) 2007, Martin Dobias <wonder.sk at gmail.com>
+# Redistribution and use is allowed according to the terms of the BSD license.
+# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
 
 # macro that checks for grass installation in specified directory
 

Modified: trunk/qgis/cmake/FindIconv.cmake
===================================================================
--- trunk/qgis/cmake/FindIconv.cmake	2010-06-20 15:58:31 UTC (rev 13755)
+++ trunk/qgis/cmake/FindIconv.cmake	2010-06-20 17:09:21 UTC (rev 13756)
@@ -1,3 +1,9 @@
+# Find Iconv
+# ~~~~~~~~~~
+# Copyright (c) 2009, Juergen E. Fischer <jef at norbit dot de>
+# Redistribution and use is allowed according to the terms of the BSD license.
+# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
+#
 # CMake module to search for iconv library
 #
 # If it's found it sets ICONV_FOUND to TRUE

Modified: trunk/qgis/cmake/FindPostgres.cmake
===================================================================
--- trunk/qgis/cmake/FindPostgres.cmake	2010-06-20 15:58:31 UTC (rev 13755)
+++ trunk/qgis/cmake/FindPostgres.cmake	2010-06-20 17:09:21 UTC (rev 13756)
@@ -1,4 +1,9 @@
-
+# Find PostgreSQL
+# ~~~~~~~~~~~~~~~
+# Copyright (c) 2007, Martin Dobias <wonder.sk at gmail.com>
+# Redistribution and use is allowed according to the terms of the BSD license.
+# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
+#
 # CMake module to search for PostgreSQL library
 #
 # pg_config is searched for in POSTGRES_CONFIG dir,

Modified: trunk/qgis/cmake/FindProj.cmake
===================================================================
--- trunk/qgis/cmake/FindProj.cmake	2010-06-20 15:58:31 UTC (rev 13755)
+++ trunk/qgis/cmake/FindProj.cmake	2010-06-20 17:09:21 UTC (rev 13756)
@@ -1,4 +1,9 @@
-
+# Find Proj
+# ~~~~~~~~~
+# Copyright (c) 2007, Martin Dobias <wonder.sk at gmail.com>
+# Redistribution and use is allowed according to the terms of the BSD license.
+# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
+#
 # CMake module to search for Proj library
 #
 # If it's found it sets PROJ_FOUND to TRUE

Modified: trunk/qgis/cmake/FindQWT.cmake
===================================================================
--- trunk/qgis/cmake/FindQWT.cmake	2010-06-20 15:58:31 UTC (rev 13755)
+++ trunk/qgis/cmake/FindQWT.cmake	2010-06-20 17:09:21 UTC (rev 13756)
@@ -1,12 +1,17 @@
-## Once run this will define: 
-## 
-## QWT_FOUND       = system has QWT lib
-##
-## QWT_LIBRARY     = full path to the QWT library
-##
-## QWT_INCLUDE_DIR      = where to find headers 
-##
-## Tim Sutton
+# Find Qwt
+# ~~~~~~~~
+# Copyright (c) 2010, Tim Sutton <tim at linfiniti.com>
+# Redistribution and use is allowed according to the terms of the BSD license.
+# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
+#
+# Once run this will define: 
+# 
+# QWT_FOUND       = system has QWT lib
+#
+# QWT_LIBRARY     = full path to the QWT library
+#
+# QWT_INCLUDE_DIR      = where to find headers 
+#
 
 
 #MESSAGE("Searching for QWT")

Modified: trunk/qgis/cmake/FindSPATIALITE.cmake
===================================================================
--- trunk/qgis/cmake/FindSPATIALITE.cmake	2010-06-20 15:58:31 UTC (rev 13755)
+++ trunk/qgis/cmake/FindSPATIALITE.cmake	2010-06-20 17:09:21 UTC (rev 13756)
@@ -1,4 +1,9 @@
-
+# Find SpatiaLite
+# ~~~~~~~~~~~~~~~
+# Copyright (c) 2009, Sandro Furieri <a.furieri at lqt.it>
+# Redistribution and use is allowed according to the terms of the BSD license.
+# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
+#
 # CMake module to search for SpatiaLite library
 #
 # If it's found it sets SPATIALITE_FOUND to TRUE

Modified: trunk/qgis/cmake/FindSqlite3.cmake
===================================================================
--- trunk/qgis/cmake/FindSqlite3.cmake	2010-06-20 15:58:31 UTC (rev 13755)
+++ trunk/qgis/cmake/FindSqlite3.cmake	2010-06-20 17:09:21 UTC (rev 13756)
@@ -1,4 +1,9 @@
-
+# Find Sqlite3
+# ~~~~~~~~~~~~
+# Copyright (c) 2007, Martin Dobias <wonder.sk at gmail.com>
+# Redistribution and use is allowed according to the terms of the BSD license.
+# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
+#
 # CMake module to search for Sqlite3 library
 #
 # If it's found it sets SQLITE3_FOUND to TRUE

Modified: trunk/qgis/cmake/Flex.cmake
===================================================================
--- trunk/qgis/cmake/Flex.cmake	2010-06-20 15:58:31 UTC (rev 13755)
+++ trunk/qgis/cmake/Flex.cmake	2010-06-20 17:09:21 UTC (rev 13756)
@@ -1,3 +1,9 @@
+# Macros for Bison
+# ~~~~~~~~~~~~~~~~
+# Copyright (c) 2007, Martin Dobias <wonder.sk at gmail.com>
+# Redistribution and use is allowed according to the terms of the BSD license.
+# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
+
 # flex a .ll file
 
 # search flex

Modified: trunk/qgis/cmake/PyQt4Macros.cmake
===================================================================
--- trunk/qgis/cmake/PyQt4Macros.cmake	2010-06-20 15:58:31 UTC (rev 13755)
+++ trunk/qgis/cmake/PyQt4Macros.cmake	2010-06-20 17:09:21 UTC (rev 13756)
@@ -1,3 +1,8 @@
+# Macros for PyQt4
+# ~~~~~~~~~~~~~~~~
+# Copyright (c) 2009, Juergen E. Fischer <jef at norbit dot de>
+# Redistribution and use is allowed according to the terms of the BSD license.
+# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
 
 
 IF(NOT PYUIC4_PROGRAM)



More information about the QGIS-commit mailing list