From 2951f5571c15acf20a20750a6c9accd699c3df82 Mon Sep 17 00:00:00 2001 From: Brenden Matthews Date: Fri, 1 Jan 2010 15:49:41 -0800 Subject: [PATCH] Add missing copyright notices. --- CMakeLists.txt | 20 ++++++++++++++++++++ cmake/Conky.cmake | 20 ++++++++++++++++++++ cmake/ConkyBuildOptions.cmake | 20 ++++++++++++++++++++ cmake/ConkyCPackSetup.cmake | 22 ++++++++++++++++++++++ cmake/ConkyPlatformChecks.cmake | 20 ++++++++++++++++++++ cmake/Docbook.cmake | 22 +++++++++++++++++++++- cmake/ToLua.cmake | 22 ++++++++++++++++++++++ doc/CMakeLists.txt | 22 ++++++++++++++++++++++ lua/CMakeLists.txt | 22 ++++++++++++++++++++++ src/CMakeLists.txt | 20 ++++++++++++++++++++ 10 files changed, 209 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2ebfed10..bd53f4a3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,24 @@ # vim: ts=4 sw=4 noet ai cindent syntax=cmake +# +# Conky, a system monitor, based on torsmo +# +# Please see COPYING for details +# +# Copyright (c) 2005-2010 Brenden Matthews, et. al. (see AUTHORS) +# All rights reserved. +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# cmake_minimum_required(VERSION 2.6) diff --git a/cmake/Conky.cmake b/cmake/Conky.cmake index 725d32ea..dcce20d0 100644 --- a/cmake/Conky.cmake +++ b/cmake/Conky.cmake @@ -1,4 +1,24 @@ # vim: ts=4 sw=4 noet ai cindent syntax=cmake +# +# Conky, a system monitor, based on torsmo +# +# Please see COPYING for details +# +# Copyright (c) 2005-2010 Brenden Matthews, et. al. (see AUTHORS) +# All rights reserved. +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# # Conky 2.x requires GCC 4.4 or newer try_compile(GCC4_WORKS diff --git a/cmake/ConkyBuildOptions.cmake b/cmake/ConkyBuildOptions.cmake index 099bf5f4..d66b8fc6 100644 --- a/cmake/ConkyBuildOptions.cmake +++ b/cmake/ConkyBuildOptions.cmake @@ -1,4 +1,24 @@ # vim: ts=4 sw=4 noet ai cindent syntax=cmake +# +# Conky, a system monitor, based on torsmo +# +# Please see COPYING for details +# +# Copyright (c) 2005-2010 Brenden Matthews, et. al. (see AUTHORS) +# All rights reserved. +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# if(NOT CMAKE_BUILD_TYPE) if(MAINTAINER_MODE) diff --git a/cmake/ConkyCPackSetup.cmake b/cmake/ConkyCPackSetup.cmake index 7bb9512b..a5689228 100644 --- a/cmake/ConkyCPackSetup.cmake +++ b/cmake/ConkyCPackSetup.cmake @@ -1,3 +1,25 @@ +# vim: ts=4 sw=4 noet ai cindent syntax=cmake +# +# Conky, a system monitor, based on torsmo +# +# Please see COPYING for details +# +# Copyright (c) 2005-2010 Brenden Matthews, et. al. (see AUTHORS) +# All rights reserved. +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# + set(CPACK_GENERATOR "TGZ;STGZ;DEB") set(CPACK_DEBIAN_PACKAGE_DEPENDS "libc6 (>=2.10-1), libgcc1 (>= 1:4.4.0)") set(CPACK_PACKAGE_CONTACT "brenden@diddyinc.com") diff --git a/cmake/ConkyPlatformChecks.cmake b/cmake/ConkyPlatformChecks.cmake index 7d97845e..804d341d 100644 --- a/cmake/ConkyPlatformChecks.cmake +++ b/cmake/ConkyPlatformChecks.cmake @@ -1,4 +1,24 @@ # vim: ts=4 sw=4 noet ai cindent syntax=cmake +# +# Conky, a system monitor, based on torsmo +# +# Please see COPYING for details +# +# Copyright (c) 2005-2010 Brenden Matthews, et. al. (see AUTHORS) +# All rights reserved. +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# include(FindPkgConfig) include(CheckFunctionExists) diff --git a/cmake/Docbook.cmake b/cmake/Docbook.cmake index d2c08709..e378be4a 100644 --- a/cmake/Docbook.cmake +++ b/cmake/Docbook.cmake @@ -1,4 +1,24 @@ - +# vim: ts=4 sw=4 noet ai cindent syntax=cmake +# +# Conky, a system monitor, based on torsmo +# +# Please see COPYING for details +# +# Copyright (c) 2005-2010 Brenden Matthews, et. al. (see AUTHORS) +# All rights reserved. +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# # ${db2x_xsltproc_cmd} -s man ${srcdir}/docs.xml -o docs.mxml # ${db2x_manxml_cmd} docs.mxml # ${xsltproc_cmd} http://docbook.sourceforge.net/release/xsl/current/html/docbook.xsl ${srcdir}/docs.xml > docs.html diff --git a/cmake/ToLua.cmake b/cmake/ToLua.cmake index a5209c08..0cd1eae8 100644 --- a/cmake/ToLua.cmake +++ b/cmake/ToLua.cmake @@ -1,3 +1,25 @@ +# vim: ts=4 sw=4 noet ai cindent syntax=cmake +# +# Conky, a system monitor, based on torsmo +# +# Please see COPYING for details +# +# Copyright (c) 2005-2010 Brenden Matthews, et. al. (see AUTHORS) +# All rights reserved. +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# + function(wrap_tolua VAR) if(NOT ARGN) message(SEND_ERROR "Error: wrap_tolua called without any files") diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt index e01d5831..917faaa2 100644 --- a/doc/CMakeLists.txt +++ b/doc/CMakeLists.txt @@ -1,3 +1,25 @@ +# vim: ts=4 sw=4 noet ai cindent syntax=cmake +# +# Conky, a system monitor, based on torsmo +# +# Please see COPYING for details +# +# Copyright (c) 2005-2010 Brenden Matthews, et. al. (see AUTHORS) +# All rights reserved. +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# + include(Docbook) if(MAINTAINER_MODE) diff --git a/lua/CMakeLists.txt b/lua/CMakeLists.txt index 6af95f80..fda262c3 100644 --- a/lua/CMakeLists.txt +++ b/lua/CMakeLists.txt @@ -1,3 +1,25 @@ +# vim: ts=4 sw=4 noet ai cindent syntax=cmake +# +# Conky, a system monitor, based on torsmo +# +# Please see COPYING for details +# +# Copyright (c) 2005-2010 Brenden Matthews, et. al. (see AUTHORS) +# All rights reserved. +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# + include(ToLua) if(BUILD_LUA_CAIRO) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index b7930016..02b47848 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1,4 +1,24 @@ # vim: ts=4 sw=4 noet ai cindent syntax=cmake +# +# Conky, a system monitor, based on torsmo +# +# Please see COPYING for details +# +# Copyright (c) 2005-2010 Brenden Matthews, et. al. (see AUTHORS) +# All rights reserved. +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# include_directories(${conky_includes})