dlan 14/08/22 02:45:54 Added: marisa-0.2.4-python.patch Log: initial version added, bug 479436 (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 0xAABEFD55)
Revision Changes Path 1.1 dev-libs/marisa/files/marisa-0.2.4-python.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/marisa/files/marisa-0.2.4-python.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/marisa/files/marisa-0.2.4-python.patch?rev=1.1&content-type=text/plain Index: marisa-0.2.4-python.patch =================================================================== --- bindings/python/setup.py 2011-05-14 07:20:52.000000000 +0200 +++ bindings/python/setup.py 2013-08-02 17:04:16.423771834 +0200 @@ -1,8 +1,10 @@ from distutils.core import setup, Extension marisa_module = Extension("_marisa", - sources=["marisa-swig_wrap.cxx", "marisa-swig.cxx"], - libraries=["marisa"]) + sources=["marisa-swig.i", "marisa-swig.cxx"], + swig_opts=["-c++"], + libraries=["marisa"], library_dirs=["../../lib/.libs"], + include_dirs=["../../lib"]) setup(name = "marisa", ext_modules = [marisa_module],