From e5996ba884cb093cb528ff2779156b79893c51b0 Mon Sep 17 00:00:00 2001 From: pabs Date: Sun, 25 Mar 2007 07:28:28 +0000 Subject: [PATCH] Remove copyright fixer script since it is no longer needed git-svn-id: http://svn.voria.com/code@386 1f10aa63-cdf2-0310-b900-c93c546f37ac --- synfig-studio/trunk/fixer | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100755 synfig-studio/trunk/fixer diff --git a/synfig-studio/trunk/fixer b/synfig-studio/trunk/fixer deleted file mode 100755 index 1ea3926..0000000 --- a/synfig-studio/trunk/fixer +++ /dev/null @@ -1,34 +0,0 @@ -#!/bin/bash - -TEMPFILENAME=~/deleteme.tmp - -SEDSCRIPT=' -s/bigfoot/deepdarc/; - -s/\*\* Copyright (c) 2002 Robert B\. Quattlebaum Jr\./** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley/; -s/\*\* This software and associated documentation/** This package is free software; you can redistribute it and\/or/; -s/\*\* are CONFIDENTIAL and PROPRIETARY property of/** modify it under the terms of the GNU General Public License as/; -s/\*\* the above-mentioned copyright holder./** published by the Free Software Foundation; either version 2 of\ -** the License, or (at your option) any later version./; - -s/\*\* You may not copy, print, publish, or in any/** This package is distributed in the hope that it will be useful,/; -s/\*\* other way distribute this software without/** but WITHOUT ANY WARRANTY; without even the implied warranty of/; -s/\*\* a prior written agreement with/** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU/; -s/\*\* the copyright holder\./** General Public License for more details./; - -s/n\*\* /\ -** /; -'; - -#for filename in `find . -name "*sinfg*" -a ! -name '*svn*'` ; do { -# newfilename=`echo $filename | sed "$SEDSCRIPT"`; -# echo $filename '=>' $newfilename; -# svn rename $filename $newfilename || exit 2; -#} ; done - - -#exit 0; - -for filename in `find . -name '*.[ch]*' -o -name '*.am' -o -name '*.px' -o -name '*.ac' -o -name '*.nsh' -o -name '*.in' | grep -v .svn` ; do { - sed "$SEDSCRIPT" < $filename > $TEMPFILENAME && { diff -q $TEMPFILENAME $filename || cp $TEMPFILENAME $filename ; } -} ; done -- 2.7.4