diff options
| -rwxr-xr-x | scripts/postinst-intercepts/postinst_intercept | 37 | ||||
| -rw-r--r-- | scripts/postinst-intercepts/update_font_cache | 7 | ||||
| -rw-r--r-- | scripts/postinst-intercepts/update_icon_cache | 12 | ||||
| -rw-r--r-- | scripts/postinst-intercepts/update_pixbuf_cache | 10 |
4 files changed, 66 insertions, 0 deletions
diff --git a/scripts/postinst-intercepts/postinst_intercept b/scripts/postinst-intercepts/postinst_intercept new file mode 100755 index 0000000000..ed32f27802 --- /dev/null +++ b/scripts/postinst-intercepts/postinst_intercept | |||
| @@ -0,0 +1,37 @@ | |||
| 1 | #!/bin/sh | ||
| 2 | # | ||
| 3 | # This script is called from inside postinstall scriptlets at do_rootfs time. It | ||
| 4 | # actually adds, at the end, the list of packages for which the intercept script | ||
| 5 | # is valid. Also, if one wants to pass any variables to the intercept script from | ||
| 6 | # the postinstall itself, they will be added immediately after the shebang line. | ||
| 7 | # | ||
| 8 | # Usage: postinst_intercept <intercept_script_name> <package_name> <var1=...> ... <varN=...> | ||
| 9 | # * intercept_script_name - the name of the intercept script we want to change; | ||
| 10 | # * package_name - add the package_name to list of packages the intercept script | ||
| 11 | # is used for; | ||
| 12 | # * var1=... - var1 will have the value we provide in the intercept script. This | ||
| 13 | # is useful when we want to pass on variables like ${libdir} to | ||
| 14 | # the intercept script; | ||
| 15 | # | ||
| 16 | [ $# -lt 2 ] && exit 1 | ||
| 17 | |||
| 18 | intercept_script=$INTERCEPT_DIR/$1 && shift | ||
| 19 | package_name=$1 && shift | ||
| 20 | |||
| 21 | [ -f "$intercept_script" ] || exit 1 | ||
| 22 | |||
| 23 | chmod +x "$intercept_script" | ||
| 24 | |||
| 25 | pkgs_line="$(cat $intercept_script|grep "##PKGS:")" | ||
| 26 | if [ -n "$pkgs_line" ]; then | ||
| 27 | # line exists, add this package to the list only if it's not already there | ||
| 28 | if [ -z "$(echo "$pkgs_line" | grep " $package_name ")" ]; then | ||
| 29 | sed -i -e "s/##PKGS:.*/\0${package_name} /" $intercept_script | ||
| 30 | fi | ||
| 31 | else | ||
| 32 | for var in $@; do | ||
| 33 | sed -i -e "\%^#\!/bin/.*sh%a $var" $intercept_script | ||
| 34 | done | ||
| 35 | echo "##PKGS: ${package_name} " >> $intercept_script | ||
| 36 | fi | ||
| 37 | |||
diff --git a/scripts/postinst-intercepts/update_font_cache b/scripts/postinst-intercepts/update_font_cache new file mode 100644 index 0000000000..562b5b3cb9 --- /dev/null +++ b/scripts/postinst-intercepts/update_font_cache | |||
| @@ -0,0 +1,7 @@ | |||
| 1 | #!/bin/sh | ||
| 2 | |||
| 3 | PSEUDO_UNLOAD=1 qemuwrapper $D$(readelf -l $D${bindir}/fc-cache| grep "Requesting program interpreter"|sed -e 's/^.*\[.*: \(.*\)\]/\1/') \ | ||
| 4 | --library-path $D/lib:$D/usr/lib $D${bindir}/fc-cache \ | ||
| 5 | --sysroot=$D >/dev/null 2>&1 | ||
| 6 | |||
| 7 | |||
diff --git a/scripts/postinst-intercepts/update_icon_cache b/scripts/postinst-intercepts/update_icon_cache new file mode 100644 index 0000000000..8e17a6ac0c --- /dev/null +++ b/scripts/postinst-intercepts/update_icon_cache | |||
| @@ -0,0 +1,12 @@ | |||
| 1 | #!/bin/sh | ||
| 2 | |||
| 3 | set -e | ||
| 4 | # update native pixbuf loaders | ||
| 5 | gdk-pixbuf-query-loaders --update-cache | ||
| 6 | |||
| 7 | for icondir in $D/usr/share/icons/*/ ; do | ||
| 8 | if [ -d $icondir ] ; then | ||
| 9 | gtk-update-icon-cache -fqt $icondir | ||
| 10 | fi | ||
| 11 | done | ||
| 12 | |||
diff --git a/scripts/postinst-intercepts/update_pixbuf_cache b/scripts/postinst-intercepts/update_pixbuf_cache new file mode 100644 index 0000000000..64033dc48a --- /dev/null +++ b/scripts/postinst-intercepts/update_pixbuf_cache | |||
| @@ -0,0 +1,10 @@ | |||
| 1 | #!/bin/sh | ||
| 2 | |||
| 3 | export GDK_PIXBUF_MODULEDIR=$D${libdir}/gdk-pixbuf-2.0/2.10.0/loaders | ||
| 4 | |||
| 5 | PSEUDO_UNLOAD=1 qemuwrapper $D$(readelf -l $D${bindir}/gdk-pixbuf-query-loaders|grep "Requesting program interpreter"|sed -e 's/^.*\[.*: \(.*\)\]/\1/') \ | ||
| 6 | --library-path $D/lib:$D/usr/lib $D${bindir}/gdk-pixbuf-query-loaders \ | ||
| 7 | >$GDK_PIXBUF_MODULEDIR/../loaders.cache 2>/dev/null && \ | ||
| 8 | sed -i -e "s:$D::g" $GDK_PIXBUF_MODULEDIR/../loaders.cache | ||
| 9 | |||
| 10 | |||
