I have tried numerous solutions and have found that due to the fact that MySQL doesn't enforce many rules and is relatively lax in the rules it does enforce, migration from MySQL to PostgreSQL was extremely painful. Especially since I needed to migrate around 4 million rows in one table, whose schema has organically grown over time.
The closest I've come to a perfect solution that entails as little human intervention as possible is WhiteFang34's solution (Thanks!) of exporting to CSV and importing back. Of course there's the usual bits and pieces that you need to consider (such as NULLs, triggers, indexes and the like.) Especially useful was the fact that the export can be restricted by ranges when doing the SELECT (which allows for easy incremental migration.)