Changeset df3fa26


Ignore:
Timestamp:
03/17/2010 05:38:24 PM (14 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:
0af769f
Parents:
af79b47
Message:

Updated to NASM-2.08

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

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • general.ent

    raf79b47 rdf3fa26  
    273273<!ENTITY junit-version                "4.8.1">
    274274<!ENTITY librep-version               "0.17">
    275 <!ENTITY NASM-version                 "2.07">
     275<!ENTITY NASM-version                 "2.08">
    276276<!ENTITY pdl-version                  "2.4.2">
    277277<!ENTITY php-version                  "5.3.2">
  • general/prog/nasm.xml

    raf79b47 rdf3fa26  
    66
    77  <!ENTITY NASM-download-http "http://www.nasm.us/pub/nasm/releasebuilds/&NASM-version;/nasm-&NASM-version;.tar.bz2">
    8   <!ENTITY NASM-download-ftp " ">
    9   <!ENTITY NASM-md5sum "d8934231e81874c29374ddef1fbdb1ed">
    10   <!ENTITY NASM-size "768 KB">
    11   <!ENTITY NASM-buildsize "21.5 MB (includes building and installing all docs)">
    12   <!ENTITY NASM-time "0.3 SBU">
     8  <!ENTITY NASM-download-ftp  " ">
     9  <!ENTITY NASM-md5sum        "aa229cdc849293813bff52502772f73c">
     10  <!ENTITY NASM-size          "782 KB">
     11  <!ENTITY NASM-buildsize     "24 MB (includes building and installing all docs)">
     12  <!ENTITY NASM-time          "0.3 SBU">
    1313]>
    1414
     
    8686make -C rdoff/doc html</userinput></screen>
    8787
    88     <para>To build the base <application>NASM</application> documentation,
    89     ensure you have <application>Ghostscript</application> installed and issue:</para>
    90 
    91 <screen><userinput>make doc</userinput></screen>
     88    <para>To build the base <application>NASM</application> and RDOFF PDF
     89    documentation, ensure you have <xref linkend="gs"/> installed and
     90    issue:</para>
     91
     92<screen><userinput>make doc &amp;&amp;
     93make -C rdoff/doc pdf</userinput></screen>
    9294
    9395    <para>To build the RDOFF Postscript documentation,
     
    9799make -C rdoff/doc ps</userinput></screen>
    98100
    99     <para>To build the RDOFF PDF documentation, ensure you have
    100     <application>Ghostscript</application> installed and issue:</para>
    101 
    102 <screen><userinput>make -C rdoff/doc pdf</userinput></screen>
    103 
    104101    <para>This package does not come with a test suite.</para>
    105102
    106103    <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
    107104
    108 <screen role="root"><userinput>make install &amp;&amp;
    109 make install_rdf &amp;&amp;
    110 install -v -m644 rdoff/doc/rdoff.info /usr/share/info &amp;&amp;
    111 install -v -m755 -d /usr/share/doc/nasm/html &amp;&amp;
    112 install -v -m644 rdoff/doc/v1-v2.txt /usr/share/doc/nasm &amp;&amp;
    113 cp -v -R rdoff/doc/rdoff /usr/share/doc/nasm/html</userinput></screen>
     105<screen role="root"><userinput>make install install_rdf &amp;&amp;
     106install -v -m755 -d /usr/share/doc/nasm-&NASM-version;/html &amp;&amp;
     107install -v -m644    rdoff/doc/v1-v2.txt \
     108                    /usr/share/doc/nasm-&NASM-version; &amp;&amp;
     109cp -v -R            rdoff/doc/rdoff \
     110                    /usr/share/doc/nasm-&NASM-version;/html &amp;&amp;
     111install -v -m644    rdoff/doc/rdoff.info* \
     112                    /usr/share/info &amp;&amp;
     113pushd /usr/share/info &amp;&amp;
     114    rm -fv dir        &amp;&amp;
     115    for FILENAME in *; do install-info $FILENAME dir; done &amp;&amp;
     116popd</userinput></screen>
    114117
    115118    <para>If you built the <application>Ghostscript</application> generated
     
    117120    <systemitem class="username">root</systemitem> user:</para>
    118121
    119 <screen role="root"><userinput>make install_doc &amp;&amp;
    120 install -v -m644 rdoff/doc/rdoff.pdf /usr/share/doc/nasm</userinput></screen>
     122<screen role="root"><userinput>sed -i 's|doc/nasm|share/doc/nasm-&NASM-version;|' doc/Makefile &amp;&amp;
     123make install_doc      &amp;&amp;
     124
     125pushd /usr/share/info &amp;&amp;
     126    rm -fv dir        &amp;&amp;
     127    for FILENAME in *; do install-info $FILENAME dir; done &amp;&amp;
     128popd                  &amp;&amp;
     129
     130install -v -m644 rdoff/doc/rdoff.pdf \
     131                 /usr/share/doc/nasm-&NASM-version;</userinput></screen>
    121132
    122133    <para>Lastly, if you built the RDOFF Postscript documentation, install it
     
    124135    <systemitem class="username">root</systemitem> user:</para>
    125136
    126 <screen role="root"><userinput>install -v -m644 rdoff/doc/rdoff.ps /usr/share/doc/nasm</userinput></screen>
     137<screen role="root"><userinput>install -v -m644 rdoff/doc/rdoff.ps \
     138                 /usr/share/doc/nasm-&NASM-version;</userinput></screen>
    127139
    128140  </sect2>
     
    140152        rdfdump, rdflib, and rdx</seg>
    141153        <seg>None</seg>
    142         <seg>/usr/share/doc/nasm</seg>
     154        <seg>/usr/share/doc/nasm-&NASM-version;</seg>
    143155      </seglistitem>
    144156    </segmentedlist>
  • introduction/welcome/changelog.xml

    raf79b47 rdf3fa26  
    4646      <itemizedlist>
    4747        <listitem>
     48          <para>[randy] - Updated to NASM-2.08.</para>
     49        </listitem>
     50        <listitem>
    4851          <para>[randy] - Modified the EsoundD instructions to put the docs in
    4952          the proper spot.</para>
Note: See TracChangeset for help on using the changeset viewer.