The GNOME Session package contains the GNOME session manager.
This package is known to build and work properly using an LFS-8.0 platform.
Download (HTTP): http://ftp.gnome.org/pub/gnome/sources/gnome-session/3.22/gnome-session-3.22.2.tar.xz
Download (FTP): ftp://ftp.gnome.org/pub/gnome/sources/gnome-session/3.22/gnome-session-3.22.2.tar.xz
Download MD5 sum: 6ff071ca67ae7516e97e4b7b78bc82fc
Download size: 760 KB
Estimated disk space required: 18 MB
Estimated build time: 0.2 SBU
dbus-glib-0.108, gnome-desktop-3.22.2, JSON-GLib-1.2.2, Mesa-13.0.4, and UPower-0.99.4
GConf-3.2.6, xmlto-0.0.28, and libxslt-1.1.29 with docbook-xml-4.5 and docbook-xsl-1.79.1 (to build the documentation)
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/gnome-session
When running Gnome under Wayland-1.12.0, environment settings are not
imported for the user using the system's /etc/profile
. The Wayland developers are
currently undecided on a standard method to provide system
environment settings for user sessions. To work around this
limitation, execute the following commands to import the system
environment from /etc/profile
:
mv gnome-session/gnome-session.{in,bak} &&
cat > gnome-session/gnome-session.in << "EOF" &&
#!/bin/sh
# Source /etc/profile if running in Xwayland
if [ "${XDG_SESSION_TYPE}" == "wayland" ]; then
. /etc/profile
fi
EOF
sed 's@#!/bin/sh@@' gnome-session/gnome-session.bak >> \
gnome-session/gnome-session.in
Install GNOME Session by running the following commands:
./configure --prefix=/usr --docdir=/usr/share/doc/gnome-session-3.22.2 && make
This package does not come with a test suite.
Now, as the root
user:
make install
--enable-docbook-docs
: This switch is
used to enable building the documentation.
Last updated on 2017-02-20 15:27:17 -0800