=== modified file 'debian/changelog' --- debian/changelog 2012-08-27 16:17:40 +0000 +++ debian/changelog 2012-08-27 17:59:12 +0000 @@ -1,3 +1,12 @@ +humanity-icon-theme (0.5.3.13.1) quantal; urgency=low + + * debian/control: + - add librsvg2-bin and libgtk-3-bin to build-deps + * debian/rules: + - convert all svg to png, so that gtk3 is able to cache them + + -- Fabien Tassin Mon, 27 Aug 2012 18:22:21 +0200 + humanity-icon-theme (0.5.3.13) quantal; urgency=low [ K Vishnoo Charan Reddy ] === modified file 'debian/control' --- debian/control 2012-08-27 16:17:40 +0000 +++ debian/control 2012-08-27 17:54:38 +0000 @@ -6,6 +6,8 @@ python-scour (>= 0.25+bzr194-3), python-rsvg, python-cairo, + librsvg2-bin, + libgtk-3-bin, icon-naming-utils Standards-Version: 3.9.3 Vcs-Bzr: http://code.launchpad.net/~ubuntu-art-pkg/humanity/release === modified file 'debian/rules' --- debian/rules 2012-08-27 16:17:40 +0000 +++ debian/rules 2012-08-27 17:57:24 +0000 @@ -8,3 +8,11 @@ for d in $$(find $(CURDIR)/debian/humanity-icon-theme/usr/share/icons -mindepth 2 -maxdepth 2 -type d) ; do \ (cd $$d; for c in *; do /usr/lib/icon-naming-utils/icon-name-mapping -c $$c; done); \ done + for f in $$(find $(CURDIR)/debian/humanity-icon-theme/usr/share/icons -type f -name \*.svg) ; do \ + rsvg-convert $$f -o $$(dirname $$f)/$$(basename $$f .svg).png ; \ + done + for l in $$(find $(CURDIR)/debian/humanity-icon-theme/usr/share/icons -type l -name \*.svg) ; do \ + (cd $$(dirname $$l) ; ln -s $$(echo $$(readlink $$l) | sed -e 's/\.svg/\.png/') $$(basename $$l .svg).png) ; \ + done + gtk-update-icon-cache-3.0 --ignore-theme-index --force $(CURDIR)/debian/humanity-icon-theme/usr/share/icons/Humanity + gtk-update-icon-cache-3.0 --ignore-theme-index --force $(CURDIR)/debian/humanity-icon-theme/usr/share/icons/Humanity-Dark