diff options
Diffstat (limited to 'recipes/shr/libframeworkd-phonegui-efl-theme.inc')
-rw-r--r-- | recipes/shr/libframeworkd-phonegui-efl-theme.inc | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/recipes/shr/libframeworkd-phonegui-efl-theme.inc b/recipes/shr/libframeworkd-phonegui-efl-theme.inc new file mode 100644 index 0000000000..eab118f322 --- /dev/null +++ b/recipes/shr/libframeworkd-phonegui-efl-theme.inc @@ -0,0 +1,22 @@ +SECTION = "e/utils" +DEPENDS += "edje-native" + +FILES_${PN} += "${datadir}/libframeworkd-phonegui-efl.${PN}" + +inherit update-alternatives + +ALTERNATIVE_NAME = "libframeworkd-phonegui-efl-theme" +ALTERNATIVE_LINK = "${datadir}/libframeworkd-phonegui-efl" +ALTERNATIVE_PATH = "${datadir}/libframeworkd-phonegui-efl.${PN}" +ALTERNATIVE_PRIORITY ?= 1 + +pkg_postinst() { + 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 +} |