cups-filters-1.0.38

Introduction to CUPS Filters

The CUPS Filters package contains backends, filters and other software that was once part of the core CUPS distribution but is no longer maintained by Apple Inc.

This package is known to build and work properly using an LFS-7.4 platform.

Package Information

CUPS Filters Dependencies

Required

Cups-1.6.3, IJS-0.35, Little CMS-2.5, Poppler-0.24.1 and Qpdf-5.0.0

Recommended

Optional

Avahi-0.6.31, PHP-5.5.3 (use of this might be broken) and acroread

Required (Runtime)

ghostscript-9.10 (Needed for PostScript printers), or Gutenprint-5.2.9 (for supported printers), or other printer drivers

User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/cups-filters

Installation of CUPS Filters

Install CUPS Filters by running the following commands:

./configure --prefix=/usr                               \
            --sysconfdir=/etc                           \
            --docdir=/usr/share/doc/cups-filters-1.0.38 \
            --without-rcdir                             \
            --with-gs-path=/usr/bin/gs                  \
            --with-pdftops-path=/usr/bin/gs             \
            --disable-avahi                             \
            --disable-static                            &&
make

To test the results, issue: make check 2>&1 >testlog.

Now, as the root user:

make install

Command Explanations

--without-rcdir: This switch disables installation of the bundled bootscript which is not compatible with BLFS.

--with-gs-path=/usr/bin/gs: This switch defines the path to the GhostScript binary in case ghostscript-9.10 is not installed at build time.

--with-pdftops-path=/usr/bin/gs: This switch defines the path to the GhostScript binary in case ghostscript-9.10 is not installed at build time.

--disable-avahi: This switch is required if you have not installed Avahi-0.6.31.

make check 2>&1 >testlog: the testsuite dumps a stream of bytes into the input buffer after it finishes. Sending the output to a file keeps the history usable, but some debug information will still appear on the screen.

--with-test-path=VALUE : if you wish to run the tests, but you do not have the default /usr/share/fonts/dejavu/DejaVuSans.ttf use this switch to specify where DejaVuSans.ttf (or perhaps some other text TTF font - untested) is located.

--disable-static: This switch prevents installation of static versions of the libraries.

Contents

Installed Programs: ttfread and cups-browsed
Installed Libraries: libcupsfilters.so and libfontembed.so
Installed Directories: /usr/include/cupsfilters, /usr/include/fontembed, /usr/share/cups/banners, /usr/share/cups/charsets, /usr/share/doc/cups-filters-1.0.38 and /usr/share/ppd/cups-filters

Short Descriptions

libcupsfilters.so

contains CUPS Filters API functions.

Last updated on 2013-09-12 13:42:29 -0700