Evince: Difference between revisions
From CBLFS
Jump to navigationJump to search
No edit summary |
|||
| Line 71: | Line 71: | ||
export PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" && | export PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" && | ||
CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" USE_ARCH=32 | CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" USE_ARCH=32 \ | ||
./configure --prefix=${GNOME_PREFIX} --sysconfdir=/etc/gnome \ | ./configure --prefix=${GNOME_PREFIX} --sysconfdir=/etc/gnome \ | ||
--localstatedir=/var/lib --enable-pixbuf && | --localstatedir=/var/lib --enable-pixbuf && | ||
| Line 86: | Line 86: | ||
export PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" && | export PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" && | ||
CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" USE_ARCH=n32 | CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" USE_ARCH=n32 \ | ||
./configure --prefix=${GNOME_PREFIX} --sysconfdir=/etc/gnome \ | ./configure --prefix=${GNOME_PREFIX} --sysconfdir=/etc/gnome \ | ||
--localstatedir=/var/lib --libdir=${GNOME_PREFIX}/lib32 \ | --localstatedir=/var/lib --libdir=${GNOME_PREFIX}/lib32 \ | ||
| Line 102: | Line 102: | ||
export PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" && | export PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" && | ||
CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" USE_ARCH=64 | CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" USE_ARCH=64 \ | ||
./configure --prefix=${GNOME_PREFIX} --sysconfdir=/etc/gnome \ | ./configure --prefix=${GNOME_PREFIX} --sysconfdir=/etc/gnome \ | ||
--localstatedir=/var/lib --libdir=${GNOME_PREFIX}/lib64 \ | --localstatedir=/var/lib --libdir=${GNOME_PREFIX}/lib64 \ | ||
Revision as of 22:20, 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
- intltool
- DBUS
- LibTIFF
- TeTeX
- libgnomeprintui
- Nautilus
- ESP Ghostscript or AFPL Ghostscript
- DjVuLibre
- 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
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