Difference between revisions of "Evince"

From CBLFS
Jump to navigationJump to search
 
(6 intermediate revisions by the same user not shown)
Line 2: Line 2:
 
|-
 
|-
 
!Download Source:
 
!Download Source:
| http://ftp.gnome.org/pub/gnome/sources/evince/0.6/evince-0.6.1.tar.bz2
+
| http://ftp.gnome.org/pub/gnome/sources/evince/{{Evince-Version2}}/evince-{{Evince-Version}}.tar.bz2
 
|}
 
|}
  
 
----
 
----
 +
 +
{{Blank-Package-Introduction}}
  
 
== Dependencies ==
 
== Dependencies ==
Line 17: Line 19:
 
=== Optional ===
 
=== Optional ===
 
* [[intltool]]
 
* [[intltool]]
* [[DBUS]]
+
* [[D-BUS Glib]]
 
* [[LibTIFF]]
 
* [[LibTIFF]]
 
* [[TeTeX]]
 
* [[TeTeX]]
 
* [[libgnomeprintui]]
 
* [[libgnomeprintui]]
 
* [[Nautilus]]
 
* [[Nautilus]]
* [[ESP Ghostscript]] or [[AFPL Ghostscript]]
+
* [[Ghostscript]]
 
* [[DjVuLibre]]
 
* [[DjVuLibre]]
 
* [[T1lib]]
 
* [[T1lib]]
Line 28: Line 30:
 
== Configuration Information ==
 
== Configuration Information ==
  
Use the following parameter if you do not have [[ESP Ghostscript]] or [[AFPL Ghostscript]] installed:
+
Use the following parameter if you do not have [[Ghostscript]] installed:
  
 
  --disable-ps
 
  --disable-ps
  
Use the following parameter if you have [[DjViLibre]] installed and you would like to view DjVu files:
+
Use the following parameter if you have [[DjVuLibre]] installed and you would like to view DjVu files:
  
 
  --enable-djvu
 
  --enable-djvu
Line 71: Line 73:
  
 
  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 88:
  
 
  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 104:
  
 
  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 \

Latest revision as of 15:30, 16 April 2007

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