wok view slitaz-i18n/stuff/locale-pack.functions @ rev 8881

coreutils-command, coreutils-file-summarize: restore busybox links in port_remove()
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Feb 27 01:55:24 2011 +0100 (2011-02-27)
parents d4fabad5ae11
children cb3839ac1096
line source
1 #!/bin/sh
3 # Standard directories having translated files.
4 mk_locale_dir()
5 {
6 mkdir -p \
7 $fs/usr/share/locale/$LOCALE \
8 $fs/usr/share/slitaz/messages \
9 $fs/usr/share/doc/slitaz \
10 $fs/etc/xdg/openbox
11 }
13 # Get translated files from SliTaz sub projects: configs, doc, tools.
14 get_slitaz_messages()
15 {
16 [ -d $WOK/slitaz-configs ] && . $WOK/slitaz-configs/receipt
17 [ -f $WOK/slitaz-configs/slitaz-configs-$VERSION/rootfs/etc/xdg/openbox/menu.${LOCALE}.xml ] && \
18 cp $WOK/slitaz-configs/slitaz-configs-$VERSION/rootfs/etc/xdg/openbox/menu.${LOCALE}.xml \
19 $fs/etc/xdg/openbox
21 # All doc is include and linked in slitaz-doc package
22 #[ -d $WOK/slitaz-doc ] && . $WOK/slitaz-doc/receipt
23 #[ -f $WOK/slitaz-doc/slitaz-doc-$VERSION/slitaz/index.${LOCALE}.html ] && \
24 #cp $WOK/slitaz-doc/slitaz-doc-$VERSION/slitaz/index.${LOCALE}.html \
25 #$fs/usr/share/doc/slitaz
27 [ -d $WOK/slitaz-tools ] && . $WOK/slitaz-tools/receipt
28 [ -d $WOK/slitaz-tools/slitaz-tools-$VERSION/messages/$LOCALE ] && \
29 cp -a $WOK/slitaz-tools/slitaz-tools-$VERSION/messages/$LOCALE \
30 $fs/usr/share/slitaz/messages
31 }
33 # Get the core packages messages.
34 get_core_messages()
35 {
36 for pkg in $CORE_PKGS
37 do
38 [ -f $WOK/$pkg/receipt ] && . $WOK/$pkg/receipt
39 if [ -d $WOK/$pkg/$PACKAGE-$VERSION/install/usr/share/locale/$LOCALE ]; then
40 cp -a $WOK/$pkg/$PACKAGE-$VERSION/install/usr/share/locale/$LOCALE \
41 $fs/usr/share/locale
42 fi
43 done
44 }