Changeset 6c7866b4 for general/graphlib


Ignore:
Timestamp:
08/23/2013 06:14:58 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:
a6c6923
Parents:
f0dfc28
Message:

libmng 2.0.2

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • general/graphlib/libmng.xml

    rf0dfc28 r6c7866b4  
    55  %general-entities;
    66
    7   <!ENTITY libmng-download-http "&sourceforge-repo;/libmng/libmng-&libmng-version;.tar.bz2">
     7  <!ENTITY libmng-download-http "&sourceforge-repo;/libmng/libmng-&libmng-version;.tar.xz">
    88  <!ENTITY libmng-download-ftp  " ">
    9   <!ENTITY libmng-md5sum        "eaf1476a3bb29f6190bca660e6abef16">
    10   <!ENTITY libmng-size          "840 KB">
    11   <!ENTITY libmng-buildsize     "7.9 MB">
    12   <!ENTITY libmng-time          "0.1 SBU">
     9  <!ENTITY libmng-md5sum        "3804bf2523af9b4e0670b5982b3bf984">
     10  <!ENTITY libmng-size          "932 KB">
     11  <!ENTITY libmng-buildsize     "15 MB">
     12  <!ENTITY libmng-time          "0.2 SBU">
    1313]>
    1414
     
    6161
    6262    <bridgehead renderas="sect4">Required</bridgehead>
    63     <para role="required"><xref linkend="libjpeg"/> and
    64     <xref linkend="lcms"/></para>
     63    <para role="required">
     64      <xref linkend="libjpeg"/> and
     65      <xref linkend="lcms2"/>
     66    </para>
    6567
    6668    <para condition="html" role="usernotes">User Notes:
     
    7577    commands:</para>
    7678
    77 <screen><userinput>cp makefiles/makefile.linux Makefile        &amp;&amp;
    78 sed -i -e 's/unroll-loops/&amp; -fPIC/' Makefile &amp;&amp;
     79<screen><userinput>sed -i "s:#include &lt;jpeg:#include &lt;stdio.h&gt;\n&amp;:" libmng_types.h &amp;&amp;
     80./configure --prefix=/usr --disable-static &amp;&amp;
    7981make</userinput></screen>
    8082
     
    8385    <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
    8486
    85 <screen role="root"><userinput>sed -i '/^install\|cp.*libmng.a/ s/libmng.a//' Makefile &amp;&amp;
    86 make prefix=/usr install &amp;&amp;
    87 install -v -m644 doc/man/*.3 /usr/share/man/man3 &amp;&amp;
    88 install -v -m644 doc/man/*.5 /usr/share/man/man5 &amp;&amp;
     87<screen role="root"><userinput>make install &amp;&amp;
    8988install -v -m755 -d /usr/share/doc/libmng-&libmng-version; &amp;&amp;
    90 install -v -m644 doc/*.{png,txt} /usr/share/doc/libmng-&libmng-version;</userinput></screen>
     89install -v -m644 doc/*.txt /usr/share/doc/libmng-&libmng-version;</userinput></screen>
    9190
    9291  </sect2>
     
    9594    <title>Command Explanations</title>
    9695
    97     <para><command>cp makefiles/makefile.linux Makefile</command>: There are no
    98     autotools shipped with this package. The Linux <filename>Makefile</filename>
    99     is copied to the root of the source tree, facilitating the installation.</para>
     96    <para>
     97      <command>sed -i "..." libmng_types.h</command>: This command adds a
     98      missing header which would cause other apps that link to this
     99      package fail to compile.
     100    </para>
    100101
    101     <para><command>sed -i -e 's/unroll-loops/&amp; -fPIC/' Makefile</command>:
    102     Add a gcc option to make the build compatible with x86_64 systems.</para>
    103 
    104     <para><command>sed -i '/^install\|cp.*libmng.a/ s/libmng.a//' Makefile</command>
    105     This command disables installing the static library.</para>
    106 
    107     <para><command>install ...</command>: The documentation files are not
    108     installed by the installation procedure, so they are copied manually.</para>
     102    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
     103      href="../../xincludes/static-libraries.xml"/>
    109104
    110105  </sect2>
Note: See TracChangeset for help on using the changeset viewer.