Difference between revisions of "GNOME Terminal"
Weibullguy (talk | contribs) (Added patch.) |
|||
Line 3: | Line 3: | ||
!Download Source: | !Download Source: | ||
| http://ftp.gnome.org/pub/GNOME/sources/gnome-terminal/{{GNOME Terminal-Version2}}/gnome-terminal-{{GNOME Terminal-Version}}.tar.bz2 | | http://ftp.gnome.org/pub/GNOME/sources/gnome-terminal/{{GNOME Terminal-Version2}}/gnome-terminal-{{GNOME Terminal-Version}}.tar.bz2 | ||
+ | |- | ||
+ | !Download Patch (Optional): | ||
+ | |http://svn.cross-lfs.org/svn/repos/patches/gnome-terminal/gnome-terminal-{{GNOME Terminal-Version}}-save_size-1.patch | ||
|} | |} | ||
Line 18: | Line 21: | ||
== Non-Multilib == | == 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-{{GNOME Terminal-Version}}-save_size-1.patch | ||
Compile the package: | Compile the package: | ||
Line 32: | Line 39: | ||
=== 32Bit === | === 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-{{GNOME Terminal-Version}}-save_size-1.patch | ||
Compile the package: | Compile the package: | ||
Line 47: | Line 58: | ||
=== N32 === | === 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-{{GNOME Terminal-Version}}-save_size-1.patch | ||
Compile the package: | Compile the package: | ||
Line 62: | Line 77: | ||
=== 64Bit === | === 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-{{GNOME Terminal-Version}}-save_size-1.patch | ||
Compile the package: | Compile the package: |
Revision as of 22:32, 11 August 2007
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