Changeset ae96c4b for archive


Ignore:
Timestamp:
07/14/2013 10:46:33 PM (11 years ago)
Author:
Krejzi <krejzi@…>
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:
93b8ab7a
Parents:
17273d0
Message:

Bye bye dbus bindings. GStreamer updates.

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

File:
1 moved

Legend:

Unmodified
Added
Removed
  • archive/dbus-bindings.xml

    r17273d0 rae96c4b  
    1212  <!ENTITY dbus-glib-time          "0.1 SBU">
    1313
    14   <!ENTITY dbus-python-download-http "http://dbus.freedesktop.org/releases/dbus-python/dbus-python-&dbus-python-version;.tar.gz">
    15   <!ENTITY dbus-python-download-ftp  " ">
    16   <!ENTITY dbus-python-md5sum        "742c7432ad0f7c3f98291d58fa2e35dc">
    17   <!ENTITY dbus-python-size          "583 KB">
    18   <!ENTITY dbus-python-buildsize     "5.7 MB">
    19   <!ENTITY dbus-python-time          "0.2 SBU">
    20 
    21   <!-- All the other bindings info should be here as well -->
    2214]>
    2315
     
    5547      <listitem>
    5648        <para><xref linkend="dbus-glib"/></para>
    57       </listitem>
    58       <listitem>
    59         <para><xref linkend="dbus-python"/></para>
    6049      </listitem>
    6150    </itemizedlist>
     
    227216  </sect2>
    228217
    229   <!-- Begin D-Bus Python Bindings -->
    230   <sect2 id="dbus-python" xreflabel="D-Bus Python Bindings-&dbus-python-version;">
    231     <title>D-Bus Python Bindings</title>
    232 
    233     <indexterm zone="dbus-python">
    234       <primary sortas="a-dbus-python">D-Bus Python Bindings</primary>
    235     </indexterm>
    236 
    237     <sect3 role="package">
    238       <title>Introduction to D-Bus Python Bindings</title>
    239 
    240       &lfs73_checked;
    241 
    242       <bridgehead renderas="sect4">Package Information</bridgehead>
    243       <itemizedlist spacing="compact">
    244         <listitem>
    245           <para>Download (HTTP): <ulink url="&dbus-python-download-http;"/></para>
    246         </listitem>
    247         <listitem>
    248           <para>Download (FTP): <ulink url="&dbus-python-download-ftp;"/></para>
    249         </listitem>
    250         <listitem>
    251           <para>Download MD5 sum: &dbus-python-md5sum;</para>
    252         </listitem>
    253         <listitem>
    254           <para>Download size: &dbus-python-size;</para>
    255         </listitem>
    256         <listitem>
    257           <para>Estimated disk space required: &dbus-python-buildsize;</para>
    258         </listitem>
    259         <listitem>
    260           <para>Estimated build time: &dbus-python-time;</para>
    261         </listitem>
    262       </itemizedlist>
    263 
    264       <bridgehead renderas="sect4">D-Bus Python Dependencies</bridgehead>
    265 
    266       <bridgehead renderas="sect5">Required</bridgehead>
    267       <para role="required">
    268         <xref linkend="python2"/> and
    269         <xref linkend="dbus-glib"/>
    270       </para>
    271 
    272       <bridgehead renderas="sect5">Optional</bridgehead>
    273       <para role="optional">
    274         <xref linkend="pygobject2"/> (required to run the test suite)
    275       </para>
    276 
    277       <bridgehead renderas="sect5">Optional
    278       (Required to build the API and HTML Documentation)</bridgehead>
    279       <para role="optional">
    280         <ulink url="http://epydoc.sourceforge.net/">Epydoc</ulink> and
    281         <ulink url="http://docutils.sourceforge.net/">Docutils</ulink>
    282       </para>
    283 
    284       <para condition="html" role="usernotes">User Notes:
    285       <ulink url="&blfs-wiki;/dbus-python"/></para>
    286 
    287     </sect3>
    288 
    289     <sect3 role="installation">
    290       <title>Installation of D-Bus Python Bindings</title>
    291 
    292       <para>Install <application>D-Bus Python Bindings</application> by
    293       running the following commands:</para>
    294 
    295 <screen><userinput>./configure --prefix=/usr \
    296             --docdir=/usr/share/doc/dbus-python-&dbus-python-version; &amp;&amp;
    297 make</userinput></screen>
    298 
    299       <para>To test the results, issue: <command>make check</command>. Note you
    300       must have <application>PyGObject</application> installed.</para>
    301 
    302       <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
    303 
    304 <screen role="root"><userinput>make install</userinput></screen>
    305 
    306       <para>If you built the API documentation, install it by issuing the
    307       following commands as the <systemitem class="username">root</systemitem>
    308       user:</para>
    309 
    310 <screen role="root"><userinput>install -v -m755 -d /usr/share/doc/dbus-python-&dbus-python-version;/api &amp;&amp;
    311 install -v -m644    api/* \
    312                     /usr/share/doc/dbus-python-&dbus-python-version;/api</userinput></screen>
    313 
    314     </sect3>
    315 
    316     <sect3 role="content">
    317       <title>Contents</title>
    318 
    319       <segmentedlist>
    320         <segtitle>Installed Programs</segtitle>
    321         <segtitle>Installed Libraries</segtitle>
    322         <segtitle>Installed Directories</segtitle>
    323 
    324         <seglistitem>
    325           <seg>none</seg>
    326           <seg><application>Python</application>
    327           <application>D-Bus</application> modules</seg>
    328           <seg>/usr/lib/python&python2-majorver;/site-packages/dbus and
    329           /usr/share/doc/dbus-python-&dbus-python-version;</seg>
    330         </seglistitem>
    331       </segmentedlist>
    332 
    333     </sect3>
    334 
    335   </sect2>
    336 
    337218</sect1>
Note: See TracChangeset for help on using the changeset viewer.