PDA

View Full Version : [ubuntu] 9.10 Webkit installation issue



U587
February 3rd, 2011, 06:56 AM
Hi there!

Firstly let me thank everyone who has posted here. I have trawled this site for info, but this one not even a days worth of Googling could solve!

I have developed a mono C# app which has a browser using webkit. All works well on 10.04.

This app will not run on 9.10 and gives the error:

...assembly could not be loaded:
Assembly: webkit-sharp
Version: 1.1.15.0
Public Key: eaa1d335d2e19745
The assembly was not found in the Global Assembly Cache....

I can see it needs the Package: libwebkit-cil-dev

However, I cannot find it in the default repositories. If I run
apt-get install libwebkit-cil-dev,I get:

E: Couldn't find package libwebkit-cil-dev

I would greatly appreciate a pointer, (or shove) in the right direction. Am I missing a repository?

directhex
February 3rd, 2011, 10:53 AM
Hi there!

Firstly let me thank everyone who has posted here. I have trawled this site for info, but this one not even a days worth of Googling could solve!

I have developed a mono C# app which has a browser using webkit. All works well on 10.04.

This app will not run on 9.10 and gives the error:

...assembly could not be loaded:
Assembly: webkit-sharp
Version: 1.1.15.0
Public Key: eaa1d335d2e19745
The assembly was not found in the Global Assembly Cache....

I can see it needs the Package: libwebkit-cil-dev

However, I cannot find it in the default repositories. If I run
apt-get install libwebkit-cil-dev,I get:

E: Couldn't find package libwebkit-cil-dev

I would greatly appreciate a pointer, (or shove) in the right direction. Am I missing a repository?

You'll need to recompile your app on Karmic.

webkit-sharp was updated in Lucid, from 0.2 to 0.3 - this corresponds with a change to Webkit's ABI around version 1.1.15

libwebkit1.0-cil is the package you need on karmic to work with.

U587
February 3rd, 2011, 11:26 AM
Thank you! I will do so.