Changeset 1048 for pbibuild/modules/gimp
- Timestamp:
- 12/19/07 13:29:43 (12 months ago)
- Location:
- pbibuild/modules/gimp
- Files:
-
- 3 modified
-
build.sh (modified) (1 diff)
-
overlay-dir/PBI.RemoveScript.sh (modified) (1 diff)
-
overlay-dir/PBI.SetupScript.sh (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
pbibuild/modules/gimp/build.sh
r862 r1048 9 9 # PORTVER = Version number of the port we used to build 10 10 ############################################################################## 11 12 # Get all the various language files and copy them to the PBI 13 LANGFILE="gimp.mo" 14 mkdir ${PBIDIR}/locale/ 15 cd /usr/local/share/locale 16 for i in `ls` 17 do 18 if [ -e "/usr/local/share/locale/${i}/LC_MESSAGES/${LANGFILE}" ] 19 then 20 mkdir ${PBIDIR}/locale/${i} 21 cp /usr/local/share/locale/${i}/LC_MESSAGES/${LANGFILE} ${PBIDIR}/locale/${i}/ 22 fi 23 done -
pbibuild/modules/gimp/overlay-dir/PBI.RemoveScript.sh
r867 r1048 14 14 rm /usr/local/bin/gimp 15 15 16 # Remove the old locale files since we are uninstalling 17 LANGFILE="gimp.mo" 18 cd /Programs/${PROGDIR}/locale 19 for i in `ls` 20 do 21 rm /usr/local/share/locale/${i}/LC_MESSAGES/${LANGFILE} 22 done 23 16 24 cd /home 17 25 for i in `ls` -
pbibuild/modules/gimp/overlay-dir/PBI.SetupScript.sh
r867 r1048 22 22 ln -s /Programs/${PROGDIR}/.sbin/gimp /usr/local/bin/gimp 23 23 24 # Copy over all the LANG files 25 LANGFILE="gimp.mo" 26 cd /Programs/${PROGDIR}/locale 27 for i in `ls` 28 do 29 mkdir -p /usr/local/share/locale/${i}/LC_MESSAGES >/dev/null 2>/dev/null 30 cp /Programs/${PROGDIR}/locale/${i}/${LANGFILE} /usr/local/share/locale/${i}/LC_MESSAGES/${LANGFILE} 31 done 32 33 24 34 # Enable the start when finished button 25 35 echo "LAUNCHCLOSE: /usr/local/bin/gimp"
