diff --git a/tools/COPYING b/tools/COPYING deleted file mode 100644 index 313ff0d6b..000000000 --- a/tools/COPYING +++ /dev/null @@ -1,21 +0,0 @@ - - C-Dogs SDL - A port of the legendary (and fun) action/arcade cdogs. - Copyright (C) 1995 Ronny Webster - Copyright (C) 2003 Jeremy Chin - Copyright (C) 2003 Lucas Martin-King - - 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 2 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, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - diff --git a/tools/enable-keywords.sh b/tools/enable-keywords.sh deleted file mode 100755 index 3157ba308..000000000 --- a/tools/enable-keywords.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/sh - -# A little hack to add SVN keywords to a file -# Usage: enable-keywords.sh - -SVN=svn - -KEYWORDS="ID Date Author Revision HeadURL" - -$SVN propset svn:keywords "$KEYWORDS" $@ diff --git a/tools/gpl-prepend.sh b/tools/gpl-prepend.sh deleted file mode 100755 index 82b69e7af..000000000 --- a/tools/gpl-prepend.sh +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/sh - -function print_prep () { -file=$1 #filename - -cat << EOF -/* - C-Dogs SDL - A port of the legendary (and fun) action/arcade cdogs. - Copyright (C) 1995 Ronny Webster - Copyright (C) 2003 Jeremy Chin - Copyright (C) 2003 Lucas Martin-King - - 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 2 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, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - -------------------------------------------------------------------------------- - - ${file} - - -*/ - -EOF -} - -infile=$1 - -cp ${infile} "${infile}.old" -print_prep $infile > $infile -cat "${infile}.old" >> $infile