Evince

From CBLFS
Revision as of 15:30, 16 April 2007 by Jciccone (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search
Download Source: http://ftp.gnome.org/pub/gnome/sources/evince/2.32/evince-2.32.0.tar.bz2

Introduction to Evince

Project Homepage: Unknown

Dependencies

Required

Required (RunTime)

Optional

Configuration Information

Use the following parameter if you do not have Ghostscript installed:

--disable-ps

Use the following parameter if you have DjVuLibre installed and you would like to view DjVu files:

--enable-djvu

Use the following parameter if you have TeTeX installed and you would like to view DVI files:

--enable-dvi

Use the following parameter if you have T1lib installed and you would like to build support for Type1 fonts in the DVI viewer:

--enable-t1lib

Use the following if you would like to enable support for comic book archives:

--enable-comics

Use the following if you would like to enable support for impress presentations:

--enable-impress

Non-Multilib

Compile the package:

./configure --prefix=${GNOME_PREFIX} --sysconfdir=/etc/gnome \
    --localstatedir=/var/lib --enable-pixbuf &&
make

Install the package

make install

Multilib

32Bit

Compile the package:

export PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" &&
CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" USE_ARCH=32 \
./configure --prefix=${GNOME_PREFIX} --sysconfdir=/etc/gnome \
    --localstatedir=/var/lib --enable-pixbuf &&
make

Install the package

make install &&
unset PKG_CONFIG_PATH

N32

Compile the package:

export PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" &&
CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" USE_ARCH=n32 \
./configure --prefix=${GNOME_PREFIX} --sysconfdir=/etc/gnome \
    --localstatedir=/var/lib --libdir=${GNOME_PREFIX}/lib32 \
    --enable-pixbuf &&
make

Install the package

make install &&
unset PKG_CONFIG_PATH

64Bit

Compile the package:

export PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" &&
CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" USE_ARCH=64 \
./configure --prefix=${GNOME_PREFIX} --sysconfdir=/etc/gnome \
    --localstatedir=/var/lib --libdir=${GNOME_PREFIX}/lib64 \
    --enable-pixbuf &&
make

Install the package

make install &&
unset PKG_CONFIG_PATH