Changeset 57aa7a28


Ignore:
Timestamp:
01/21/2007 07:42:03 PM (17 years ago)
Author:
Dan Nichilson <dnicholson@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 6.2, 6.2.0, 6.2.0-rc1, 6.2.0-rc2, 6.3, 6.3-rc1, 6.3-rc2, 6.3-rc3, 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:
6eff6e1
Parents:
648e8bc
Message:

Added dbus service dir example and changed epiphany to reference it

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

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • general/sysutils/dbus.xml

    r648e8bc r57aa7a28  
    253253      desired changes to these files.</para>
    254254
     255      <para>If any packages install a
     256      <application>D-Bus</application> <filename>.service</filename>
     257      file outside of the standard <filename
     258      class="directory">/usr/share/dbus-1/services</filename> directory,
     259      that directory should be added to the local session configuration.
     260      For instance, <filename
     261      class="directory">/usr/local/share/dbus-1/services</filename> can
     262      be added by performing the following commands as the
     263      <systemitem class="username">root</systemitem> user:</para>
     264
     265<screen role="root"><userinput>cat &gt; /etc/dbus-1/session-local.conf &lt;&lt; "EOF"
     266<literal>&lt;!DOCTYPE busconfig PUBLIC
     267 "-//freedesktop//DTD D-BUS Bus Configuration 1.0//EN"
     268 "http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd"&gt;
     269&lt;busconfig&gt;
     270
     271  &lt;!-- Search for .service files in /usr/local --&gt;
     272  &lt;servicedir&gt;/usr/local/share/dbus-1/services&lt;/servicedir&gt;
     273
     274&lt;/busconfig&gt;</literal>
     275EOF</userinput></screen>
     276
    255277    </sect3>
    256278
  • gnome/add/epiphany.xml

    r648e8bc r57aa7a28  
    106106    the previous step. If the <envar>$GNOME_PREFIX</envar> is anything other
    107107    than <filename class='directory'>/usr</filename>, as the
    108     <systemitem class="username">root</systemitem> user you should create a
    109     symbolic link to this file in the default
    110     <application>D-BUS</application> service script directory:</para>
    111 
    112 <screen role="root"><userinput>ln -v -s $(pkg-config --variable=prefix \
    113     ORBit-2.0)/share/dbus-1/services/org.gnome.Epiphany.service \
    114     /usr/share/dbus-1/services</userinput></screen>
     108    <systemitem class="username">root</systemitem> user you should add the
     109    <filename class='directory'>$GNOME_PREFIX/share/dbus-1/services</filename>
     110    directory to the local session configuration as described in the
     111    <xref linkend="dbus"/> configuration section.</para>
    115112
    116113    <para>If you have <application>GNOME-Python</application> installed, the
  • introduction/welcome/changelog.xml

    r648e8bc r57aa7a28  
    4646      <itemizedlist>
    4747        <listitem>
     48          <para>[dnicholson] - Added an example local session configuration
     49          file for D-Bus showing how to add new service directories. Changed
     50          the Epiphany instructions to reference this instead of symlinking
     51          its service file to the standard location.</para>
     52        </listitem>
     53        <listitem>
    4854          <para>[dnicholson] - Added optional configuration to HAL to
    4955          prevent methods on fixed disk drives.</para>
Note: See TracChangeset for help on using the changeset viewer.