Difference between revisions of "CompilingUbuntu"
(Categorization) |
Stuporglue (talk | contribs) |
||
Line 1: | Line 1: | ||
Building under Ubuntu Dapper is easier than ever: | |||
(Done on a system that already had build-essential installed, may or may not matter. Used Inkscape version inkscape-0.43+0.44pre4) | |||
<nowiki> | |||
sudo apt-get build-deb inkscape # gets all deps for version in Ubuntu -- covers most our bases | |||
sudo apt-get install liblcms-dev libboost-graph-dev # For little CMS and network connector layout functionality | |||
./configure | |||
make | |||
sudo make install | |||
</nowiki> | |||
The following packages are need to compile cvs inkscape under a default Ubuntu Hoary/Breezy/Dapper system: | The following packages are need to compile cvs inkscape under a default Ubuntu Hoary/Breezy/Dapper system: | ||
apt-get install cvs build-essential intltool libtool libgtkmm-2.4-dev libglib2.0-dev libpng12-dev libxslt1-dev libsigc++-2.0-dev libpopt-dev libgc-dev | apt-get install cvs build-essential intltool libtool libgtkmm-2.4-dev libglib2.0-dev libpng12-dev libxslt1-dev libsigc++-2.0-dev libpopt-dev libgc-dev |
Revision as of 00:04, 23 June 2006
Building under Ubuntu Dapper is easier than ever: (Done on a system that already had build-essential installed, may or may not matter. Used Inkscape version inkscape-0.43+0.44pre4)
sudo apt-get build-deb inkscape # gets all deps for version in Ubuntu -- covers most our bases sudo apt-get install liblcms-dev libboost-graph-dev # For little CMS and network connector layout functionality ./configure make sudo make install
The following packages are need to compile cvs inkscape under a default Ubuntu Hoary/Breezy/Dapper system:
apt-get install cvs build-essential intltool libtool libgtkmm-2.4-dev libglib2.0-dev libpng12-dev libxslt1-dev libsigc++-2.0-dev libpopt-dev libgc-dev
Inkscape requires libgc-6.4.
Breezy/Dapper doesn't require any further work.
Hoary uses version 6.3, which is provided in the Repos. (Is there somewhere to get a .deb for 6.4?)
To overwrite libgc-6.3 with libgc-6.4:
Download gc6.4 ./configure --prefix=/usr make sudo make install