From 89a4c0e15b4933f36fd0b2c39d83871bffb3405a Mon Sep 17 00:00:00 2001 From: Michael Stahl Date: Mon, 2 Mar 2015 13:52:36 +0100 Subject: remove unused frobnicate-icons.php before the PHP plague spreads Change-Id: Idb77df08d25887a96cc1cf3b07fa0fd6e0239464 --- icon-themes/industrial/cmd/frobnicate-icons.php | 41 ------------------------- 1 file changed, 41 deletions(-) delete mode 100755 icon-themes/industrial/cmd/frobnicate-icons.php (limited to 'icon-themes/industrial') diff --git a/icon-themes/industrial/cmd/frobnicate-icons.php b/icon-themes/industrial/cmd/frobnicate-icons.php deleted file mode 100755 index 27ac7a2295a3..000000000000 --- a/icon-themes/industrial/cmd/frobnicate-icons.php +++ /dev/null @@ -1,41 +0,0 @@ -#!/usr/bin/php4 -"sc_","24"=>"lc_"); -$render_dpis = array("16"=>"60", "24"=>"90"); - -$svgs = `find . -name "*.svg"`; -$svgs = explode("\n",$svgs); - -echo "* rendering PNGs\n\n"; -foreach ($svgs as $line) { - if ($line) { - $file = eregi_replace("^./lc_(.*)\.svg","\\1",$line); - //echo "\n" . $file . "\n\n"; - foreach ($render_sizes as $size => $prefix) { - $SVG = "lc_$file.svg"; - $PNG = "$prefix$file.png"; - //delete older version - if (file_exists($PNG)) unlink($PNG); - echo "$SVG => $PNG\n"; - if ($renderer == "inkscape") { - $exec = "inkscape -z -e $PNG -f $SVG "; - $exec .="-w $size -h $size"; - exec($exec); - } else { - exec("rsvg -w $size -h $size $SVG $PNG\n"); - } - } - } -} - -exit; -?> -- cgit