GNOME Terminal

From CBLFS
Revision as of 23:32, 11 August 2007 by Weibullguy (talk | contribs) (Added patch.)
Jump to navigationJump to search
Download Source: http://ftp.gnome.org/pub/GNOME/sources/gnome-terminal/2.33/gnome-terminal-2.33.2.tar.bz2
Download Patch (Optional): http://svn.cross-lfs.org/svn/repos/patches/gnome-terminal/gnome-terminal-2.33.2-save_size-1.patch

Introduction to GNOME Terminal

Project Homepage: Unknown

Dependencies

Required

Non-Multilib

The patch above causes GNOME-Terminal to save it's dimensions when closed. When re-opened, it will restore to those dimensions. Apply the patch if desired:

patch -Np1 -i ../gnome-terminal-2.33.2-save_size-1.patch

Compile the package:

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

Install the package

make install

Multilib

32Bit

The patch above causes GNOME-Terminal to save it's dimensions when closed. When re-opened, it will restore to those dimensions. Apply the patch if desired:

patch -Np1 -i ../gnome-terminal-2.33.2-save_size-1.patch

Compile the package:

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

Install the package

make install &&
unset PKG_CONFIG_PATH

N32

The patch above causes GNOME-Terminal to save it's dimensions when closed. When re-opened, it will restore to those dimensions. Apply the patch if desired:

patch -Np1 -i ../gnome-terminal-2.33.2-save_size-1.patch

Compile the package:

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

Install the package

make install &&
unset PKG_CONFIG_PATH

64Bit

The patch above causes GNOME-Terminal to save it's dimensions when closed. When re-opened, it will restore to those dimensions. Apply the patch if desired:

patch -Np1 -i ../gnome-terminal-2.33.2-save_size-1.patch

Compile the package:

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

Install the package

make install &&
unset PKG_CONFIG_PATH