GNOME Terminal: Difference between revisions

From CBLFS
Jump to navigationJump to search
Added patch.
No edit summary
 
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 21: Line 18:


== 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 39: Line 32:


=== 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 58: Line 47:


=== 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 77: Line 62:


=== 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:

Latest revision as of 19:17, 19 April 2008

Download Source: http://ftp.gnome.org/pub/GNOME/sources/gnome-terminal/2.33/gnome-terminal-2.33.2.tar.bz2

Introduction to GNOME Terminal

Project Homepage: Unknown

Dependencies

Required

Non-Multilib

Compile the package:

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

Install the package

make install

Multilib

32Bit

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

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

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