Index: trunk/ports/python/py-hesiod/files/patch-setup.py =================================================================== --- trunk/ports/python/py27-hesiod/files/patch-setup.py (revision 205) +++ trunk/ports/python/py-hesiod/files/patch-setup.py (revision 213) @@ -2,10 +2,10 @@ +++ setup.py 2012-02-24 01:48:19.000000000 -0500 @@ -17,6 +17,8 @@ - ext_modules=[ + ext_modules=cythonize([ Extension("_hesiod", ["_hesiod.pyx"], + include_dirs=['__PREFIX__/include'], + library_dirs=['__PREFIX__/lib'], - libraries=["hesiod"]) - ], - cmdclass= {"build_ext": build_ext} + libraries=["hesiod"]), + ]), + )