Difference between revisions of "Evince"

From CBLFS
Jump to navigationJump to search
(Dependencies)
Line 25: Line 25:
 
* [[DjVuLibre]]
 
* [[DjVuLibre]]
 
* [[T1lib]]
 
* [[T1lib]]
 +
 +
== Configuration Information ==
 +
 +
Use the following parameter if you do not have [[ESP Ghostscript]] or [[AFPL Ghostscript]] installed:
 +
 +
--disable-ps
 +
 +
Use the following parameter if you have [[DjViLibre]] 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 ==
 
== Non-Multilib ==

Revision as of 15:18, 4 November 2006

Download Source: http://ftp.gnome.org/pub/gnome/sources/evince/0.6/evince-0.6.1.tar.bz2

Dependencies

Required

Required (RunTime)

Optional

Configuration Information

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

--disable-ps

Use the following parameter if you have DjViLibre 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