# # MoleCuilder - creates and alters molecular systems # Copyright (C) 2008-2012 University of Bonn # Copyright (C) 2013 Frederik Heber # # 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 . # AT_SETUP([Checking for present project disclaimer]) AT_KEYWORDS([CodeCheck disclaimer]) ok="unity.cpp pugixml.cpp" okdir="UIElements/Views/Qt4/Plotting UIElements/Views/Qt4/Plotting/QScrollZoomer UIElements/Views/Qt4/Plotting/XMLParser" echo `pwd` echo "${#ok[*]} are ok to not contain config.h: ${ok[*]}." liste=`find ${abs_top_srcdir}/src -name '*.cpp'` for file in $liste do # check whether its one of the excluded ones found=0 # skip files taken over from seismolo project for item in $okdir do if test "`dirname $file`" == "${abs_top_srcdir}/src/$item" then found=1 break fi done # skip other specific files from 3rd party source or created ones for item in $ok do if test "$item" == "`basename $file`" then found=1 break fi done # no .moc.cpp if test ! -z "`echo $file | grep '.moc.cpp'`"; then found=1 fi if test ! -z "`echo $file | grep 'moc_'`"; then found=1 fi # if not, check whether it contains the include if test $found -eq 0 then AT_CHECK([egrep -q " * Project: MoleCuilder" $file], 0, [ignore], [ignore], [echo "Could not find project disclaimer in $file."]) AT_CHECK([egrep -q " * Copyright.* University of Bonn" $file], 0, [ignore], [ignore], [ AT_CHECK([egrep -q " * Copyright.* Frederik Heber" $file], 0, [ignore], [ignore], [echo "Could not find copyright with current year ${year} in $file."])]) AT_CHECK([egrep -q " * MoleCuilder is free software" $file], 0, [ignore], [ignore], [echo "Could not find MoleCuilder reference in $file."]) fi done AT_CLEANUP