Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 34 lines 1.4 kB view raw
1Based on https://build.opensuse.org/package/view_file?file=tango-icon-theme-rsvg-2_35_2.patch&package=tango-icon-theme&project=openSUSE%3A12.2&rev=faf71bf8278d5df6ec8a31726e5b8542 2 3diff -ru -x '*~' tango-icon-theme-0.8.90/configure tango-icon-theme-0.8.90-new/configure 4--- tango-icon-theme-0.8.90/configure 2009-02-26 04:08:00.000000000 +0100 5+++ tango-icon-theme-0.8.90-new/configure 2013-08-15 17:54:24.167065399 +0200 6@@ -6554,7 +6554,7 @@ 7 enable_large_bitmaps=no 8 fi 9 if test "x$enable_large_bitmaps" = "xyes"; then 10- svgconvert_prog="rsvg" 11+ svgconvert_prog="rsvg-convert" 12 else 13 svgconvert_prog="ksvgtopng" 14 fi 15diff -ru -x '*~' tango-icon-theme-0.8.90/svg2png.sh.in tango-icon-theme-0.8.90-new/svg2png.sh.in 16--- tango-icon-theme-0.8.90/svg2png.sh.in 2007-02-16 21:04:29.000000000 +0100 17+++ tango-icon-theme-0.8.90-new/svg2png.sh.in 2013-08-15 17:54:08.275084837 +0200 18@@ -9,12 +9,14 @@ 19 20 ICONFILE=`basename ${3}` 21 ICONNAME=`echo ${ICONFILE} | sed -e "s/.svg//"` 22-if test `basename $SVGCONVERT` = "rsvg"; then 23+if test `basename $SVGCONVERT` = "rsvg-convert"; then 24 OPTIONS="-w ${1} -h ${1}" 25+ OUTPUT="-o" 26 else 27 OPTIONS="${1} ${1}" 28+ OUTPUT="" 29 fi 30 31 echo "${SVGCONVERT} ${OPTIONS} ${3} ${2}/${ICONNAME}.png" 32-${SVGCONVERT} ${OPTIONS} ${3} ${2}/${ICONNAME}.png 33+${SVGCONVERT} ${OPTIONS} ${3} ${OUTPUT} ${2}/${ICONNAME}.png 34