From: Thomas Zimmermann Date: Tue, 27 Oct 2009 07:44:09 +0000 (+0000) Subject: vagalume: add index.theme from shr/merge X-Git-Tag: Release-2010-05/1~956 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2ccd9f2b121b27319fc8a51255e8ad0b879726b2;p=openembedded.git vagalume: add index.theme from shr/merge Signed-off-by: Klaus Kurzmann --- diff --git a/recipes/vagalume/files/index.theme b/recipes/vagalume/files/index.theme new file mode 100644 index 0000000000..453acf0586 --- /dev/null +++ b/recipes/vagalume/files/index.theme @@ -0,0 +1,8 @@ +[Icon Theme] +Name=Vagalume +Comment=Vagalume icons +Directories=scalable/actions + +[scalable/actions] +Size=48 +Type=Scalable diff --git a/recipes/vagalume/vagalume_0.7.1.bb b/recipes/vagalume/vagalume_0.7.1.bb index 5b29ae17b6..6ef0d19829 100644 --- a/recipes/vagalume/vagalume_0.7.1.bb +++ b/recipes/vagalume/vagalume_0.7.1.bb @@ -2,13 +2,20 @@ DESCRIPTION = "Last.fm client" AUTHOR = "agarcia@igalia.com" HOMEPAGE = "http://vagalume.igalia.com/" SECTION = "x11" -DEPENDS = "gtk+ gstreamer" +DEPENDS = "gtk+ gstreamer curl gst-plugins-good ${@base_conditional('ENTERPRISE_DISTRO', '1', '', 'gst-plugins-ugly', d)}" +RDEPENDS = "curl gst-plugin-autodetect gst-plugin-audioconvert gst-plugin-alsa librsvg-gtk ${@base_conditional('ENTERPRISE_DISTRO', '1', '', 'gst-plugin-mad', d)}" RRECOMMENDS = "dbus-x11" +PR = "r2" SRC_URI = "http://vagalume.igalia.com/files/source/vagalume_${PV}.orig.tar.gz\ + file://index.theme \ " S = "${WORKDIR}/vagalume-${PV}.orig" inherit autotools FILES_${PN} += "${datadir}/icons ${datadir}/dbus-1" + +do_install_append() { + install -m 0644 ${WORKDIR}/index.theme ${D}${datadir}/vagalume/icons/hicolor +}