[Mono-list] Monodoc (installing mono)

Jonathan Pryor jonpryor@vt.edu
Mon, 24 May 2004 07:13:54 -0400


Inline...

On Sun, 2004-05-23 at 15:24, Morten Krog wrote:
> I've tried to get monodoc to run for every new release of mono without
> success.
> 
> Today I've tried on my brand new FC2 install and the same problem
> occurs. A dependency to gtkhtml-3.0 is not met and the app crashes.

I looked into this a little with FC2 Test 2.

FC2 has a "gtkhtml3" package, while the Gtk# libraries depend on the
"gtkhtml-3" package.  These actually provide the same libraries, from
what I could determine, it's just that the RPM names are different.

So, (1) install gtkhtml3 (yum install gtkhtml3), and (2) use --nodeps
when installing the Gtk# RPMs (assuming that the "missing dependency"
for gtkhtml-3 is the only missing dependency).

Once that's done, you'll likely need to edit
/usr/lib/mono/gac/gtkhtml-sharp/1.0.0.0__35e10195dab3c99f/gtkhtml-sharp.dll.config and make sure that the <dllmap dll="gtkhtml-3.0"/> entry targets "libgtkhtml-3.0.so.4".

I'm unable to completely test this arrangement right now, but I think
this should work...

 - Jon