aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/gpe-icons/gpe-icons.inc
blob: 27adffa8b8bcb35866cf04e08c729c0b158a0125 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
SECTION = "gpe"
RDEPENDS += "gdk-pixbuf-loader-png"

INHERIT = "gpe"
INHERIT_shr = "update-alternatives"
inherit ${INHERIT}

INC_PR = "r4"

ALTERNATIVE_NAME = "gpe-pixmaps"
ALTERNATIVE_LINK = "${datadir}/gpe/pixmaps"
ALTERNATIVE_PATH = "${datadir}/gpe/pixmaps.${PN}"
ALTERNATIVE_PRIORITY ?= 1

pkg_postinst_shr() {
        if [[ -e ${ALTERNATIVE_LINK} && ! -h ${ALTERNATIVE_LINK} ]] ; then
                echo "warn: ${ALTERNATIVE_LINK} exists and it's not a link!"
                echo "warn: It will be replaced with link managed by update-alternatives"
                echo "warn: Moving ${ALTERNATIVE_LINK} to ${ALTERNATIVE_LINK}.old."
                echo "warn: It should be empty but probably isn't!"
                echo "warn: Check what's left there and remove it manually."
                mv -f ${ALTERNATIVE_LINK} ${ALTERNATIVE_LINK}.old
        fi
        pixmap_dirs_root="${datadir}/gpe/"
        cd ${pixmap_dirs_root}
        for pixmap_dir in pixmaps.*; do
                if [ "${pixmap_dir}"x == "pixmaps.${PN}"x ] ; then
                          continue;
                fi
                for pixmap in `find ${pixmap_dir}`; do 
                          pixmap_target=`echo ${pixmap} | sed "s/${pixmap_dir}/pixmaps.${PN}/g"`; 
                          if [ ! -e ${pixmap_target} ] ; then 
                                      cp -ra ${pixmap} ${pixmap_target}; 
                                      echo "${pixmap} merged"; 
                          fi; 
                done
        done
}