<?php
//Import the feed
$rss file_get_contents('s9y.rss');
//Opening <![CDATA[s
$rss str_replace("<content:encoded>","<content:encoded><![CDATA[",$rss);
//Closing  ]]>s
$rss str_replace("</content:encoded>","]]></content:encoded>",$rss);
//Now replace all newline characters with a " " (this will BREAK any preformatted tags, but will stop wordpress putting <br />s everywhere
$rss str_replace(array("\n","\r")," ",$rss);
//Finally remove all the htmlentities from the file and output to STDOUT, which you can then redirect to a file
echo html_entity_decode($rss,ENT_COMPAT,'UTF-8');

// I called this as convert_s9y_rss.php > wordpress.rss