GAIL
| Download Source: | http://ftp.gnome.org/pub/GNOME/sources/gail/1.9/gail-1.9.3.tar.bz2 |
|---|
Dependencies
Required
Optional
Non-Multilib
Compile the package:
./configure --prefix=${GNOME_PREFIX} &&
make
Install the package
make install
Gtk2 will look for GAIL modules in /usr/lib even if $GNOME_PREFIX is not /usr. If $GNOME_PREFIX is anything other then /usr, create a symlink to $GNOME_PREFIX to satisfy this requirement:
ln -v -s ${GNOME_PREFIX}/lib/gtk-2.0/modules \
/usr/lib/gtk-2.0
Multilib
32Bit
Compile the package:
CC="gcc ${BUILD32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \
./configure --prefix=${GNOME_PREFIX} &&
make
Install the package
make install
Gtk2 will look for GAIL modules in /usr/lib even if $GNOME_PREFIX is not /usr. If $GNOME_PREFIX is anything other then /usr, create a symlink to $GNOME_PREFIX to satisfy this requirement:
ln -v -s ${GNOME_PREFIX}/lib/gtk-2.0/modules \
/usr/lib/gtk-2.0
N32
Compile the package:
CC="gcc ${BUILDN32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \
./configure --prefix=${GNOME_PREFIX} --libdir=${GNOME_PREFIX}/lib32 &&
make
Install the package
make install
Gtk2 will look for GAIL modules in /usr/lib32 even if $GNOME_PREFIX is not /usr. If $GNOME_PREFIX is anything other then /usr, create a symlink to $GNOME_PREFIX to satisfy this requirement:
ln -v -s ${GNOME_PREFIX}/lib32/gtk-2.0/modules \
/usr/lib32/gtk-2.0
64Bit
Compile the package:
CC="gcc ${BUILD64}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \
./configure --prefix=${GNOME_PREFIX} --libdir=${GNOME_PREFIX}/lib64 &&
make
Install the package
make install
Gtk2 will look for GAIL modules in /usr/lib64 even if $GNOME_PREFIX is not /usr. If $GNOME_PREFIX is anything other then /usr, create a symlink to $GNOME_PREFIX to satisfy this requirement:
ln -v -s ${GNOME_PREFIX}/lib64/gtk-2.0/modules \
/usr/lib64/gtk-2.0