Re: [pygtk] adding wrappers for gtkhtml2

2001-11-28 Thread Skip Montanaro
James If you want to see an example of distributing a binding outside James of the pygtk module, take a look at the gnome-python package. It James has been set up to build separately. Matt for example, when I wrapped atk: ... Matt The generic rule in pygtk cvs will

Re: [pygtk] adding wrappers for gtkhtml2

2001-11-28 Thread Matt Wilson
Get the authors to register it as a boxed type. Cheers, Matt On Wed, Nov 28, 2001 at 02:23:31PM -0600, Skip Montanaro wrote: James If you want to see an example of distributing a binding outside James of the pygtk module, take a look at the gnome-python package. It

Re: [pygtk] adding wrappers for gtkhtml2

2001-11-28 Thread James Henstridge
Skip Montanaro wrote: James If you want to see an example of distributing a binding outside James of the pygtk module, take a look at the gnome-python package. It James has been set up to build separately. Matt for example, when I wrapped atk: ... Matt The generic rule

[pygtk] adding wrappers for gtkhtml2

2001-11-27 Thread Skip Montanaro
I decided to wrap the gtkhtml2 library today. Seemed easy enough, small gtkhtml2.defs and gtkhtml2.override files did the trick, or so I thought. Then I started wading through the morass known as autoconf/automake/etc and quickly gave up on trying to do it right. I ended up simply editing

Re: [pygtk] adding wrappers for gtkhtml2

2001-11-27 Thread Matt Wilson
for example, when I wrapped atk: add atkmodule.la to pyexec_LTLIBRARIES. add: atkmodule_la_LDFLAGS = -module -avoid-version -export-symbols-regex initatk atkmodule_la_SOURCES = \ atkmodule.c \ atk.c atkmodule_la_LIBADD = $(ATK_LIBS) add: atk.defs atk.override to EXTRA_DIST The generic