Show
Ignore:
Timestamp:
12/19/07 14:02:22 (12 months ago)
Author:
kris
Message:

Fixed up the gimp langs to add *all* the .mo files, since there are
more than one

Location:
pbibuild/modules/gimp/overlay-dir
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • pbibuild/modules/gimp/overlay-dir/PBI.RemoveScript.sh

    r1048 r1050  
    1515 
    1616# Remove the old locale files since we are uninstalling 
    17 LANGFILE="gimp.mo" 
     17LANGFILE="gimp20.mo" 
     18LANGFILE1="gimp20-python.mo" 
     19LANGFILE2="gimp20-script-fu.mo" 
     20LANGFILE3="gimp20-std-plug-ins.mo" 
     21LANGFILE4="gimp20-libgimp.mo" 
    1822cd /Programs/${PROGDIR}/locale 
    1923for i in `ls` 
    2024do 
    2125  rm /usr/local/share/locale/${i}/LC_MESSAGES/${LANGFILE} 
     26  rm /usr/local/share/locale/${i}/LC_MESSAGES/${LANGFILE1} 
     27  rm /usr/local/share/locale/${i}/LC_MESSAGES/${LANGFILE2} 
     28  rm /usr/local/share/locale/${i}/LC_MESSAGES/${LANGFILE3} 
     29  rm /usr/local/share/locale/${i}/LC_MESSAGES/${LANGFILE4} 
    2230done 
    2331 
  • pbibuild/modules/gimp/overlay-dir/PBI.SetupScript.sh

    r1048 r1050  
    2323 
    2424# Copy over all the LANG files 
    25 LANGFILE="gimp.mo" 
     25LANGFILE="gimp20.mo" 
     26LANGFILE1="gimp20-python.mo" 
     27LANGFILE2="gimp20-script-fu.mo" 
     28LANGFILE3="gimp20-std-plug-ins.mo" 
     29LANGFILE4="gimp20-libgimp.mo" 
    2630cd /Programs/${PROGDIR}/locale 
    2731for i in `ls` 
     
    2933  mkdir -p /usr/local/share/locale/${i}/LC_MESSAGES >/dev/null 2>/dev/null 
    3034  cp /Programs/${PROGDIR}/locale/${i}/${LANGFILE} /usr/local/share/locale/${i}/LC_MESSAGES/${LANGFILE} 
     35  cp /Programs/${PROGDIR}/locale/${i}/${LANGFILE1} /usr/local/share/locale/${i}/LC_MESSAGES/${LANGFILE1} 
     36  cp /Programs/${PROGDIR}/locale/${i}/${LANGFILE2} /usr/local/share/locale/${i}/LC_MESSAGES/${LANGFILE2} 
     37  cp /Programs/${PROGDIR}/locale/${i}/${LANGFILE3} /usr/local/share/locale/${i}/LC_MESSAGES/${LANGFILE3} 
     38  cp /Programs/${PROGDIR}/locale/${i}/${LANGFILE4} /usr/local/share/locale/${i}/LC_MESSAGES/${LANGFILE4} 
    3139done 
    3240