Différences entre versions de « Evolution »
Sauter à la navigation
Sauter à la recherche
Ligne 10 : | Ligne 10 : | ||
aptitude install libbonobo2-dev liborbit2-dev libxml2-dev libgconf2-dev libgnome2-dev \ | aptitude install libbonobo2-dev liborbit2-dev libxml2-dev libgconf2-dev libgnome2-dev \ | ||
− | libatk1.0-dev libglade2-dev libgtk2.0-dev libpango1.0-dev | + | libatk1.0-dev libglade2-dev libgtk2.0-dev libpango1.0-dev libldap2-dev libnspr-dev |
cd libsoup-* | cd libsoup-* | ||
− | ./configure | + | ./configure |
+ | make | ||
su -c "make install" | su -c "make install" | ||
cd .. | cd .. | ||
cd evolution-data-server-* | cd evolution-data-server-* | ||
− | ./configure | + | ./configure --with-openldap |
+ | make | ||
su -c "make install" | su -c "make install" | ||
cd .. | cd .. |
Version du 10 mai 2006 à 13:04
Compilation
cd /usr/src mkdir evolution && cd evolution wget http://ftp.acc.umu.se/pub/gnome/sources/evolution/2.6/evolution-2.6.1.tar.bz2 wget http://ftp.acc.umu.se/pub/gnome/sources/evolution-data-server/1.6/evolution-data-server-1.6.1.tar.bz2 wget http://ftp.acc.umu.se/pub/gnome/sources/gtkhtml/3.10/gtkhtml-3.10.1.tar.bz2 wget http://ftp.acc.umu.se/pub/gnome/sources/libsoup/2.2/libsoup-2.2.6.1.tar.bz2 for i in *.bz2; do tar xjf $i; done
aptitude install libbonobo2-dev liborbit2-dev libxml2-dev libgconf2-dev libgnome2-dev \ libatk1.0-dev libglade2-dev libgtk2.0-dev libpango1.0-dev libldap2-dev libnspr-dev
cd libsoup-* ./configure make su -c "make install" cd ..
cd evolution-data-server-* ./configure --with-openldap make su -c "make install" cd ..