Big copyright update

Uses new-style copyright notices and improves consistency a bit. Removes the
old KATE_MODELINE stuff.
This commit is contained in:
Laurence Withers 2010-11-25 15:32:52 +00:00
commit 0e9f48ff2d
87 changed files with 169 additions and 220 deletions

View file

@ -1,9 +1,9 @@
#!/bin/bash
# lw-build-system/scripts/release.sh
#
# (c)2009, Laurence Withers, <l@lwithers.me.uk>.
# Released under the GNU GPLv3. See file COPYING or
# http://www.gnu.org/copyleft/gpl.html for details.
#
# Copyright: ©20062010, Laurence Withers
# Author: Laurence Withers <l@lwithers.me.uk>
# License: GPLv3
#
# Prepares package for release. Expects the version number on the
@ -56,7 +56,13 @@ do_cmd ./make.sh || exit 1
# build and save the documentation, if required
BUILD_DOCS=""
[ -e src/docs ] && BUILD_DOCS="1"
test_params_for_doxygen() {
[ "$2" == "doxygen" ] && BUILD_DOCS="1"
}
for params in src/*/.params
do
test_params_for_doxygen $(cat ${params})
done
if [ ! -z ${BUILD_DOCS} ]
then
do_cmd ./make.sh docs || exit 1
@ -88,5 +94,4 @@ fi
# clean up
rm -rf "${PKGNAME}" "${PKGNAME}-doc"
# kate: replace-trailing-space-save true; space-indent true; tab-width 4;
# vim: syntax=sh:ts=4:sw=4:expandtab