Changeset 8825a2a


Ignore:
Timestamp:
03/30/2005 09:12:45 PM (19 years ago)
Author:
Randy McMurchy <randy@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 6.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:
e921ae99
Parents:
bcbca63
Message:

Updated to libusb-0.1.10a

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

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • general.ent

    rbcbca63 r8825a2a  
    8484<!ENTITY LZO-version                  "1.08">
    8585<!ENTITY libpcap-version              "0.8.3">
    86 <!ENTITY libusb-version               "0.1.8">
     86<!ENTITY libusb-version               "0.1.10a">
    8787                                     
    8888<!-- Chapter 9 -->                   
  • general/genlib/libusb.xml

    rbcbca63 r8825a2a  
    77<!ENTITY libusb-download-http "http://prdownloads.sourceforge.net/libusb/libusb-&libusb-version;.tar.gz">
    88<!ENTITY libusb-download-ftp " ">
    9 <!ENTITY libusb-md5sum "75655870fb7bb661e6fbd57cbfe81bb2">
    10 <!ENTITY libusb-size "314 KB">
    11 <!ENTITY libusb-buildsize "4.5 MB (includes HTML documentation installation)">
    12 <!ENTITY libusb-time "0.25 SBU">
     9<!ENTITY libusb-md5sum "c6062b29acd2cef414bcc34e0decbdd1">
     10<!ENTITY libusb-size "375 KB">
     11<!ENTITY libusb-buildsize "7.4 MB (additional 1.3 MB to install documentation)">
     12<!ENTITY libusb-time "0.14 SBU (additional 0.08 SBU to build documentation)">
    1313]>
    1414
     
    4747
    4848<sect3><title><application>libusb</application> dependencies</title>
    49 <sect4><title>Optional</title>
    50 <para><xref linkend="openjade"/> and <xref linkend="sgml-dtd-3"/> (both
    51 required to build the <acronym>HTML</acronym> documentation)</para>
     49<sect4><title>Optional (required to build the <acronym>HTML</acronym> user
     50manual)</title>
     51<para><xref linkend="openjade"/> and
     52<ulink url="http://www.docbook.org/sgml/4.2/index.html"> DocBOOK SGML
     53DTD-4.2</ulink></para>
     54</sect4>
     55
     56<sect4><title>Optional (required to build the <acronym>API</acronym>
     57documentation)</title>
     58<para><xref linkend="doxygen"/> and
     59<ulink url="http://www.graphviz.org/">GraphViz</ulink></para>
    5260</sect4>
    5361</sect3>
     
    6169commands:</para>
    6270
    63 <screen><userinput><command>libtoolize -f &amp;&amp;
    64 autoreconf -f &amp;&amp;
    65 ./configure --prefix=/usr --disable-build-docs &amp;&amp;
     71<screen><userinput><command>./configure --prefix=/usr --disable-build-docs &amp;&amp;
    6672make</command></userinput></screen>
     73
     74<para>If you wish to build the <acronym>API</acronym> documentation, issue
     75the following command:</para>
     76
     77<screen><userinput><command>make apidox</command></userinput></screen>
    6778
    6879<para>Now, as the root user:</para>
     
    7081<screen><userinput role='root'><command>make install</command></userinput></screen>
    7182
    72 <para>If you built the <acronym>HTML</acronym> documentation, install it using
    73 the following commands:</para>
     83<para>If you built the <acronym>HTML</acronym> user manual, install it using
     84the following commands as the root user:</para>
    7485
    7586<screen><userinput role='root'><command>install -v -d -m755 /usr/share/doc/libusb-&libusb-version;/html &amp;&amp;
    7687install -v -m644 doc/html/* /usr/share/doc/libusb-&libusb-version;/html</command></userinput></screen>
     88
     89<para>If you built the <acronym>API</acronym> documentation, install it using
     90the following commands as the root user:</para>
     91
     92<screen><userinput role='root'><command>install -v -d -m755 /usr/share/doc/libusb-&libusb-version;/apidocs &amp;&amp;
     93install -v -m644 apidocs/html/* /usr/share/doc/libusb-&libusb-version;/apidocs</command></userinput></screen>
    7794
    7895</sect2>
     
    8198<title>Command explanations</title>
    8299
    83 <para><command>libtoolize -f</command>: There is a mismatch in the Autotools
    84 with <acronym>LFS</acronym>-6.0. This command forces the build to use the
    85 system installed <command>libtool</command> tools so that the shared library
    86 is created correctly.</para>
    87 
    88 <para><command>autoreconf -f</command>: This command recreates some of the
    89 Autotools, required by running <command>libtoolize</command>.</para>
    90 
    91100<para><option>--disable-build-docs</option>: This switch avoids building the
    92 documentation. If you wish to build the documentation, you may need to remove
    93 the <application>OpenSP</application> catalog definitions from the system
    94 <acronym>SGML</acronym> catalogs. Use the following command before building
    95 the package to accomplish this:</para>
     101<acronym>HTML</acronym> user manual. If you wish to build the user manual, you
     102may need to remove the <application>OpenSP</application> catalog definitions
     103from the system <acronym>SGML</acronym> catalogs. Use the following command
     104before building the package to accomplish this:</para>
    96105
    97106<screen><userinput role='root'><command>sed -i.orig \
     
    133142<segmentedlist>
    134143<segtitle>Installed Program</segtitle>
    135 <segtitle>Installed Library</segtitle>
     144<segtitle>Installed Libraries</segtitle>
    136145<segtitle>Installed Directory</segtitle>
    137146
    138147<seglistitem>
    139148<seg>usb-config</seg>
    140 <seg>libusb.[so,a]</seg>
     149<seg>libusb.[so,a] and libusbpp.[so,a]</seg>
    141150<seg>/usr/share/doc/libusb-&libusb-version;</seg>
    142151</seglistitem>
  • introduction/welcome/changelog.xml

    rbcbca63 r8825a2a  
    2222
    2323<itemizedlist>
     24
     25<listitem><para>March 30th, 2005 [randy]: Updated to
     26libusb-0.1.10a.</para></listitem>
    2427
    2528<listitem><para>March 29th, 2005 [randy]: Updated to DocBook DSSSL
Note: See TracChangeset for help on using the changeset viewer.