I was building an app that needed python, it had a header file that said: #include <python/Python.h> so it failed to build because it couldn't find Python.h Gentoo, like Mandrake, has python-2.2.2 installed in /usr/include/python2.2 and /usr/lib/python2.2 To make this app build I had to ln -s /usr/lib/python2.2 /usr/lib/python ln -s /usr/include/python2.2 /usr/lib/python/include
those links should not exist. what app were you building that required this? it seems to be a problem with the app itself rather than with the python installation paths.
hk_classes-0.6-pre3 (see Bug #13452). I have informed the author Horst Knorr.
The author of the application has now fixed this. Sorry to have wasted your time
no problems. i was looking at the hk-classes ebuild you wrote but couldn't find it was depending on python in the DEPENDs at all. so i was a little confused as to what was happening.