From: David-John Willis Date: Tue, 27 Oct 2009 20:53:05 +0000 (+0000) Subject: tango-icon-theme-enable: Add recipe for enable the icon theme once installed (hackish). X-Git-Tag: Release-2010-05/1~1886^2~14 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a71f287b6f15da6e91d31dc89bc49be183535516;p=openembedded.git tango-icon-theme-enable: Add recipe for enable the icon theme once installed (hackish). --- diff --git a/recipes/tango/tango-icon-theme-enable.bb b/recipes/tango/tango-icon-theme-enable.bb new file mode 100644 index 0000000000..58ad5924f8 --- /dev/null +++ b/recipes/tango/tango-icon-theme-enable.bb @@ -0,0 +1,14 @@ +DESCRIPTION = "Enable tango-icon-theme in gtkrc" + +RDEPENDS = "tango-icon-theme" + +ALLOW_EMPTY_${PN} = "1" +PACKAGE_ARCH = "all" + +pkg_postinst() { +#!/bin/sh +mkdir -p $D${sysconfdir}/gtk-2.0 +touch $D${sysconfdir}/gtk-2.0/gtkrc +sed -i /gtk-icon-theme-name/d $D${sysconfdir}/gtk-2.0/gtkrc +echo 'gtk-icon-theme-name = "Tango"' >> $D${sysconfdir}/gtk-2.0/gtkrc +}