The GNOME Terminal package contains the terminal emulator for GNOME Desktop.
This package is known to build and work properly using an LFS-7.7 platform.
Download (HTTP): http://ftp.gnome.org/pub/gnome/sources/gnome-terminal/3.14/gnome-terminal-3.14.2.tar.xz
Download (FTP): ftp://ftp.gnome.org/pub/gnome/sources/gnome-terminal/3.14/gnome-terminal-3.14.2.tar.xz
Download MD5 sum: 8d1138bafa419882e37194a50869952f
Download size: 1.8 MB
Estimated disk space required: 41 MB
Estimated build time: 0.4 SBU
appdata-tools-0.1.8, DConf-0.22.0, gsettings-desktop-schemas-3.14.1, Itstool-2.0.2, and VTE-0.38.3
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/gnome-terminal
Install GNOME Terminal by running the following commands:
./configure --prefix=/usr             \
            --disable-static          \
            --disable-migration       \
            --disable-search-provider &&
make
        This package does not come with a test suite.
          Now, as the root user:
        
make install &&
sed -e 's/System/Utility/' \
    -i /usr/share/applications/gnome-terminal.desktop
        ![[Note]](../images/note.png) 
          
            To run GNOME Terminal, the
            environment variable LANG> must be
            set to a UTF-8 locale.
          
          --disable-search-provider:
          This switch disables “search gnome-shell” provider. Necessary,
          because gnome-shell is not in
          BLFS. Remove it, if you have gnome-shell installed.
        
          --disable-migration: This switch
          disables building of the GNOME
          Terminal GConf migration
          tool which is not necessary for BLFS.
        
          --disable-static: This
          switch prevents installation of static versions of the libraries.
        
sed -e ... gnome-terminal.desktop: Fixes submenu for gnome-terminal entry.
Last updated on 2015-03-03 16:19:21 -0800