Changeset bccb8dc4


Ignore:
Timestamp:
12/05/2010 06:45:16 PM (13 years ago)
Author:
Randy McMurchy <randy@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 7.10, 7.4, 7.5, 7.6, 7.6-blfs, 7.6-systemd, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, gnome, kde5-13430, kde5-14269, kde5-14686, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, krejzi/svn, lazarus, lxqt, nosym, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, systemd-11177, systemd-13485, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
5bdb105a
Parents:
4391436
Message:

Added commands and explanations to the GConf package for installations when /opt/gnome is not /usr

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@8731 af4574ff-66df-0310-9fd7-8a98e5e911e0

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • gnome/core/gconf.xml

    r4391436 rbccb8dc4  
    110110    <para>Still as the <systemitem class="username">root</systemitem> user,
    111111    configure <application>D-Bus</application> so that it can search for
    112     <application>GNOME</application> installed .conf files (This is assuming
    113     that system-local.conf does not exist yet. If it does, then you will need
    114     to merge in the changes):</para>
     112    <application>GNOME</application> installed
     113    <filename class='extension'>.conf</filename> files (This is assuming
     114    that <filename>/etc/dbus-1/system-local.conf</filename> does not exist yet.
     115    If it does, then you will need to merge in the changes). If
     116    <envar>$GNOME_PREFIX</envar> is not
     117    <filename class='directory'>/usr</filename>, you should uncomment the
     118    <quote>servicedir</quote> line:</para>
    115119
    116120<screen role="root"><userinput>cat &gt; /etc/dbus-1/system-local.conf &lt;&lt; "EOF"
     
    123127  &lt;includedir&gt;&gnome-etc-dir;/dbus-1/system.d&lt;/includedir&gt;
    124128
     129  &lt;!-- Search for .service files in $GNOME_PREFIX/share/dbus-1/system-services --&gt;
     130  &lt;!-- &lt;servicedir&gt;$GNOME_PREFIX/share/dbus-1/system-services&lt;/servicedir&gt; --&gt;
     131
    125132&lt;/busconfig&gt;
    126133EOF</literal>
     134</userinput></screen>
     135
     136    <para>If <envar>$GNOME_PREFIX</envar> is not
     137    <filename class='directory'>/usr</filename>, you also need to configure
     138    <application>D-Bus</application> so that it can search for
     139    <application>GNOME</application> installed <quote>session</quote>
     140    <filename class='extension'>.service</filename> files (This is assuming
     141    that <filename>/etc/dbus-1/session-local.conf</filename> does not exist
     142    yet. If it does, then you will need to merge in the changes). Additionally,
     143    if <application>polkit</application> is installed, create a symbolic link
     144    in <filename class='directory'>/usr/share/polkit-1/actions</filename> to
     145    the <quote>action</quote> file installed by
     146    <application>GConf</application>. Issue the following commands as the
     147    <systemitem class="username">root</systemitem> user:</para>
     148
     149<screen role="root"><userinput>cat &gt; /etc/dbus-1/session-local.conf &lt;&lt; "EOF"
     150<literal>&lt;!DOCTYPE busconfig PUBLIC
     151 "-//freedesktop//DTD D-BUS Bus Configuration 1.0//EN"
     152 "http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd"&gt;
     153&lt;busconfig&gt;
     154
     155  &lt;!-- Search for .service files in $GNOME_PREFIX/share/dbus-1/session-services --&gt;
     156  &lt;servicedir&gt;$GNOME_PREFIX/share/dbus-1/session-services&lt;/servicedir&gt;
     157
     158&lt;/busconfig&gt;
     159EOF</literal>
     160
     161ln -s -v <envar>$GNOME_PREFIX</envar>/share/polkit-1/actions/org.gnome.gconf.defaults.policy \
     162         /usr/share/polkit-1/actions
    127163</userinput></screen>
    128164
  • introduction/welcome/changelog.xml

    r4391436 rbccb8dc4  
    4545      <para>December 5th, 2010</para>
    4646      <itemizedlist>
     47        <listitem>
     48          <para>[randy] - Added commands and explanations to the GConf package
     49          for installations when $GNOME_PREFIX is not /usr.</para>
     50        </listitem>
    4751        <listitem>
    4852          <para>[ken] - Corrected typo in ghostscript instructions (fixes ticket
Note: See TracChangeset for help on using the changeset viewer.