Difference between revisions of "Evolution Data Server"

From CBLFS
Jump to navigationJump to search
(Optional)
(Configuring)
Line 33: Line 33:
  
 
  --enable-gnome-keyring=yes
 
  --enable-gnome-keyring=yes
 +
 +
If you would like to build the documentation pass the following to configure:
 +
 +
--enable-gtk-doc
 +
 +
If you would like to link dynamically to a pre-installed copy of berkeley DB (strongly recommended) then pass the follwoing to configure:
 +
 +
--with-libdb
  
 
== Non-Multilib ==
 
== Non-Multilib ==

Revision as of 16:57, 5 November 2006

Download Source: http://ftp.gnome.org/pub/GNOME/sources/evolution-data-server/1.8/evolution-data-server-1.8.1.tar.bz2

Dependencies

Required

Recommended

Optional

Configuring

If you would like to link against OpenLDAP pass the following to configure:

--with-openldap=yes

If you would like to link against GNOME Keyring pass the following to configure:

--enable-gnome-keyring=yes

If you would like to build the documentation pass the following to configure:

--enable-gtk-doc

If you would like to link dynamically to a pre-installed copy of berkeley DB (strongly recommended) then pass the follwoing to configure:

--with-libdb

Non-Multilib

Compile the package:

./configure --prefix=${GNOME_PREFIX} \
    --libexecdir=${GNOME_PREFIX}/lib/evolution-data-server-1.2 \
    --enable-nntp --enable-nss --enable-smime \
    --with-nspr-includes=/usr/include/nspr \
    --with-nss-includes=/usr/include/nss &&
make

Install the package

make install

Multilib

32Bit

Compile the package:

CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" USE_ARCH=32 \
./configure --prefix=${GNOME_PREFIX} \
    --libexecdir=${GNOME_PREFIX}/lib/evolution-data-server-1.2 \
    --enable-nntp --enable-nss --enable-smime \
    --with-nspr-includes=/usr/include/nspr \
    --with-nss-includes=/usr/include/nss &&
make

Install the package

make install

N32

Compile the package:

CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" USE_ARCH=n32 \
./configure --prefix=${GNOME_PREFIX} --libdir=${GNOME_PREFIX}/lib32 \
    --libexecdir=${GNOME_PREFIX}/lib32/evolution-data-server-1.2 \
    --enable-nntp --enable-nss --enable-smime \
    --with-nspr-includes=/usr/include/nspr \
    --with-nss-includes=/usr/include/nss &&
make

Install the package

make install

64Bit

Compile the package:

CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" USE_ARCH=64 \
./configure --prefix=${GNOME_PREFIX} --libdir=${GNOME_PREFIX}/lib64 \
    --libexecdir=${GNOME_PREFIX}/lib64/evolution-data-server-1.2 \
    --enable-nntp --enable-nss --enable-smime \
    --with-nspr-includes=/usr/include/nspr \
    --with-nss-includes=/usr/include/nss &&
make

Install the package

make install