Warning, /sdk/kde-dev-scripts/fixfsfaddr.sed is written in an unsupported language. File is not indexed.

0001 #! /usr/bin/sed
0002 
0003 # Copyright 2005 Nicolas GOUTTE <goutte@kde.org>
0004 # License LGPL V2+
0005 
0006 # The script helps to fix the FSF address
0007 # Use:
0008 #   find . -name .svn -prune , -type f -print | xargs fgrep -l "Free Software Foundation" | xargs sed -i -f fixfsfaddr.sed
0009 # Note: you should check the changes before committing them.
0010 
0011 # Implementation note: we need to replace phrase by phrase, as 
0012 # the wrapping of the FSF address is at different places.
0013 
0014 # Current FSF address: 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301
0015 
0016 # Old address: 59 Temple Place, Suite 330, Boston, MA  02111-1307
0017 s/[5]9 Temple Place,/51 Franklin Street,/
0018 s/[5]9 Temple Place -/51 Franklin Street,/
0019 s/[S]uite 330,/Fifth Floor,/
0020 s/[S]uite 330$/Fifth Floor/
0021 s/[0]2111-1307/02110-1301/
0022 
0023 # Very old address: 675 Mass Ave, Cambridge, MA  02139
0024 s/[6]75 Mass Ave/51 Franklin Street, Fifth Floor/
0025 s/[C]ambridge/Boston/
0026 s/[0]2139/02110-1301/
0027 # Warning: the last two replaces seem to match the address of the MIT too.
0028 
0029 # Typo in KDE: Franklin Steet
0030 s/[F]ranklin Steet/Franklin Street/