Changeset a92a3a9


Ignore:
Timestamp:
02/11/2015 06:19:52 PM (9 years ago)
Author:
Bruce Dubbs <bdubbs@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 7.10, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, nosym, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
0b72043
Parents:
fa58dc7
Message:

Add patch to cups-filters to fix building with poppler-0.31.0.
Update to cups-2.0.2.

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

Files:
4 edited

Legend:

Unmodified
Added
Removed
  • introduction/welcome/changelog.xml

    rfa58dc7 ra92a3a9  
    4848      <para>February 11th, 2015</para>
    4949      <itemizedlist>
     50        <listitem>
     51          <para>[bdubbs] - Add patch to cups-filters to fix
     52          building with poppler-0.31.0.</para>
     53        </listitem>
     54        <listitem>
     55          <para>[bdubbs] - Update to cups-2.0.2. Fixes
     56          <ulink url="&blfs-ticket-root;6131">#6131</ulink>.</para>
     57        </listitem>
    5058        <listitem>
    5159          <para>[fernando] - Update to xorg-server-1.17.1. Fixes
  • packages.ent

    rfa58dc7 ra92a3a9  
    713713<!-- Part XII -->
    714714<!-- Chapter 42 -->
    715 <!ENTITY cups-version                 "2.0.1">
     715<!ENTITY cups-version                 "2.0.2">
    716716<!ENTITY cups-filters-version         "1.0.62">
    717717<!ENTITY gs-version                   "9.15">
  • pst/printing/cups-filters.xml

    rfa58dc7 ra92a3a9  
    7474    </itemizedlist>
    7575
     76    <bridgehead renderas="sect3">Additional Downloads</bridgehead>
     77    <itemizedlist spacing="compact">
     78      <listitem>
     79        <para>
     80          Required patch:
     81          <ulink url="&patch-root;/cups-filters-&cups-filters-version;-poppler_fix-1.patch"/>
     82        </para>
     83      </listitem>
     84    </itemizedlist>
     85
    7686    <bridgehead renderas="sect3">CUPS Filters Dependencies</bridgehead>
    7787
     
    120130    </para>
    121131
    122 <screen><userinput>./configure --prefix=/usr                               \
    123             --sysconfdir=/etc                           \
    124             --localstatedir=/var                        \
    125             --docdir=/usr/share/doc/cups-filters-&cups-filters-version; \
    126             --without-rcdir                             \
    127             --with-gs-path=/usr/bin/gs                  \
    128             --with-pdftops-path=/usr/bin/gs             \
    129             --disable-static                            &amp;&amp;
     132<screen><userinput>patch -Np1 -i ../cups-filters-&cups-filters-version;-poppler_fix-1.patch &amp;&amp;
     133
     134./configure --prefix=/usr                   \
     135            --sysconfdir=/etc               \
     136            --localstatedir=/var            \
     137            --without-rcdir                 \
     138            --disable-static                \
     139            --with-gs-path=/usr/bin/gs      \
     140            --with-pdftops-path=/usr/bin/gs \
     141            --docdir=/usr/share/doc/cups-filters-&cups-filters-version; &amp;&amp;
    130142make</userinput></screen>
    131143
     
    144156  <sect2 role="commands">
    145157    <title>Command Explanations</title>
     158
     159    <para>
     160      <command>patch ...</command>: Allow the package to build with
     161      poppler-0.31.0 and later.
     162    </para>
    146163
    147164    <para>
  • pst/printing/cups.xml

    rfa58dc7 ra92a3a9  
    77  <!ENTITY cups-download-http "http://www.cups.org/software/&cups-version;/cups-&cups-version;-source.tar.bz2">
    88  <!ENTITY cups-download-ftp  " ">
    9   <!ENTITY cups-md5sum        "7f7c33071035fb20d0879929a42da711">
     9  <!ENTITY cups-md5sum        "6e0ea72dbafcf5baaa1cf4178e71096d">
    1010  <!ENTITY cups-size          "8.4 MB">
    11   <!ENTITY cups-buildsize     "60 MB (additional 28 MB for the tests)">
     11  <!ENTITY cups-buildsize     "61 MB (additional 28 MB for the tests)">
    1212  <!ENTITY cups-time          "0.5 SBU (additional 4.4 SBU for the tests)">
    1313]>
     
    215215    </para>
    216216
    217 <screen><userinput>sed -i 's:555:755:g;s:444:644:g' Makedefs.in           &amp;&amp;
    218 sed -i '/MAN.*.EXT/s:.gz::g' \
    219        configure config-scripts/cups-manpages.m4       &amp;&amp;
    220 sed -i '/LIBGCRYPTCONFIG/d' config-scripts/cups-ssl.m4 &amp;&amp;
    221 sed -i 's@else /\* HAVE_AVAHI \*/@elif defined(HAVE_AVAHI)@' \
    222        test/ippserver.c                                &amp;&amp;
     217<screen><userinput>sed -i 's:555:755:g;s:444:644:g' Makedefs.in                                  &amp;&amp;
     218sed -i '/MAN.EXT/s:.gz::g' configure config-scripts/cups-manpages.m4          &amp;&amp;
     219sed -i '/LIBGCRYPTCONFIG/d' config-scripts/cups-ssl.m4                        &amp;&amp;
     220sed -i 's@else /\* HAVE_AVAHI \*/@elif defined(HAVE_AVAHI)@' test/ippserver.c &amp;&amp;
    223221
    224222aclocal  -I config-scripts &amp;&amp;
     
    232230make</userinput></screen>
    233231
    234    <para>
    235      To test the results, issue: <command>make -k check</command>. An already
    236      active graphical session with bus address is necessary to run the tests.
    237      A small number of tests fail for unknown reasons.
    238    </para>
     232    <para>
     233      To test the results, issue: <command>make -k check</command>. An already
     234      active graphical session with bus address is necessary to run the tests.
     235      A small number of tests fail for unknown reasons.
     236    </para>
    239237
    240238    <para>
Note: See TracChangeset for help on using the changeset viewer.