GNOME Terminal
Contents
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