483aca
#
483aca
# Important notes regarding the package:
483aca
# ======================================
483aca
# 1) This package has GUI versions (*-x11, *-gtk), but we are not shipping the
483aca
#    desktop files, because the GUI versions are used for displaying of files
483aca
#    invoked from command line. The displaying GUI does not contain any buttons
483aca
#    or other means for user interaction. It can't even open a different file
483aca
#    from the GUI version. Therefore it does not make sense to ship desktop
483aca
#    files...
483aca
483aca
# === GLOBAL MACROS ===========================================================
483aca
483aca
# According to Fedora Package Guidelines, it is advised that packages that can
483aca
# process untrusted input are build with position-independent code (PIC).
483aca
#
483aca
# Koji should override the compilation flags and add the -fPIC or -fPIE flags by
483aca
# default. This is here just in case this wouldn't happen for some reason.
483aca
# For more info: https://fedoraproject.org/wiki/Packaging:Guidelines#PIE
483aca
%global _hardened_build 1
483aca
483aca
# By redefining the '_docdir_fmt' macro we override the default location of
483aca
# documentation or license files. Instead of them being located in 'libgs'
483aca
# folder, they are now located in 'ghostscript'.
483aca
%global _docdir_fmt     %{name}
483aca
483aca
# NOTE: Artifex is using Github only as a mirror for providing the source
483aca
#       tarballs, and their release tags/branches do not use the dot in version
483aca
#       tag. This makes obtaining the current version harder, and might prevent
483aca
#       automatic builds of new releases...
483aca
%global version_short   %(echo "%{version}" | tr -d '.')
483aca
483aca
# Obtain the location of Google Droid fonts directory:
483aca
%global google_droid_fontpath %%(dirname $(fc-list : file | grep "DroidSansFallback"))
483aca
483aca
# =============================================================================
483aca
483aca
Name:             ghostscript
483aca
Summary:          Interpreter for PostScript language & PDF
483aca
Version:          9.25
3754a4
Release:          7%{?dist}
483aca
483aca
License:          AGPLv3+
483aca
483aca
URL:              https://ghostscript.com/
483aca
Source:           https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs%{version_short}/ghostscript-%{version}.tar.xz
483aca
483aca
Requires:         libgs%{?_isa} = %{version}-%{release}
483aca
483aca
# Auxiliary build requirements:
483aca
BuildRequires:    automake
483aca
BuildRequires:    gcc
483aca
BuildRequires:    git
483aca
483aca
# Already packaged Resources -- needed to build package correctly:
483aca
BuildRequires:    adobe-mappings-cmap-devel
483aca
BuildRequires:    adobe-mappings-pdf-devel
483aca
BuildRequires:    google-droid-sans-fonts
483aca
BuildRequires:    urw-base35-fonts-devel
483aca
483aca
# Already packaged software -- needed for debundling of Ghostscript:
483aca
BuildRequires:    cups-devel
483aca
BuildRequires:    dbus-devel
483aca
BuildRequires:    fontconfig-devel
483aca
BuildRequires:    freetype-devel
483aca
BuildRequires:    jbig2dec-devel
483aca
BuildRequires:    lcms2-devel
483aca
BuildRequires:    libidn-devel
483aca
BuildRequires:    libijs-devel
483aca
BuildRequires:    libjpeg-turbo-devel
483aca
BuildRequires:    libpng-devel
483aca
BuildRequires:    libpaper-devel
483aca
BuildRequires:    libtiff-devel
483aca
BuildRequires:    openjpeg2-devel
483aca
BuildRequires:    zlib-devel
483aca
483aca
# Enabling the GUI possibilities of Ghostscript:
483aca
BuildRequires:    gtk3-devel
483aca
BuildRequires:    libXt-devel
483aca
483aca
# =============================================================================
483aca
483aca
# NOTE: 'autosetup' macro (below) uses 'git' for applying the patches:
483aca
#       ->> All the patches should be provided in 'git format-patch' format.
483aca
#       ->> Auxiliary repository will be created during 'fedpkg prep', you
483aca
#           can see all the applied patches there via 'git log'.
483aca
483aca
# Upstream patches -- official upstream patches released by upstream since the
483aca
# ----------------    last rebase that are necessary for any reason:
483aca
#Patch000: example000.patch
483aca
Patch000: ghostscript-cve-2018-19409.patch
483aca
Patch001: ghostscript-cve-2018-18073.patch
483aca
Patch002: ghostscript-cve-2018-17961.patch
483aca
Patch003: ghostscript-cve-2018-18284.patch
483aca
Patch004: ghostscript-cve-2018-19134.patch
483aca
Patch005: ghostscript-cve-2018-19475.patch
483aca
Patch006: ghostscript-cve-2018-19476.patch
483aca
Patch007: ghostscript-cve-2018-19477.patch
483aca
Patch008: ghostscript-cve-2019-6116.patch
483aca
Patch009: ghostscript-cve-2019-6116-downstream.patch
483aca
Patch010: ghostscript-cve-2019-3839.patch
483aca
Patch011: ghostscript-cve-2019-3835.patch
483aca
Patch012: ghostscript-cve-2019-3838.patch
483aca
Patch013: ghostscript-fix-DSC-comment-parsing.patch
483aca
Patch014: ghostscript-pdf2dsc-regression.patch
dbb3ab
Patch015: ghostscript-cve-2019-10216.patch
dbb3ab
Patch016: ghostscript-cve-2019-14811-14812-14813.patch
dbb3ab
Patch017: ghostscript-cve-2019-14817.patch
dbb3ab
Patch018: ghostscript-cve-2019-14869.patch
483aca
483aca
# Downstream patches -- these should be always included when doing rebase:
483aca
# ------------------
483aca
Patch100: ghostscript-9.23-100-run-dvipdf-securely.patch
483aca
483aca
483aca
# Downstream patches for RHEL -- patches that we keep only in RHEL for various
483aca
# ---------------------------    reasons, but are not enabled in Fedora:
483aca
%if %{defined rhel} || %{defined centos}
483aca
#Patch200: example200.patch
483aca
%endif
483aca
483aca
483aca
# Patches to be removed -- deprecated functionality which shall be removed at
483aca
# ---------------------    some point in the future:
483aca
483aca
483aca
%description
483aca
This package provides useful conversion utilities based on Ghostscript software,
483aca
for converting PS, PDF and other document formats between each other.
483aca
483aca
Ghostscript is a suite of software providing an interpreter for Adobe Systems'
483aca
PostScript (PS) and Portable Document Format (PDF) page description languages.
483aca
Its primary purpose includes displaying (rasterization & rendering) and printing
483aca
of document pages, as well as conversions between different document formats.
483aca
483aca
# === SUBPACKAGES =============================================================
483aca
483aca
# Below requirements are resources, which are not detected by RPM automatically:
483aca
%package -n libgs
483aca
Summary:          Library providing Ghostcript's core functionality
483aca
Requires:         adobe-mappings-cmap
483aca
Requires:         adobe-mappings-cmap-deprecated
483aca
Requires:         adobe-mappings-pdf
483aca
Requires:         google-droid-sans-fonts
483aca
Requires:         urw-base35-fonts
483aca
483aca
%description -n libgs
483aca
This library provides Ghostscript's core functionality, based on Ghostscript's
483aca
API, which is useful for many packages that are build on top of Ghostscript.
483aca
483aca
# ---------------
483aca
483aca
%package -n libgs-devel
483aca
Summary:          Development files for Ghostscript's library
483aca
Requires:         libgs%{?_isa} = %{version}-%{release}
483aca
483aca
# This virtual provides is useful in case people get confused what *-devel
483aca
# subpackage they should actually use (i.e. ghostscript-devel vss libgs-devel?).
483aca
# By having this virtual provide both of the options above will work...
483aca
Provides:         %{name}-devel         = %{version}-%{release}
483aca
Provides:         %{name}-devel%{?_isa} = %{version}-%{release}
483aca
483aca
%description -n libgs-devel
483aca
This package contains development files that are useful for building packages
483aca
against Ghostscript's library, which provides Ghostscript's core functionality.
483aca
483aca
# ---------------
483aca
483aca
# NOTE: The 'dvipdf' utility invokes 'dvips', which is part of 'texlive-dvips'.
483aca
#       This requirement pulls in a lot of texlive subpackages. Not all users
483aca
#       need to use this utility, nor they wish to have a lot of disk space to
483aca
#       be used by 'texlive'. Therefore the specific subpackage is necessary.
483aca
#
483aca
#       Previously, the 'dvips' was moving between packages before, so it's
483aca
#       more convenient (even for users) to have a direct requiremnt for the
483aca
#       executable instead of package.
483aca
%package tools-dvipdf
483aca
Summary:          Ghostscript's 'dvipdf' utility
483aca
Requires:         %{name}%{?_isa} = %{version}-%{release}
483aca
Requires:         %{_bindir}/dvips
483aca
483aca
%description tools-dvipdf
483aca
This package provides the utility 'dvipdf' for converting of TeX DVI files into
483aca
PDF files using Ghostscript and dvips.
483aca
483aca
# ---------------
483aca
483aca
%package tools-fonts
483aca
Summary:          Ghostscript's font utilities
483aca
Requires:         %{name}%{?_isa} = %{version}-%{release}
483aca
483aca
%description tools-fonts
483aca
This package provides utilities which are useful when you are working with AFM,
483aca
PFB or PFA files, mostly for conversion purposes.
483aca
483aca
# ---------------
483aca
483aca
%package tools-printing
483aca
Summary:          Ghostscript's printing utilities
483aca
Requires:         %{name}%{?_isa} = %{version}-%{release}
483aca
483aca
%description tools-printing
483aca
This package provides utilities for formatting and printing text files using
483aca
either Ghostscript, or BubbleJet, DeskJet, DeskJet 500, and LaserJet printers.
483aca
483aca
It also provides the utility 'pphs', which is useful for printing of Primary
483aca
Hint Stream of a linearized PDF file.
483aca
483aca
# ---------------
483aca
483aca
%package gtk
483aca
Summary:          Ghostscript's GTK-based document renderer
483aca
Requires:         libgs%{?_isa} = %{version}-%{release}
483aca
483aca
%description gtk
483aca
This package provides GTK-based utility 'gsx', which can be used for displaying
483aca
of various document files (including PS and PDF).
483aca
483aca
# ---------------
483aca
483aca
%package x11
483aca
Summary:          Ghostscript's X11-based driver for document rendering
483aca
Requires:         %{name}%{?_isa} = %{version}-%{release}
483aca
483aca
%description x11
483aca
This package provides X11-based driver for Ghostscript, which enables displaying
483aca
of various document files (including PS and PDF).
483aca
483aca
# ---------------
483aca
483aca
%package doc
483aca
Summary:          Documentation files for Ghostscript
483aca
Requires:         %{name} = %{version}-%{release}
483aca
BuildArch:        noarch
483aca
483aca
%description doc
483aca
This package provides detailed documentation files for Ghostscript software.
483aca
483aca
# === BUILD INSTRUCTIONS ======================================================
483aca
483aca
# Call the 'autosetup' macro to prepare the environment, but do not patch the
483aca
# source code yet -- we need to remove bundled software before the build first:
483aca
%prep
483aca
%autosetup -N -S git
483aca
483aca
# Libraries that we already have packaged in Fedora (see Build Requirements):
483aca
rm -rf cups/libs freetype ijs jbig2dec jpeg lcms2* libpng openjpeg tiff zlib
483aca
483aca
# Yeah, not actually needed in Fedora (^_^):
483aca
rm -rf windows
483aca
483aca
# Add the remaining source code to the initial commit, patch the source code:
483aca
git add --all --force .
483aca
git commit --all --amend --no-edit > /dev/null
483aca
%autopatch -p1
483aca
483aca
# ---------------
483aca
483aca
%build
483aca
# --enable-dynamic
483aca
#     ... enables dynamically loaded drivers
483aca
#
483aca
# --disable-compile-inits
483aca
#     ... disables compiling of init files (PS code, fonts, etc.) into resulting
483aca
#         binaries, so they are loaded dynamically
483aca
#
483aca
# --without-versioned-path
483aca
#     ... tells configure to not use version string in the resulting paths after
483aca
#         'make_install' macro - this is safe, because only one version of
483aca
#         package can be installed at a given time on Fedora distribution,
483aca
#         so we won't end up with conflicting folders when doing rebase
483aca
#
483aca
# --with-fonthpath
483aca
#     ... searches for necessary fonts in these column-separated directories,
483aca
#         not just default ones
483aca
#
483aca
# NOTE:   In RHEL we need to keep the /usr/share/ghostscript/conf.d/ folder
483aca
#         for China's GB18030 official certification:
483aca
%if %{defined rhel} || %{defined centos}
483aca
%configure --enable-dynamic --disable-compile-inits --without-versioned-path \
3754a4
           --with-fontpath="%{urw_base35_fontpath}:%{google_droid_fontpath}:%{_datadir}/%{name}/conf.d/:%{_datadir}/fonts"
483aca
%else
483aca
%configure --enable-dynamic --disable-compile-inits --without-versioned-path \
483aca
           --with-fontpath="%{urw_base35_fontpath}:%{google_droid_fontpath}"
483aca
%endif
483aca
483aca
%make_build so
483aca
483aca
# ---------------
483aca
483aca
%install
483aca
# Using the 'make_install' macro with 'soinstall' target would result in some
483aca
# files being installed unnecessary, so we are using traditional way:
483aca
make DESTDIR=%{buildroot} soinstall
483aca
483aca
# Remove files that we do not want ship / support:
483aca
# ------------------------------------------------
483aca
# LPR-related scripts:
483aca
rm -f %{buildroot}%{_bindir}/{lprsetup.sh,unix-lpr.sh}
483aca
483aca
# Rename the dynamic binary to be used by default as 'gs' binary.
483aca
mv -f %{buildroot}%{_bindir}/{gsc,gs}
483aca
483aca
# Remove useless files from doc/ directory and doc/ symlink:
483aca
rm -f %{buildroot}%{_docdir}/%{name}/{AUTHORS,COPYING,*.tex,*.hlp,*.txt}
483aca
rm -f %{buildroot}%{_datadir}/%{name}/doc
483aca
483aca
# ---------------
483aca
483aca
# Move html documentation into html/ subdir:
483aca
install -m 0755 -d %{buildroot}%{_docdir}/%{name}/html
483aca
mv -f %{buildroot}%{_docdir}/%{name}/{*.htm*,*.el,html}
483aca
483aca
# ---------------
483aca
483aca
# Create 'ghostscript' symlink for its binary:
483aca
ln -s %{_bindir}/gs %{buildroot}%{_bindir}/ghostscript
483aca
483aca
# Create a man page symlink for 'ghostscript':
483aca
ln -s %{_mandir}/man1/gs.1 %{buildroot}%{_mandir}/man1/ghostscript.1
483aca
483aca
# ---------------
483aca
483aca
# According to upstream, using fontconfig for fonts lookup is quite a slow
483aca
# process for Ghostscript startup, and they advise using the symlinks where
483aca
# possible. The fontconfig (Ghostscript's search path) should be used preferably
483aca
# as a fallback only.
483aca
ln -fs %{google_droid_fontpath}/DroidSansFallback.ttf %{buildroot}%{_datadir}/%{name}/Resource/CIDFSubst/DroidSansFallback.ttf
483aca
483aca
for font in $(basename --multiple %{buildroot}%{_datadir}/%{name}/Resource/Font/*); do
483aca
  ln -fs %{urw_base35_fontpath}/${font}.t1 %{buildroot}%{_datadir}/%{name}/Resource/Font/${font}
483aca
done
483aca
483aca
# Using the system-wide available CMap files from Adobe via Ghostscript's search
483aca
# path is not safe (nor was ever intended to be supported) way of doing so
483aca
# according to upstream. Their preferred solution is to just create symlink for
483aca
# each of the CMap files in Ghostscript's Resources/CMap folder.
483aca
for file in $(basename --multiple %{buildroot}%{_datadir}/%{name}/Resource/CMap/*); do
483aca
  find %{adobe_mappings_rootpath} -type f -name ${file} -exec ln -fs {} %{buildroot}%{_datadir}/%{name}/Resource/CMap/${file} \;
483aca
done
483aca
483aca
# Create the configuration folder fo RHEL:
483aca
%if %{defined rhel} || %{defined centos}
483aca
  install -m 0755 -d %{buildroot}%{_datadir}/%{name}/conf.d/
483aca
%endif
483aca
483aca
# === INSTALLATION INSTRUCTIONS ===============================================
483aca
483aca
%ldconfig_scriptlets -n libgs
483aca
483aca
# === PACKAGING INSTRUCTIONS ==================================================
483aca
483aca
%files -n libgs
483aca
%license LICENSE doc/COPYING
483aca
483aca
%{_libdir}/libgs.so.*
483aca
%{_datadir}/%{name}/
483aca
483aca
# Include the configuration folder for RHEL:
483aca
%if %{defined rhel} || %{defined centos}
483aca
  %dir %{_datadir}/%{name}/conf.d/
483aca
%endif
483aca
483aca
# ---------------
483aca
483aca
%files -n libgs-devel
483aca
%{_libdir}/libgs.so
483aca
%{_includedir}/%{name}/
483aca
483aca
# ---------------
483aca
483aca
%files
483aca
%{_bindir}/gs
483aca
%{_bindir}/gsnd
483aca
%{_bindir}/ghostscript
483aca
483aca
# Useful conversion scripts:
483aca
%{_bindir}/eps2*
483aca
%{_bindir}/pdf2*
483aca
%{_bindir}/ps2*
483aca
483aca
%{_mandir}/man1/gs.1*
483aca
%{_mandir}/man1/gsnd*
483aca
%{_mandir}/man1/ghostscript*
483aca
%{_mandir}/man1/eps2*
483aca
%{_mandir}/man1/pdf2*
483aca
%{_mandir}/man1/ps2*
483aca
483aca
%lang(de) %{_mandir}/de/man1/gsnd*
483aca
%lang(de) %{_mandir}/de/man1/eps2*
483aca
%lang(de) %{_mandir}/de/man1/pdf2*
483aca
%lang(de) %{_mandir}/de/man1/ps2*
483aca
483aca
# ---------------
483aca
483aca
%files tools-dvipdf
483aca
%{_bindir}/dvipdf
483aca
483aca
%{_mandir}/man1/dvipdf*
483aca
483aca
%lang(de) %{_mandir}/de/man1/dvipdf*
483aca
483aca
# ---------------
483aca
483aca
%files tools-fonts
483aca
%{_bindir}/pf2afm
483aca
%{_bindir}/pfbtopfa
483aca
%{_bindir}/printafm
483aca
483aca
%{_mandir}/man1/pf2afm*
483aca
%{_mandir}/man1/pfbtopfa*
483aca
%{_mandir}/man1/printafm*
483aca
483aca
%lang(de) %{_mandir}/de/man1/printafm*
483aca
483aca
# ---------------
483aca
483aca
%files tools-printing
483aca
%{_bindir}/gsbj
483aca
%{_bindir}/gsdj
483aca
%{_bindir}/gsdj500
483aca
%{_bindir}/gslj
483aca
%{_bindir}/gslp
483aca
%{_bindir}/pphs
483aca
483aca
%{_mandir}/man1/gsbj*
483aca
%{_mandir}/man1/gsdj*
483aca
%{_mandir}/man1/gslj*
483aca
%{_mandir}/man1/gslp*
483aca
483aca
# ---------------
483aca
483aca
%files gtk
483aca
%{_bindir}/gsx
483aca
483aca
# ---------------
483aca
483aca
%files x11
483aca
%{_libdir}/%{name}/
483aca
483aca
# ---------------
483aca
483aca
%files doc
483aca
%doc %{_docdir}/%{name}/
483aca
483aca
# =============================================================================
483aca
483aca
%changelog
3754a4
* Tue Apr 07 2020 Zdenek Dohnal <zdohnal@redhat.com> - 9.25-7
3754a4
- 1813228 - ghostscript fontconfig support broken when gs used with -dSAFER/-dPARANOIDSAFER
3754a4
3754a4
* Thu Nov 07 2019 Zdenek Dohnal <zdohnal@redhat.com> - 9.25-6
3754a4
- 1769343 - CVE-2019-14869 - -dSAFER escape in .charkeys
dbb3ab
dbb3ab
* Thu Aug 22 2019 Martin Osvald <mosvald@redhat.com> - 9.25-5
dbb3ab
- Resolves: #1744011 - CVE-2019-14811 ghostscript: Safer Mode Bypass by .forceput Exposure in .pdf_hook_DSC_Creator (701445)
dbb3ab
- Resolves: #1744015 - CVE-2019-14812 ghostscript: Safer Mode Bypass by .forceput Exposure in setuserparams (701444)
dbb3ab
- Resolves: #1744006 - CVE-2019-14813 ghostscript: Safer Mode Bypass by .forceput Exposure in setsystemparams (701443)
dbb3ab
- Resolves: #1744231 - CVE-2019-14817 ghostscript: Safer Mode Bypass by .forceput Exposure in .pdfexectoken and other procedures (701450)
dbb3ab
dbb3ab
* Mon Aug 05 2019 Martin Osvald <mosvald@redhat.com> - 9.25-4
dbb3ab
- Resolves: #1737337 - CVE-2019-10216 ghostscript: -dSAFER escape via .buildfont1 (701394)
dbb3ab
483aca
* Thu Mar 28 2019 Martin Osvald <mosvald@redhat.com> - 9.25-3
483aca
- Resolves: #1692798 - CVE-2019-3839 ghostscript: missing attack vector
483aca
  protections for CVE-2019-6116
483aca
- Resolves: #1678170 - CVE-2019-3835 ghostscript: superexec operator
483aca
  is available (700585)
483aca
- Resolves: #1691414 - CVE-2019-3838 ghostscript: forceput in DefineResource
483aca
  is still accessible (700576)
483aca
- fix included for ghostscript: Regression: double comment chars
483aca
  '%%' in gs_init.ps leading to missing metadata
483aca
- fix for pdf2dsc regression added to allow fix for CVE-2019-3839
483aca
483aca
* Wed Jan 23 2019 Martin Osvald <mosvald@redhat.com> - 9.25-2
483aca
- Resolves: #1652937 - CVE-2018-19409 ghostscript: Improperly implemented
483aca
  security check in zsetdevice function in psi/zdevice.c
483aca
- Resolves: #1642586 - CVE-2018-18073 ghostscript: saved execution stacks
483aca
  can leak operator arrays
483aca
- Resolves: #1642580 - CVE-2018-17961 ghostscript: saved execution stacks
483aca
  can leak operator arrays (incomplete fix for CVE-2018-17183)
483aca
- Resolves: #1642941 - CVE-2018-18284 ghostscript: 1Policy operator
483aca
  allows a sandbox protection bypass
483aca
- Resolves: #1656336 - CVE-2018-19134 ghostscript: Type confusion in
483aca
  setpattern (700141)
483aca
- Resolves: #1660571 - CVE-2018-19475 ghostscript: access bypass in
483aca
  psi/zdevice2.c (700153)
483aca
- Resolves: #1660830 - CVE-2018-19476 ghostscript: access bypass in
483aca
  psi/zicc.c
483aca
- Resolves: #1661280 - CVE-2018-19477 ghostscript: access bypass in
483aca
  psi/zfjbig2.c (700168)
483aca
- Resolves: #1668891 - CVE-2019-6116 ghostscript: subroutines within
483aca
  pseudo-operators must themselves be pseudo-operators (700317)
483aca
483aca
* Mon Sep 24 2018 David Kaspar [Dee'Kej] <dkaspar@redhat.com> - 9.25-1
483aca
- rebase to latest upstream version to fix issues discovered in previous CVE fixes (bug #1631701 and #1626997)
483aca
483aca
* Fri Sep 07 2018 David Kaspar [Dee'Kej] <dkaspar@redhat.com> - 9.24-1
483aca
- rebase to latest upstream version, which contains important CVE fixes
483aca
- additional ZER0-DAY fixes added
483aca
483aca
* Wed Aug 29 2018 David Kaspar [Dee'Kej] <dkaspar@redhat.com> - 9.23-5
483aca
- ghostscript-9.23-002-fixes-for-set-of-CVEs-reported-by-Google.patch added
483aca
483aca
* Tue May 15 2018 David Kaspar [Dee'Kej] <dkaspar@redhat.com> - 9.23-4
483aca
- One more rebuild for libidn ABI fix (BZ#'s 1573961 and 1566414)
483aca
483aca
* Mon May 14 2018 David Kaspar [Dee'Kej] <dkaspar@redhat.com> - 9.23-3
483aca
- %%conflicts_vers bumped to fix F27->F28 upgrade
483aca
483aca
* Mon Apr 23 2018 David Kaspar [Dee'Kej] <dkaspar@redhat.com> - 9.23-2
483aca
- Fix for CVE-2018-10194 added (bug #1569821)
483aca
483aca
* Wed Mar 21 2018 David Kaspar [Dee'Kej] <dkaspar@redhat.com> - 9.23-1
483aca
- Rebase to latest upstream version
483aca
483aca
* Thu Mar 08 2018 David Kaspar [Dee'Kej] <dkaspar@redhat.com> - 9.22-10
483aca
- %%{isa} removed in Conflicts for ghostscript-core in libgs package
483aca
483aca
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 9.22-9
483aca
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
483aca
483aca
* Mon Feb 05 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 9.22-8
483aca
- Switch to %%ldconfig_scriptlets
483aca
  >> https://fedoraproject.org/wiki/Changes/Removing_ldconfig_scriptlets
483aca
483aca
* Mon Jan 22 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 9.22-7
483aca
- Fix Obsoletes
483aca
  >> https://github.com/rpm-software-management/rpm/commit/9e8e8bcfb1b1fa35
483aca
483aca
* Sat Jan 20 2018 Björn Esser <besser82@fedoraproject.org> - 9.22-6
483aca
- Rebuilt for switch to libxcrypt
483aca
483aca
* Thu Jan 18 2018 David Kaspar [Dee'Kej] <dkaspar@redhat.com> - 9.22-5
483aca
- ghostscript-tools-dvipdf -- new subpackage
483aca
483aca
* Tue Jan 09 2018 David Kaspar [Dee'Kej] <dkaspar@redhat.com> - 9.22-4
483aca
- complete cleanup in ghostscript specfile according to FPG
483aca
- libgs -- new separate package (Ghostscript library)
483aca
- libgs-devel -- new separate subpackage (devel files for Ghostscript library)
483aca
- libijs -- now shipped as a separate package on Pagure
483aca
- ghostscript-tools-fonts -- new subpackage
483aca
- ghostscript-tools-printing -- new subpackage
483aca
- ghostscript-core -- changed to transitional metapackage
483aca
- package is now completely debundled from already packaged software/resources
483aca
- versioned paths for documentation, resources, etc. are no longer used
483aca
- LPR setup scripts removed (no longer shipped)
483aca
- added symlinks for direct resources location to speedup Ghostscript startup times
483aca
- Ghostscript's search path updated to include only fonts locations as a backup
483aca
- support for /usr/share/ghostscript/conf.d dropped (using Google Droid Sans Fallback instead)
483aca
- examples/ folder dropped from *-doc subpackage
483aca
483aca
* Mon Dec 04 2017 David Kaspar [Dee'Kej] <dkaspar@redhat.com> - 9.22-3
483aca
- Fontmap.GS lookup path for Helvetica-Narrow-Bold-Oblique font fixed (bug #1517518)
483aca
483aca
* Wed Nov 29 2017 Tom Callaway <spot@fedoraproject.org> - 9.22-2
483aca
- apply post 9.22 upstream commit to restore flushpage operator (xdvi needs it)
483aca
483aca
* Wed Sep 27 2017 David Kaspar [Dee'Kej] <dkaspar@redhat.com> - 9.22-1
483aca
- Rebase to latest upstream version (no API/ABI changes according to upstream)
483aca
483aca
* Wed Sep 27 2017 David Kaspar [Dee'Kej] <dkaspar@redhat.com> - 9.20-14
483aca
- Rebuilt with updated 'search path' for fonts (bug #1500105)
483aca
483aca
* Wed Sep 27 2017 David Kaspar [Dee'Kej] <dkaspar@redhat.com> - 9.20-13
483aca
- Rebuilt with new 'urw-base35-fonts' package (bug #1494563)
483aca
483aca
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 9.20-12
483aca
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
483aca
483aca
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 9.20-11
483aca
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
483aca
483aca
* Wed May 03 2017 David Kaspar [Dee'Kej] <dkaspar@redhat.com> - 9.20-10
483aca
- Added security fix for CVE-2017-7975 (bug #1443940)
483aca
483aca
* Thu Apr 27 2017 David Kaspar [Dee'Kej] <dkaspar@redhat.com> - 9.20-9
483aca
- Added security fixes for:
483aca
  - CVE-2016-10217 (bug #1441564)
483aca
  - CVE-2016-10218 (bug #1441568)
483aca
  - CVE-2016-10219 (bug #1441569)
483aca
  - CVE-2016-10220 (bug #1441571)
483aca
  - CVE-2017-5951  (bug #1441572)
483aca
  - CVE-2017-8291  (bug #1446063)
483aca
483aca
* Thu Apr 06 2017 David Kaspar [Dee'Kej] <dkaspar@redhat.com> - 9.20-8
483aca
- Added security fix for CVE-2017-7207 (bug #1434497)
483aca
483aca
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 9.20-7
483aca
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
483aca
483aca
* Tue Jan 24 2017 David Kaspar [Dee'Kej] <dkaspar@redhat.com> - 9.20-6
483aca
- Remove and (re-implement) ConvertUTF.c (bug #1404933)
483aca
- Added security fix for CVE-2016-9601 (bug #1410021)
483aca
483aca
* Thu Nov  3 2016 David Kaspar [Dee'Kej] <dkaspar@redhat.com> - 9.20-5
483aca
- Added fix to avoid SIGSEGV for some *.ps files. More info here:
483aca
  <http://bugs.ghostscript.com/show_bug.cgi?id=697286>
483aca
483aca
* Tue Nov  1 2016 David Kaspar [Dee'Kej] <dkaspar@redhat.com> - 9.20-4
483aca
- Added security fix for CVE-2016-7977 (bug #1380415)
483aca
483aca
* Tue Nov  1 2016 David Kaspar [Dee'Kej] <dkaspar@redhat.com> - 9.20-3
483aca
- Added security fix for CVE-2016-8602 (bug #1383940)
483aca
483aca
* Fri Oct  7 2016 David Kaspar [Dee'Kej] <dkaspar@redhat.com> - 9.20-2
483aca
- Added security fixes for:
483aca
  - CVE-2016-7979 (bug #1382305)
483aca
  - CVE-2016-7976 (bug #1382294)
483aca
  - CVE-2016-7978 (bug #1382300)
483aca
483aca
* Fri Oct  7 2016 David Kaspar [Dee'Kej] <dkaspar@redhat.com> - 9.20-1
483aca
- Rebase to latest ghostscript-9.20. Major changes in this rebase:
483aca
  - OpenJPEG support has been re-enabled
483aca
  - ijs-config custom tool has been removed (pkg-config is used by default)
483aca
  - old irrelevant patches removed (changes are part of upstream release now)
483aca
  - remaining patches has been updated & renamed
483aca
  - no API/ABI changes according to upstream
483aca
483aca
* Tue Oct  4 2016 David Kaspar [Dee'Kej] <dkaspar@redhat.com> - 9.16-5
483aca
- [TEMPORARY] Support for OpenJPEG disabled for builds to pass.
483aca
- Security fix for BZ #1380416 backported.
483aca
483aca
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 9.16-4
483aca
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
483aca
483aca
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 9.16-3
483aca
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
483aca
483aca
* Tue Mar 31 2015 Tim Waugh <twaugh@redhat.com> 9.16-2
483aca
- Use old names for urw-fonts (bug #1207577).
483aca
483aca
* Mon Mar 30 2015 Tim Waugh <twaugh@redhat.com> 9.16-1
483aca
- 9.16.
483aca
483aca
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 9.15-7
483aca
- Rebuilt for Fedora 23 Change
483aca
  https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
483aca
483aca
* Fri Dec 19 2014 Tim Waugh <twaugh@redhat.com> 9.15-6
483aca
- Don't ship X11.so in both the main package and the x11 sub-package.
483aca
483aca
* Fri Dec 19 2014 Rex Dieter <rdieter@fedoraproject.org> 9.15-5
483aca
- fix %%_isa macro usage
483aca
483aca
* Thu Dec 18 2014 Tim Waugh <twaugh@redhat.com> 9.15-4
483aca
- New ghostscript-x11 package for X11 driver (bug #148939).
483aca
- Ghostscript not requiring X11 is now in ghostscript-core.
483aca
- The 'ghostscript' package requires both of these.
483aca
483aca
* Tue Oct  7 2014 Tim Waugh <twaugh@redhat.com> 9.15-3
483aca
- Avoid shipping ramfs source as its license is unclear. Similarly
483aca
  with some documentation and example code (bug #1149617).
483aca
483aca
* Fri Oct  3 2014 Tim Waugh <twaugh@redhat.com> 9.15-2
483aca
- Use system openjpeg2 library so we can decode JPX (upstream
483aca
  bug #695557).
483aca
483aca
* Tue Sep 23 2014 Tim Waugh <twaugh@redhat.com> 9.15-1
483aca
- 9.15. No longer need iccprofiles-initdir, gs694154, crash, sys-zlib,
483aca
  or trio-g patches.
483aca
483aca
* Tue Sep  9 2014 Tim Waugh <twaugh@redhat.com>
483aca
- No need to apply patch for already-applied gdevcups-debug-uninit.
483aca
483aca
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 9.14-6
483aca
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
483aca
483aca
* Fri Aug 15 2014 Tim Waugh <twaugh@redhat.com> 9.14-5
483aca
- Fix double-to-string conversion on e.g. ppc64 (bug #1014772).
483aca
483aca
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 9.14-4
483aca
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
483aca
483aca
* Wed Jun  4 2014 Tim Waugh <twaugh@redhat.com> 9.14-3
483aca
- Applied patch from upstream to fix memory handling issue that could
483aca
  lead to crashes (bug #1087071).
483aca
483aca
* Tue Jun 03 2014 Ralf Corsépius <corsepiu@fedoraproject.org> 9.14-2
483aca
- Add %%{_datadir}/ghostscript/%%{gs_dot_ver}/Resource/IdiomSet
483aca
  (RHBZ #1100338).
483aca
483aca
* Thu Mar 27 2014 Tim Waugh <twaugh@redhat.com> 9.14-1
483aca
- 9.14.
483aca
483aca
* Wed Mar 26 2014 Tim Waugh <twaugh@redhat.com> 9.12-1
483aca
- 9.12 (bug #1080814).
483aca
- Fix build when using system zlib.
483aca
483aca
* Thu Feb 27 2014 Tim Waugh <twaugh@redhat.com> 9.10-6
483aca
- Use upstream patch to fix duplex for some devices (bug #1068896).
483aca
483aca
* Tue Dec 10 2013 Tim Waugh <twaugh@redhat.com> 9.10-5
483aca
- Use upstream patches to fix gs segfaults (bug #1026428, bug #1039718).
483aca
483aca
* Wed Sep 25 2013 Tim Waugh <twaugh@redhat.com> 9.09-4
483aca
- Regenerate tarball (bug #1000387).
483aca
483aca
* Wed Aug 28 2013 Tim Waugh <twaugh@redhat.com> 9.09-3
483aca
- Remove jpegxr to ensure it isn't built (bug #1000387).
483aca
483aca
* Thu Aug 22 2013 Tim Waugh <twaugh@redhat.com> 9.09-2
483aca
- Fixed character set conversion issue in pdfwrite (bug #999927).
483aca
483aca
* Thu Aug 22 2013 Tim Waugh <twaugh@redhat.com> 9.09-1
483aca
- 9.09.
483aca
483aca
* Sat Aug 17 2013 Tim Waugh <twaugh@redhat.com> 9.09-0.rc1.1
483aca
- 9.09rc1.
483aca
483aca
* Thu Aug 15 2013 Tim Waugh <twaugh@redhat.com> 9.08-1
483aca
- 9.08.
483aca
483aca
* Mon Aug 12 2013 Tim Waugh <twaugh@redhat.com> 9.08-0.rc1.1
483aca
- 9.08rc1.  CUPS filters moved to the cups-filters package.
483aca
483aca
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 9.07-12
483aca
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
483aca
483aca
* Thu Jul 18 2013 Tim Waugh <twaugh@redhat.com> 9.07-11
483aca
- Remove bundled (and unused) lcms source.
483aca
- Fixed license tag (AGPLv3+).
483aca
483aca
* Wed Jul 17 2013 Tim Waugh <twaugh@redhat.com> 9.07-10
483aca
- Added in missing part of gs_sprintf backport: add in the header to
483aca
  stdio_.h. Without this there are problems with va_args on some
483aca
  platforms (bug #979681).
483aca
483aca
* Mon Jul  8 2013 Tim Waugh <twaugh@redhat.com> 9.07-9
483aca
- Upstream patch from bug #693921 to avoid zfapi crash (bug #969785).
483aca
483aca
* Mon Jul  1 2013 Tim Waugh <twaugh@redhat.com> 9.07-8
483aca
- Use correct colord device ID in gstoraster.
483aca
483aca
* Mon Jul  1 2013 Tim Waugh <twaugh@redhat.com> 9.07-7
483aca
- Use more caution when converting floats to strings (bug #980085).
483aca
483aca
* Tue Jun 18 2013 Tim Waugh <twaugh@redhat.com> 9.07-6
483aca
- Upstream patch from bug #690692 to handle strange fonts (bug #969660).
483aca
483aca
* Fri May 17 2013 Tim Waugh <twaugh@redhat.com> 9.07-5
483aca
- Remove pdfopt man pages which were mistakenly left in (bug #963882).
483aca
483aca
* Thu May 16 2013 Tim Waugh <twaugh@redhat.com> 9.07-4
483aca
- Upstream patch to fix pdfwrite segfault (bug #962120).
483aca
483aca
* Thu May  9 2013 Tim Waugh <twaugh@redhat.com> - 9.07-3
483aca
- Back-ported locale fix (bug #961149).
483aca
483aca
* Thu Apr 25 2013 Tim Waugh <twaugh@redhat.com>
483aca
- Unowned directories (bug #902525).
483aca
483aca
* Mon Apr  8 2013 Tim Waugh <twaugh@redhat.com> - 9.07-2
483aca
- Rebuilt.
483aca
483aca
* Fri Mar  8 2013 Tim Waugh <twaugh@redhat.com> - 9.07-1
483aca
- 9.07.
483aca
483aca
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 9.06-7
483aca
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
483aca
483aca
* Fri Jan 18 2013 Adam Tkac <atkac redhat com> - 9.06-6
483aca
- rebuild due to "jpeg8-ABI" feature drop
483aca
483aca
* Fri Jan  4 2013 Tim Waugh <twaugh@redhat.com> - 9.06-5
483aca
- Updated build requirement from gtk2-devel to gtk3-devel so that gsx
483aca
  gets built using the correct loader (bug #884483).
483aca
483aca
* Fri Dec 21 2012 Adam Tkac <atkac redhat com> - 9.06-4
483aca
- rebuild against new libjpeg
483aca
483aca
* Thu Sep 27 2012 Tim Waugh <twaugh@redhat.com> - 9.06-3
483aca
- Remove cups/libs to avoid bundling, although it isn't built in any
483aca
  case.
483aca
483aca
* Tue Sep  4 2012 Tim Waugh <twaugh@redhat.com> - 9.06-2
483aca
- Fixed encoding of German ps2pdf man page (bug #853764).
483aca
483aca
* Wed Aug  8 2012 Tim Waugh <twaugh@redhat.com> - 9.06-1
483aca
- 9.06.
483aca
483aca
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 9.05-5
483aca
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
483aca
483aca
* Tue Jul 17 2012 Tim Waugh <twaugh@redhat.com> - 9.05-4
483aca
- Ship pkg-config file for ijs (bug #840830).
483aca
483aca
* Mon Apr 30 2012 Tim Waugh <twaugh@redhat.com> - 9.05-3
483aca
- Removed more bundled packages (bug #816747).
483aca
- Fixed missing error check when setting ICC profile.
483aca
483aca
* Thu Apr 26 2012 Jon Ciesla <limburgher@gmail.com> - 9.05-2
483aca
- Fixed encodings and changelog version for merge review BZ 225795.
483aca
483aca
* Thu Feb  9 2012 Tim Waugh <twaugh@redhat.com> 9.05-1.1
483aca
- Avoid mixed tabs and spaces in spec file.
483aca
483aca
* Thu Feb  9 2012 Tim Waugh <twaugh@redhat.com> 9.05-1
483aca
- 9.05.
483aca
483aca
* Fri Jan  6 2012 Tim Waugh <twaugh@redhat.com> 9.04-9
483aca
- Use %%_cups_serverbin macro.
483aca
483aca
* Fri Jan  6 2012 Tim Waugh <twaugh@redhat.com> 9.04-8
483aca
- Rebuilt for GCC 4.7.
483aca
483aca
* Tue Nov  8 2011 Tim Waugh <twaugh@redhat.com> 9.04-7
483aca
- Applied fix for type 1 font copying code SEAC scanner (bug #728710).
483aca
483aca
* Mon Nov  7 2011 Tim Waugh <twaugh@redhat.com> 9.04-6
483aca
- Rebuilt for new libpng.
483aca
483aca
* Tue Nov  1 2011 Tim Waugh <twaugh@redhat.com> 9.04-5
483aca
- Applied upstream fix for skipping "cached" outline glyphs (bug #742349).
483aca
483aca
* Wed Aug 31 2011 Tim Waugh <twaugh@redhat.com> 9.04-4
483aca
- Fixed typo (EXTRAFLAGS -> EXTRACFLAGS).
483aca
483aca
* Mon Aug 22 2011 Tim Waugh <twaugh@redhat.com> 9.04-3
483aca
- Updated upstream fix for gdevcups RGBW handling (Ghostscript bug #691922).
483aca
483aca
* Tue Aug 16 2011 Tim Waugh <twaugh@redhat.com> 9.04-2
483aca
- Applied upstream fix for gdevcups handling of RGBW (Ghostscript
483aca
  bug #691922).
483aca
483aca
* Mon Aug  1 2011 Tim Waugh <twaugh@redhat.com> 9.04-1
483aca
- 9.04.
483aca
483aca
* Mon Aug  1 2011 Tim Waugh <twaugh@redhat.com> 9.02-5
483aca
- No longer need jbig2-image-refcount patch.
483aca
- Fixed error reporting in the gstoraster filter.
483aca
483aca
* Wed May 25 2011 Tim Waugh <twaugh@redhat.com> 9.02-4
483aca
- colord is optional (bug #706619).
483aca
483aca
* Tue Apr 12 2011 Tim Waugh <twaugh@redhat.com> 9.02-3
483aca
- Prevent segfault when running gstoraster outside CUPS.
483aca
483aca
* Thu Apr  7 2011 Tim Waugh <twaugh@redhat.com>
483aca
- Remove bundled expat directory.  Not used, but this makes it
483aca
  clearer.
483aca
483aca
* Wed Apr  6 2011 Tim Waugh <twaugh@redhat.com> 9.02-2
483aca
- pxl: match landscape page sizes (bug #692165).
483aca
483aca
* Mon Apr  4 2011 Tim Waugh <twaugh@redhat.com>
483aca
- Fixed source URL.
483aca
483aca
* Mon Apr  4 2011 Tim Waugh <twaugh@redhat.com> 9.02-1
483aca
- 9.02.
483aca
483aca
* Thu Mar 10 2011 Tim Waugh <twaugh@redhat.com> 9.01-3
483aca
- colord support: prefix printer name with "cups-" to get device ID.
483aca
483aca
* Thu Feb 10 2011 Richard Hughes <rhughes@redhat.com> 9.01-2
483aca
- Backport a patch from svn trunk to enable colord support.
483aca
483aca
* Thu Feb 10 2011 Tim Waugh <twaugh@redhat.com> 9.01-1
483aca
- 9.01.  No longer needed gdevcups-691733, glyph-stretch-691920,
483aca
  icc-fix, scan_token, or system-jasper patches.
483aca
483aca
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 9.00-14
483aca
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
483aca
483aca
* Wed Feb  2 2011 Tim Waugh <twaugh@redhat.com> 9.00-13
483aca
- Applied fix for upstream bug #691920.
483aca
483aca
* Fri Jan 28 2011 Tim Waugh <twaugh@redhat.com> 9.00-12
483aca
- Use poppler-data for CMaps (bug #630632).
483aca
483aca
* Mon Jan 17 2011 Tim Waugh <twaugh@redhat.com> 9.00-11
483aca
- Fixed macro in comment.
483aca
- Include full source URL.
483aca
483aca
* Fri Jan 14 2011 Tim Waugh <twaugh@redhat.com> 9.00-10
483aca
- Avoid symbol clash with scan_token (bug #590914).
483aca
483aca
* Mon Jan 10 2011 Tim Waugh <twaugh@redhat.com> 9.00-9
483aca
- Replaced width-and-height patch with the one actually used upstream.
483aca
483aca
* Fri Jan  7 2011 Tim Waugh <twaugh@redhat.com> 9.00-8
483aca
- Applied upstream ICC fix (bug #655449).
483aca
- gdevcups: use correct width and height values when allocating memory
483aca
  (upstream bug 691733).
483aca
483aca
* Fri Nov 26 2010 Tim Waugh <twaugh@redhat.com> 9.00-7
483aca
- Fixed more summaries ending with ".".
483aca
483aca
* Thu Oct 21 2010 Tim Waugh <twaugh@redhat.com> 9.00-6
483aca
- Own more directories (bug #645075).
483aca
483aca
* Thu Oct 14 2010 Tim Waugh <twaugh@redhat.com> 9.00-5
483aca
- gdevcups: don't use uninitialized variables in debugging output
483aca
  (Ghostscript bug #691683).
483aca
483aca
* Fri Oct  1 2010 Tim Waugh <twaugh@redhat.com> 9.00-4
483aca
- Reverted incorrect change introduced to fix bug #635786.
483aca
483aca
* Thu Sep 30 2010 Tim Waugh <twaugh@redhat.com> 9.00-3
483aca
- Don't use carriage return in ps2epsi output (bug #635786).
483aca
- Include more documentation (bug #634354).
483aca
483aca
* Wed Sep 29 2010 jkeating - 9.00-2
483aca
- Rebuilt for gcc bug 634757
483aca
483aca
* Thu Sep 23 2010 Tim Waugh <twaugh@redhat.com> 9.00-1
483aca
- Updated to 9.00.  No longer need -P-, CVE-2009-4270, CVE-2010-1628,
483aca
  SEARCH_HERE_FIRST, bbox-close, cups-realloc-color-depth,
483aca
  epstopdf-failure, fPIC, gdevcups-ripcache, iname-segfault, ldfalgs,
483aca
  pdf2dsc, pdftoraster-exit, tif-fail-close, tiff-default-strip-size,
483aca
  or tiff-fixes patches.
483aca
483aca
* Mon Sep 13 2010 Tim Waugh <twaugh@redhat.com> 8.71-16
483aca
- Pulled in gs_fonts.ps modification for .runlibfileifexists from
483aca
  OpenSUSE package (bug #610301).
483aca
483aca
* Fri Sep  3 2010 Tim Waugh <twaugh@redhat.com> 8.71-15
483aca
- Restored Fontmap.local patch, incorrectly dropped after
483aca
  ghostscript-8.15.4-3 (bug #610301).
483aca
- Applied patch to let gdevcups use automatic memory allocation.  Use
483aca
  RIPCache=auto in /etc/cups/cupsd.conf to enable.
483aca
- Applied patch to fix NULL dereference in bbox driver (bug #591624).
483aca
- Applied upstream patch to fix iname.c segfault (bug #465311).
483aca
483aca
* Thu Aug 26 2010 Tim Waugh <twaugh@redhat.com> 8.71-14
483aca
- Avoid epstopdf failure using upstream patch (bug #627390).
483aca
- More upstream fixes for bug #599564.
483aca
483aca
* Wed Aug 25 2010 Tim Waugh <twaugh@redhat.com> 8.71-13
483aca
- Fix implementation of -P- (bug #599564).
483aca
- Use -P- and -dSAFER in scripts (bug #599564).
483aca
483aca
* Wed Aug 25 2010 Tim Waugh <twaugh@redhat.com> 8.71-12
483aca
- Change SEARCH_HERE_FIRST default to make -P- default instead of -P
483aca
  (bug #599564).
483aca
- Removed redundant gs-executable patch (bug #502550).
483aca
483aca
* Thu Aug  5 2010 Tim Waugh <twaugh@redhat.com> 8.71-11
483aca
- Avoid another NULL pointer dereference in jbig2 code (bug #621569).
483aca
483aca
* Fri Jul 16 2010 Tim Waugh <twaugh@redhat.com> 8.71-10
483aca
- Applied patch to fix CVE-2010-1628 (memory corruption at PS stack
483aca
  overflow, bug #592492).
483aca
483aca
* Tue Mar 16 2010 Tim Waugh <twaugh@redhat.com> 8.71-9
483aca
- Backported some more TIFF fixes (bug #573970).
483aca
- Use upstream fix for TIFF default strip size (bug #571520).
483aca
483aca
* Mon Mar 15 2010 Tim Waugh <twaugh@redhat.com> 8.71-8
483aca
- Restore the TIFF default strip size of 0 (bug #571520).
483aca
- Don't segfault closing tiffg3 device if opening failed (bug #571520).
483aca
- Don't revert gdevcups y-axis change (bug #541604).
483aca
- Reallocate memory in gdevcups when color depth changes (bug #563313).
483aca
483aca
* Fri Mar  5 2010 Tim Waugh <twaugh@redhat.com> 8.71-7
483aca
- Don't own the %%{_datadir}/ghostscript or
483aca
  %%{_datadir}/ghostscript/conf.d directories as the filesystem
483aca
  package already does (bug #569442).
483aca
483aca
* Wed Mar  3 2010 Tim Waugh <twaugh@redhat.com> 8.71-6
483aca
- Fixed summary.
483aca
- Fixed macros in changelog.
483aca
- Avoid mixed spaces and tabs.
483aca
- Ship COPYING file.
483aca
- Added comments for all patches.
483aca
- More consistent macro use.
483aca
483aca
* Mon Feb 22 2010 Tim Waugh <twaugh@redhat.com> 8.71-5
483aca
- The doc subpackage is now noarch (bug #567179).
483aca
483aca
* Sat Feb 20 2010 Tim Waugh <twaugh@redhat.com> 8.71-4
483aca
- Actually revert the upstream gdevcups changes (bug #563313).
483aca
- Fixed pdf2dsc.ps (bug #565935).
483aca
- Use fixed patch for LDFLAGS to make sure libgs.so gets a soname
483aca
  (bug #565935).
483aca
483aca
* Fri Feb 19 2010 Tim Waugh <twaugh@redhat.com> 8.71-3
483aca
- Fixed LDFLAGS when building dynamically linked executables (bug #565935).
483aca
483aca
* Wed Feb 17 2010 Tim Waugh <twaugh@redhat.com> 8.71-2
483aca
- Use system libtiff.
483aca
483aca
* Wed Feb 17 2010 Tim Waugh <twaugh@redhat.com> 8.71-1
483aca
- 8.71 (bug #565935).
483aca
483aca
* Tue Feb 16 2010 Tim Waugh <twaugh@redhat.com> 8.70-7
483aca
- Reverted gdevcups duplex changes as they cause a regression
483aca
  (see bug #563313).
483aca
483aca
* Mon Jan 25 2010 Tim Waugh <twaugh@redhat.com> 8.70-6
483aca
- Fixed pdftoraster so that it waits for its sub-process to exit.
483aca
- Another gdevcups duplex fix from upstream revision 10631
483aca
  (bug #541604).
483aca
483aca
* Fri Jan 22 2010 Tim Waugh <twaugh@redhat.com> 8.70-5
483aca
- Don't build static library for ijs (bug #556051).
483aca
483aca
* Thu Jan 21 2010 Tim Waugh <twaugh@redhat.com> 8.70-4
483aca
- Fixed gdevcups duplex output (bug #541604) by backporting upstream
483aca
  revision 10625.
483aca
483aca
* Thu Dec 24 2009 Tim Waugh <twaugh@redhat.com> 8.70-3
483aca
- Don't ship libtool la files (bug #542674).
483aca
- Fix debugging output from gdevcups (CVE-2009-4270, bug #540760).
483aca
- Harden ghostscript's debugging output functions (bug #540760).
483aca
483aca
* Thu Oct 15 2009 Tim Waugh <twaugh@redhat.com> 8.70-2
483aca
- New cups sub-package for pstoraster/pdftoraster/pstopxl.
483aca
483aca
* Mon Aug  3 2009 Tim Waugh <twaugh@redhat.com> 8.70-1
483aca
- 8.70.
483aca
- License has changed to GPLv3+.  Packages containing programs that
483aca
  link to libgs/libijs are:
483aca
  - foomatic (GPLv2+)
483aca
  - libspectre (GPLv2+)
483aca
  - ImageMagick (ImageMagick, listed on Licensing wiki page under
483aca
    "Good Licenses" and marked as GPLv3 compat)
483aca
  - gutenprint (GPLv2+)
483aca
483aca
* Mon Aug  3 2009 Tim Waugh <twaugh@redhat.com> 8.64-12
483aca
- Moved examples to doc subpackage (bug #515167).
483aca
- Converted spec file to UTF-8.
483aca
483aca
* Thu Jul 30 2009 Tim Waugh <twaugh@redhat.com> 8.64-11
483aca
- Fixed CVE-2009-0583,0584 patch by using 255 as the maximum number of
483aca
  points, not 100, and by not treating a missing black point tag as an
483aca
  error (bug #487744).
483aca
483aca
* Thu Jul 30 2009 Rex Dieter <rdieter@fedoraproject.org> - 8.64-10
483aca
- License: GPLv2 and Redistributable, no modification permitted (bug #487510)
483aca
483aca
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 8.64-9
483aca
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
483aca
483aca
* Wed Jun 10 2009 Tim Waugh <twaugh@redhat.com> 8.64-8
483aca
- Fix scripts so they don't get broken on install (bug #502550).
483aca
483aca
* Thu Jun  4 2009 Tim Waugh <twaugh@redhat.com> 8.64-7
483aca
- Applied patch to fix NULL dereference in JBIG2 decoder (bug #503995).
483aca
483aca
* Wed Apr 15 2009 Tim Waugh <twaugh@redhat.com> 8.64-6
483aca
- Applied patch to fix CVE-2009-0792 (bug #491853).
483aca
- Applied patch to fix CVE-2009-0196 (bug #493379).
483aca
483aca
* Fri Mar 20 2009 Tim Waugh <twaugh@redhat.com> 8.64-5
483aca
- Applied patch to fix CVE-2009-0583 (bug #487742) and CVE-2009-0584
483aca
  (bug #487744).
483aca
483aca
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 8.64-4
483aca
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
483aca
483aca
* Tue Feb 17 2009 Tim Waugh <twaugh@redhat.com> 8.64-3
483aca
- Fix bitcmyk driver (bug #486644).
483aca
483aca
* Wed Feb  4 2009 Tim Waugh <twaugh@redhat.com> 8.64-2
483aca
- 8.64 (bug #483958).
483aca
- Removed trade marks to avoid any potential confusion.
483aca
483aca
* Fri Oct 17 2008 Tim Waugh <twaugh@redhat.com>
483aca
- Removed last patch (unsuccessful).
483aca
483aca
* Fri Oct 17 2008 Tim Waugh <twaugh@redhat.com> 8.63-4
483aca
- Try out a work-around for bug #465311.
483aca
483aca
* Wed Oct 15 2008 Tim Waugh <twaugh@redhat.com> 8.63-3
483aca
- Don't ship fixmswrd.pl as it pulls in perl (bug #463948).
483aca
483aca
* Tue Oct 14 2008 Tim Waugh <twaugh@redhat.com> 8.63-2
483aca
- Split out a doc sub-package (bug #466507).
483aca
483aca
* Mon Aug  4 2008 Tim Waugh <twaugh@redhat.com> 8.63-1
483aca
- 8.63.  No longer need r8591 or incomplete-ccittfax patches.
483aca
- Compile without strict aliasing opts due to warnings across several
483aca
  files.
483aca
- Don't run autogen.sh for main package, just for ijs which doesn't
483aca
  ship with a configure script.
483aca
483aca
* Mon Jun 23 2008 Tim Waugh <twaugh@redhat.com> 8.62-4
483aca
- Applied patch to work around bug #229174.
483aca
- Applied patch from upstream to fix box_fill_path for shfill (bug #452348).
483aca
483aca
* Mon Mar 31 2008 Tim Waugh <twaugh@redhat.com> 8.62-3
483aca
- Fix pksmraw output (bug #308211).
483aca
483aca
* Tue Mar  4 2008 Tim Waugh <twaugh@redhat.com> 8.62-2
483aca
- No longer need CVE-2008-0411 patch.
483aca
- Don't ship URW fonts; we already have them.
483aca
483aca
* Tue Mar  4 2008 Tim Waugh <twaugh@redhat.com> 8.62-1
483aca
- 8.62.  No longer need IJS KRGB patch, or patch for gs bug 689577.
483aca
483aca
* Wed Feb 27 2008 Tim Waugh <twaugh@redhat.com> 8.61-10
483aca
- Applied patch to fix CVE-2008-0411 (bug #431536).
483aca
483aca
* Fri Feb 22 2008 Tim Waugh <twaugh@redhat.com> 8.61-9
483aca
- Build with jasper again (bug #433897).  Build requires jasper-devel, and
483aca
  a patch to remove jas_set_error_cb reference.
483aca
483aca
* Wed Feb 13 2008 Tim Waugh <twaugh@redhat.com> 8.61-8
483aca
- Rebuild for GCC 4.3.
483aca
483aca
* Mon Jan 28 2008 Tim Waugh <twaugh@redhat.com> 8.61-7
483aca
- Don't build with jasper support.
483aca
- Remove bundled libraries.
483aca
483aca
* Tue Dec 11 2007 Tim Waugh <twaugh@redhat.com> 8.61-6
483aca
- Applied upstream patch for bug #416321.
483aca
483aca
* Fri Nov 30 2007 Tim Waugh <twaugh@redhat.com> 8.61-5
483aca
- Fixed runlibfileifexists patch.
483aca
483aca
* Fri Nov 30 2007 Tim Waugh <twaugh@redhat.com> 8.61-4
483aca
- Revert previous change, but define .runlibfileifexists, not just
483aca
  runlibfileifexists.
483aca
483aca
* Wed Nov 28 2007 Tim Waugh <twaugh@redhat.com> 8.61-3
483aca
- No longer need runlibfileifexists.
483aca
- Use runlibfile in cidfmap.
483aca
483aca
* Wed Nov 28 2007 Tim Waugh <twaugh@redhat.com> 8.61-2
483aca
- Add /usr/share/fonts to fontpath (bug #402551).
483aca
- Restore cidfmap-switching bits, except for FAPIcidfmap which is no
483aca
  longer used.
483aca
- Add runlibfileifexists to gs_init.ps.
483aca
- Build with --disable-compile-inits (bug #402501).
483aca
483aca
* Fri Nov 23 2007 Tim Waugh <twaugh@redhat.com> 8.61-1
483aca
- 8.61.
483aca
483aca
* Tue Oct 23 2007 Tim Waugh <twaugh@redhat.com> 8.60-5
483aca
- Applied patch from upstream to fix CVE-2007-2721 (bug #346511).
483aca
483aca
* Tue Oct  9 2007 Tim Waugh <twaugh@redhat.com> 8.60-4
483aca
- Marked localized man pages as %%lang (bug #322321).
483aca
483aca
* Thu Sep 27 2007 Tim Waugh <twaugh@redhat.com> 8.60-3
483aca
- Back-ported mkstemp64 patch (bug #308211).
483aca
483aca
* Thu Aug 23 2007 Tim Waugh <twaugh@redhat.com> 8.60-2
483aca
- More specific license tag.
483aca
483aca
* Fri Aug  3 2007 Tim Waugh <twaugh@redhat.com> 8.60-1
483aca
- 8.60.
483aca
483aca
* Mon Jul 16 2007 Tim Waugh <twaugh@redhat.com> 8.60-0.r8112.2
483aca
- Own %%{_libdir}/ghostscript (bug #246026).
483aca
483aca
* Tue Jul 10 2007 Tim Waugh <twaugh@redhat.com> 8.60-0.r8112.1
483aca
- 8.60 snapshot from svn.  Patches dropped:
483aca
  - big-cmap-post
483aca
  - split-cidfnmap
483aca
  - exactly-enable-cidfnmap
483aca
  - Fontmap.local
483aca
  No longer needed:
483aca
  - gxcht-64bit-crash
483aca
483aca
* Tue Apr 17 2007 Tim Waugh <twaugh@redhat.com> 8.15.4-3
483aca
- Apply fonts in CIDFnmap even if the same fontnames are already registered
483aca
  (bug #163231).
483aca
- New file CIDFmap (bug #233966).
483aca
- Allow local overrides for FAPIcidfmap, cidfmap and Fontmap (bug #233966).
483aca
483aca
* Tue Apr  3 2007 Tim Waugh <twaugh@redhat.com> 8.15.4-2
483aca
- Fixed configuration file locations (bug #233966).
483aca
483aca
* Wed Mar 14 2007 Tim Waugh <twaugh@redhat.com> 8.15.4-1
483aca
- 8.15.4.
483aca
483aca
* Thu Jan 25 2007 Tim Waugh <twaugh@redhat.com> 8.15.3-7
483aca
- dvipdf script fixes (bug #88906).
483aca
- Moved libijs.so and libgs.so into devel package (bug #203623).
483aca
483aca
* Wed Jan 24 2007 Tim Waugh <twaugh@redhat.com> 8.15.3-6
483aca
- Configure with --with-drivers=ALL since the advertised default is not
483aca
  what gets used (bug #223819).
483aca
483aca
* Thu Jan 18 2007 Tim Waugh <twaugh@redhat.com> 8.15.3-5
483aca
- Backported gxcht 64bit crash fix from GPL trunk (bug #177763).
483aca
483aca
* Fri Jan 12 2007 Tim Waugh <twaugh@redhat.com> 8.15.3-4
483aca
- Own cjkv directory (bug #221380, bug #222375).
483aca
483aca
* Tue Dec  5 2006 Tim Waugh <twaugh@redhat.com> 8.15.3-3
483aca
- Added split-cidfnmap patch (bug #194592).
483aca
483aca
* Thu Nov 16 2006 Tim Waugh <twaugh@redhat.com> 8.15.3-2
483aca
- 8.15.3.  No longer need gtk2, ps2epsi, badc, pagesize,
483aca
  use-external-freetype, split-font-configuration or cjkv patches.
483aca
- Renumbered patches.
483aca
483aca
* Tue Oct  3 2006 Tim Waugh <twaugh@redhat.com> 8.15.2-9
483aca
- Apply CJKV patch from svn164:165 plus the fix from svn173:174 (bug #194592,
483aca
  bug #203712, possibly bug #167596).
483aca
483aca
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 8.15.2-8.1
483aca
- rebuild
483aca
483aca
* Fri Jun 23 2006 Tim Waugh <twaugh@redhat.com> 8.15.2-8
483aca
- Revert CJKV patch.
483aca
483aca
* Wed Jun 14 2006 Tomas Mraz <tmraz@redhat.com> - 8.15.2-7
483aca
- rebuilt with new gnutls
483aca
483aca
* Tue Jun 13 2006 Tim Waugh <twaugh@redhat.com> 8.15.2-6
483aca
- Undo svn sync.
483aca
- Apply CJKV patch from svn164:165.
483aca
483aca
* Fri Jun  9 2006 Tim Waugh <twaugh@redhat.com> 8.15.2-5
483aca
- Sync to svn165.
483aca
483aca
* Fri May 26 2006 Tim Waugh <twaugh@redhat.com> 8.15.2-4
483aca
- Fix ijs-config not to have multilib conflicts (bug #192672)
483aca
483aca
* Tue May  2 2006 Tim Waugh <twaugh@redhat.com> 8.15.2-3
483aca
- Remove adobe-cmaps and acro5-cmaps, since latest CMaps are already
483aca
  included (bug #190463).
483aca
483aca
* Tue Apr 25 2006 Tim Waugh <twaugh@redhat.com> 8.15.2-2
483aca
- 8.15.2.
483aca
- No longer need build, krgb, pdfwrite, str1570 patches.
483aca
483aca
* Mon Apr 24 2006 Tim Waugh <twaugh@redhat.com> 8.15.1-10
483aca
- Fix emacs interaction (bug #189321, STR #1570).
483aca
483aca
* Mon Apr 10 2006 Tim Waugh <twaugh@redhat.com> 8.15.1-9
483aca
- Add %%{_datadir}/fonts/japanese to font path (bug #188448).
483aca
- Spec file cleanups (bug #188066).
483aca
483aca
* Sat Apr  8 2006 Tim Waugh <twaugh@redhat.com>
483aca
- Build requires libtool (bug #188341).
483aca
483aca
* Thu Apr  6 2006 Tim Waugh <twaugh@redhat.com> 8.15.1-8
483aca
- Fix pdfwrite (bug #187834).
483aca
- CUPS filters go in /usr/lib/cups/filter even on lib64 platforms.
483aca
483aca
* Thu Mar  2 2006 Tim Waugh <twaugh@redhat.com> 8.15.1-7
483aca
- BuildRequires: gnutls-devel
483aca
- Updated KRGB patch for gdevijs.
483aca
483aca
* Tue Feb 28 2006 Karsten Hopp <karsten@redhat.de> 8.15.1-6
483aca
- BuildRequires: libXt-devel
483aca
483aca
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 8.15.1-5.2
483aca
- bump again for double-long bug on ppc(64)
483aca
483aca
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 8.15.1-5.1
483aca
- rebuilt for new gcc4.1 snapshot and glibc changes
483aca
483aca
* Mon Jan 30 2006 Tim Waugh <twaugh@redhat.com> 8.15.1-5
483aca
- Updated adobe-cmaps to 200406 (bug #173613).
483aca
483aca
* Fri Jan 27 2006 Tim Waugh <twaugh@redhat.com> 8.15.1-4
483aca
- Support reading a big cmap/post table from a TrueType font.
483aca
483aca
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
483aca
- rebuilt
483aca
483aca
* Wed Nov  9 2005 Tomas Mraz <tmraz@redhat.com> 8.15.1-3
483aca
- Build does not explicitly require xorg-x11-devel.
483aca
483aca
* Wed Nov  9 2005 Tomas Mraz <tmraz@redhat.com> 8.15.1-2
483aca
- rebuilt with new openssl
483aca
483aca
* Mon Sep 26 2005 Tim Waugh <twaugh@redhat.com> 8.15.1-1
483aca
- Some directories should be "8.15" not "8.15.1" (bug #169198).
483aca
483aca
* Thu Sep 22 2005 Tim Waugh <twaugh@redhat.com> 8.15.1-0.1
483aca
- 8.15.1.
483aca
- No longer need overflow patch.
483aca
483aca
* Tue Aug 16 2005 Tim Waugh <twaugh@redhat.com> 8.15-0.rc4.3
483aca
- Rebuilt for new cairo.
483aca
483aca
* Mon Aug 15 2005 Tim Waugh <twaugh@redhat.com> 8.15-0.rc4.2
483aca
- Parametrize freetype, and disable it (bug #165962).
483aca
483aca
* Fri Aug 12 2005 Tim Waugh <twaugh@redhat.com> 8.15-0.rc4.1
483aca
- 8.15rc4.
483aca
- Fixed lips4v driver (bug #165713).
483aca
483aca
* Tue Aug  9 2005 Tim Waugh <twaugh@redhat.com> 8.15-0.rc3.7
483aca
- Install adobe/acro5 CMaps (bug #165428).
483aca
483aca
* Mon Jul 18 2005 Tim Waugh <twaugh@redhat.com> 8.15-0.rc3.6
483aca
- Fixed split font configuration patch (bug #161187).
483aca
483aca
* Wed Jul 13 2005 Tim Waugh <twaugh@redhat.com> 8.15-0.rc3.5
483aca
- Split font configuration (bug #161187).
483aca
- Reverted this change:
483aca
  - Build requires xorg-x11-devel, not XFree86-devel.
483aca
483aca
* Tue Jul 12 2005 Tim Waugh <twaugh@redhat.com> 8.15-0.rc3.4
483aca
- Add Japanese fonts to FAPIcidfmap (bug #161187).
483aca
- Moved Resource directory.
483aca
- Added use-external-freetype patch (bug #161187).
483aca
483aca
* Mon Jul 11 2005 Tim Waugh <twaugh@redhat.com>
483aca
- Build requires libtiff-devel (bug #162826).
483aca
483aca
* Thu Jun  9 2005 Tim Waugh <twaugh@redhat.com> 8.15-0.rc3.3
483aca
- Build requires xorg-x11-devel, not XFree86-devel.
483aca
- Include ierrors.h in the devel package.
483aca
483aca
* Wed Jun  8 2005 Tim Waugh <twaugh@redhat.com> 8.15-0.rc3.2
483aca
- Drop 'Provides: libijs.so' because it is incorrect.
483aca
- Build igcref.c with -O0 to work around bug #150771.
483aca
- Renumber patches.
483aca
483aca
* Fri Jun  3 2005 Tim Waugh <twaugh@redhat.com> 8.15-0.rc3.1
483aca
- Switch to ESP Ghostscript.
483aca
- 8.15rc3.
483aca
- Lots of patches dropped.  Perhaps some will need to be re-added.
483aca
483aca
* Thu Mar 10 2005 Tim Waugh <twaugh@redhat.com> 7.07-40
483aca
- Build igcref.c with -O0 to work around bug #150771.
483aca
483aca
* Tue Mar  1 2005 Tim Waugh <twaugh@redhat.com> 7.07-39
483aca
- Rebuilt for new GCC.
483aca
483aca
* Mon Feb 21 2005 Tim Waugh <twaugh@redhat.com> 7.07-38
483aca
- Fixes inspired by GCC 4.
483aca
483aca
* Tue Jan 18 2005 Tim Waugh <twaugh@redhat.com>
483aca
- Correct permissions for %%{_datadir}/ghostscript/Resource (bug #145420).
483aca
483aca
* Fri Dec 10 2004 Tim Waugh <twaugh@redhat.com> 7.07-37
483aca
- Fixed missing return statement (bug #136757).
483aca
483aca
* Thu Dec  9 2004 Tim Waugh <twaugh@redhat.com> 7.07-36
483aca
- Remove VFlib2 bits (bug #120498).
483aca
483aca
* Fri Dec  3 2004 Tim Waugh <twaugh@redhat.com> 7.07-35
483aca
- Added /etc/ghostscript to search path and to file manifest (bug #98974).
483aca
483aca
* Sat Nov 20 2004 Miloslav Trmac <mitr@redhat.com> - 7.07-34
483aca
- Convert man pages to UTF-8
483aca
483aca
* Wed Oct 20 2004 Tim Waugh <twaugh@redhat.com> 7.07-33
483aca
- Fix for bug #136322 (temporary files).
483aca
483aca
* Tue Sep 28 2004 Tim Waugh <twaugh@redhat.com> 7.07-32
483aca
- Turn off fontconfig until it's fixed (bug #133353).
483aca
483aca
* Wed Aug 18 2004 Tim Waugh <twaugh@redhat.com> 7.07-31
483aca
- Only ship gsx in the gtk subpackage.
483aca
483aca
* Fri Aug  6 2004 Tim Waugh <twaugh@redhat.com>
483aca
- Run /sbin/ldconfig in %%post/%%postun.
483aca
- Stricter requirements for the main package in the subpackages.
483aca
483aca
* Tue Jul 20 2004 Tim Waugh <twaugh@redhat.com> 7.07-30
483aca
- Updated eplaser driver to add alc4000 (bug #128007).
483aca
483aca
* Fri Jun 25 2004 Tim Waugh <twaugh@redhat.com> 7.07-29
483aca
- Prevent pdf2ps generating "null setpagesize" (bug #126446).
483aca
483aca
* Thu Jun 24 2004 Tim Waugh <twaugh@redhat.com> 7.07-28
483aca
- Fix Omni patch assumption about /usr/lib which breaks for multilib
483aca
  architectures.
483aca
483aca
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
483aca
- rebuilt
483aca
483aca
* Tue Jun  1 2004 Tim Waugh <twaugh@redhat.com> 7.07-26
483aca
- Removed another debug message from the fontconfig patch.
483aca
483aca
* Tue Mar  9 2004 Tim Waugh <twaugh@redhat.com> 7.07-25
483aca
- Added bjc250gs driver (bug #117860).
483aca
483aca
* Thu Mar  4 2004 Tim Waugh <twaugh@redhat.com> 7.07-24
483aca
- Fix compilation with GCC 3.4.
483aca
483aca
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
483aca
- rebuilt
483aca
483aca
* Wed Feb 18 2004 Tim Waugh <twaugh@redhat.com> 7.07-23
483aca
- Build against gtk2/glib2 (bug #115619).  Patch from W. Michael Petullo.
483aca
483aca
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com> 7.07-22
483aca
- rebuilt
483aca
483aca
* Thu Feb 12 2004 Tim Waugh <twaugh@redhat.com> 7.07-21
483aca
- Leave gdevpdfm.c seemingly-mistaken bitwise ops alone (bug #115396).
483aca
483aca
* Thu Feb  5 2004 Tim Waugh <twaugh@redhat.com> 7.07-20
483aca
- Fix compilation with GCC 3.4.
483aca
483aca
* Wed Jan 28 2004 Tim Waugh <twaugh@redhat.com> 7.07-19
483aca
- Attempt to fix gdevcups crash (bug #114256).
483aca
- Make gs dynamically link to libgs (bug #114276).
483aca
- Fix gdevesmv.c's misuse of const (bug #114250).
483aca
483aca
* Tue Jan 20 2004 Tim Waugh <twaugh@redhat.com> 7.07-18
483aca
- Turn on libgs again (bug #88175).
483aca
483aca
* Mon Jan 19 2004 Tim Waugh <twaugh@redhat.com> 7.07-17
483aca
- Removed stp driver.  Use the IJS version (ijsgimpprint) instead.
483aca
- No longer conflicts with foomatic for hpijs versioning.
483aca
483aca
* Mon Jan 12 2004 Tim Waugh <twaugh@redhat.com> 7.07-16
483aca
- Split hpijs out into separate source package.
483aca
483aca
* Thu Jan 8  2004 Tim Waugh <twaugh@redhat.com>
483aca
- Fix several mistakenly-used bitwise operations.
483aca
483aca
* Tue Jan 6  2004 Tim Waugh <twaugh@redhat.com> 7.07-15
483aca
- Build for Fedora Core 1 printer drivers update.
483aca
- Conflicts with foomatic before hpijs 1.5 data.
483aca
- Make fontconfig optional.
483aca
483aca
* Sat Dec 13 2003 Tim Waugh <twaugh@redhat.com> 7.07-14
483aca
- Disable unnecessary debug messages from fontconfig support.
483aca
483aca
* Fri Dec  5 2003 Tim Waugh <twaugh@redhat.com> 7.07-13
483aca
- Add fontconfig support (bug #111412).
483aca
483aca
* Thu Nov 27 2003 Tim Waugh <twaugh@redhat.com>
483aca
- Build requires libjpeg-devel (bug #110737).
483aca
483aca
* Tue Nov 11 2003 Tim Waugh <twaugh@redhat.com> 7.07-12
483aca
- Updated hpijs to 1.5 (bug #109714).
483aca
483aca
* Mon Nov 10 2003 Tim Waugh <twaugh@redhat.com>
483aca
- Updated lxm3200 patch (bug #109625).
483aca
483aca
* Tue Sep 30 2003 Tim Waugh <twaugh@redhat.com> 7.07-11
483aca
- Updated gdevcups.c from CUPS 1.1.19.
483aca
- Apply NOMEDIAATTRS patch from CUPS 1.1.19 (bug #105401).
483aca
483aca
* Thu Aug 28 2003 Tim Waugh <twaugh@redhat.com>
483aca
- Fix lips4v driver (bug #92337).
483aca
483aca
* Wed Aug 20 2003 Tim Waugh <twaugh@redhat.com> 7.07-10
483aca
- Fix compilation problems in hpijs.
483aca
483aca
* Mon Aug  4 2003 Tim Waugh <twaugh@redhat.com> 7.07-9
483aca
- Further fix from bug #100685.
483aca
483aca
* Thu Jul 31 2003 Tim Waugh <twaugh@redhat.com> 7.07-8
483aca
- Further fix from bug #100685.
483aca
483aca
* Tue Jul 29 2003 Tim Waugh <twaugh@redhat.com> 7.07-7
483aca
- Further fix from bug #100685.
483aca
483aca
* Fri Jul 25 2003 Tim Waugh <twaugh@redhat.com> 7.07-6
483aca
- Further fix from bug #100557.
483aca
483aca
* Thu Jul 24 2003 Tim Waugh <twaugh@redhat.com> 7.07-5
483aca
- Further fix from bug #100557.
483aca
- Fix bug #100685.
483aca
483aca
* Wed Jul 23 2003 Tim Waugh <twaugh@redhat.com> 7.07-4
483aca
- Fix bug #100557.
483aca
483aca
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com> 7.07-3
483aca
- rebuilt
483aca
483aca
* Tue May 27 2003 Tim Waugh <twaugh@redhat.com>
483aca
- Fix sed usage in ps2epsi (bug #89300).
483aca
483aca
* Tue May 20 2003 Tim Waugh <twaugh@redhat.com> 7.07-2
483aca
- HPIJS 1.4 (bug #91219).
483aca
483aca
* Sun May 18 2003 Tim Waugh <twaugh@redhat.com> 7.07-1
483aca
- 7.07.
483aca
- Parametrize build_libgs.
483aca
- Remove Omni requirement (bug #88177).
483aca
- Fix ghostscript-gtk obsoletes: line (bug #88175).
483aca
483aca
* Thu Apr  3 2003 Tim Waugh <twaugh@redhat.com> 7.06-1
483aca
- 7.06.
483aca
- Updated config, vflib.fixup patches.
483aca
- No longer need dx6, jpeg patches.
483aca
- No longer need to add in missed GNU drivers.
483aca
- Turn off dj970 driver (hpijs drives that).
483aca
483aca
* Mon Mar 31 2003 Tim Waugh <twaugh@redhat.com> 7.05-34
483aca
- Apply fix for CJK font search method when the fonts are not available
483aca
  (bug #83516).
483aca
- The gb18030 patch no longer applies here.
483aca
483aca
* Thu Mar 27 2003 Tim Waugh <twaugh@redhat.com> 7.05-33
483aca
- Add some missing font aliases (bug #73342).
483aca
- Use the system jpeg library.
483aca
- Update hpijs to 1.3.1.
483aca
- Update gdevcups.c from cups-1.1.18.
483aca
483aca
* Mon Feb 24 2003 Elliot Lee <sopwith@redhat.com> 7.05-32
483aca
- debuginfo rebuild
483aca
483aca
* Fri Feb 21 2003 Elliot Lee <sopwith@redhat.com> 7.05-31
483aca
- Add ghostscript-7.05-oob-66421.patch to fix the segfault behind #66421
483aca
483aca
* Thu Jan 30 2003 Tim Waugh <twaugh@redhat.com> 7.05-30
483aca
- Remove rss patch from hpijs (not needed).
483aca
483aca
* Wed Jan 22 2003 Tim Powers <timp@redhat.com> 7.05-29
483aca
- rebuilt
483aca
483aca
* Thu Jan 16 2003 Tim Waugh <twaugh@redhat.com> 7.05-28
483aca
- Add Korean font aliases to CIDFnmap CJK resource files (bug #81924).
483aca
483aca
* Sat Dec 14 2002 Tim Waugh <twaugh@redhat.com> 7.05-27
483aca
- Obsolete ghostscript-gtk (bug #79585).
483aca
- Omni 121002 patch.
483aca
483aca
* Tue Dec 10 2002 Tim Waugh <twaugh@redhat.com> 7.05-26
483aca
- Don't ship the shared object yet (part of bug #79340).
483aca
- Don't make the gtk package, since that needs the shared object.
483aca
483aca
* Tue Nov 26 2002 Tim Waugh <twaugh@redhat.com> 7.05-25
483aca
- Fix level 1 PostScript output (bug #78450).
483aca
- No need to carry gomni.c, since it comes from the patch.
483aca
483aca
* Mon Nov 11 2002 Tim Waugh <twaugh@redhat.com> 7.05-24
483aca
- Omni 071902 patch.
483aca
483aca
* Mon Nov 11 2002 Tim Waugh <twaugh@redhat.com> 7.05-23
483aca
- hpijs-1.3, with updated rss patch.
483aca
- Fix XLIBDIRS.
483aca
483aca
* Fri Oct 25 2002 Tim Waugh <twaugh@redhat.com> 7.05-22
483aca
- hpijs-rss 1.2.2.
483aca
483aca
* Mon Oct 14 2002 Tim Waugh <twaugh@redhat.com> 7.05-21
483aca
- Set libdir when installing.
483aca
483aca
* Thu Aug 15 2002 Tim Waugh <twaugh@redhat.com> 7.05-20
483aca
- Add cups device (bug #69573).
483aca
483aca
* Mon Aug 12 2002 Tim Waugh <twaugh@redhat.com> 7.05-19
483aca
- Fix the gb18030 patch (bug #71135, bug #71303).
483aca
483aca
* Sat Aug 10 2002 Elliot Lee <sopwith@redhat.com> 7.05-18
483aca
- rebuilt with gcc-3.2 (we hope)
483aca
483aca
* Fri Aug  9 2002 Tim Waugh <twaugh@redhat.com> 7.05-17
483aca
- Add CIDnmap for GB18030 font (bug #71135).
483aca
- Fix URL (bug #70734).
483aca
483aca
* Tue Jul 23 2002 Tim Waugh <twaugh@redhat.com> 7.05-16
483aca
- Rebuild in new environment.
483aca
483aca
* Tue Jul  9 2002 Tim Waugh <twaugh@redhat.com> 7.05-15
483aca
- Remove the chp2200 driver again, to fix cdj890 (bug #67578).
483aca
483aca
* Fri Jul  5 2002 Tim Waugh <twaugh@redhat.com> 7.05-14
483aca
- For CJK font support, use CIDFnmap instead of CIDFont
483aca
  resources (bug #68009).
483aca
483aca
* Wed Jul  3 2002 Tim Waugh <twaugh@redhat.com> 7.05-13
483aca
- Build requires unzip and gtk+-devel (bug #67799).
483aca
483aca
* Wed Jun 26 2002 Tim Waugh <twaugh@redhat.com> 7.05-12
483aca
- File list tweaking.
483aca
- More file list tweaking.
483aca
483aca
* Tue Jun 25 2002 Tim Waugh <twaugh@redhat.com> 7.05-10
483aca
- Rebuild for bootstrap.
483aca
483aca
* Wed Jun 19 2002 Tim Waugh <twaugh@redhat.com> 7.05-9
483aca
- Omni 052902 patch.
483aca
483aca
* Mon Jun 10 2002 Tim Waugh <twaugh@redhat.com> 7.05-8
483aca
- Requires recent version of patchutils (bug #65947).
483aca
- Don't ship broken man page symlinks (bug #66238).
483aca
483aca
* Wed May 29 2002 Tim Waugh <twaugh@redhat.com> 7.05-7
483aca
- Put gsx in its own package.
483aca
483aca
* Tue May 28 2002 Tim Waugh <twaugh@redhat.com> 7.05-6
483aca
- New gomni.c from IBM to fix an A4 media size problem.
483aca
- Use new Adobe CMaps (bug #65362).
483aca
483aca
* Sun May 26 2002 Tim Powers <timp@redhat.com> 7.05-5
483aca
- automated rebuild
483aca
483aca
* Wed May 22 2002 Tim Waugh <twaugh@redhat.com> 7.05-4
483aca
- New gomni.c from IBM to fix bug #65269 (again).
483aca
483aca
* Tue May 21 2002 Tim Waugh <twaugh@redhat.com> 7.05-2
483aca
- Don't apply bogus parts of vflib patch (bug #65268).
483aca
- Work around Omni -sPAPERSIZE=a4 problem (bug #65269).
483aca
483aca
* Mon May 20 2002 Tim Waugh <twaugh@redhat.com> 7.05-1
483aca
- 7.05.
483aca
- No longer need mkstemp, vflib.fixup, quoting, or PARANOIDSAFER
483aca
  patches.
483aca
- Don't apply CJK patches any more (no longer needed).
483aca
- Updated Source15, Patch0, Patch10, Patch5, Patch24, Patch14, Patch12.
483aca
- Made gdevdmpr.c compile again.
483aca
- Move gimp-print to a separate package.
483aca
- Ship the shared object too (and a .so file that is dlopened).
483aca
- Update Omni patch.  No longer need Omni_path, Omni_quiet, Omni_glib patches.
483aca
- Require Omni >= 0.6.1.
483aca
- Add patch to fix gtk+ initial window size.
483aca
- Add devel package with header files.
483aca
- Turn on IJS support.
483aca
- Update hpijs to 1.1.
483aca
- Don't ship the hpijs binary in the ghostscript package.
483aca
- Use -fPIC when building ijs.
483aca
483aca
* Wed Apr  3 2002 Tim Waugh <twaugh@redhat.com> 6.52-8
483aca
- New CIDFonts (bug #61015).
483aca
483aca
* Wed Apr  3 2002 Tim Waugh <twaugh@redhat.com> 6.52-7
483aca
- Fix release numbers of sub packages.
483aca
- Handle info files, use ldconfig (bug #62574).
483aca
483aca
* Tue Mar 19 2002 Tim Waugh <twaugh@redhat.com> 6.52-6
483aca
- Fix config patch so that gs --help displays the right thing.
483aca
- Don't ship sysvlp.sh.
483aca
- Fix some shell scripts.
483aca
- Ship escputil man page (bug #58919).
483aca
483aca
* Mon Feb 11 2002 Tim Waugh <twaugh@redhat.com> 6.52-5
483aca
- Add CHP2200 driver (bug #57516).
483aca
- Fix gimp-print-4.2.0 so that it builds without cups-config.
483aca
483aca
* Sat Feb  2 2002 Bill Nottingham <notting@redhat.com> 6.52-4
483aca
- do condrestart in %%postun, not %%post
483aca
483aca
* Fri Feb  1 2002 Bernhard Rosenkraenzer <bero@redhat.com> 6.52-3
483aca
- Restart service cups after installing gimp-print-cups
483aca
483aca
* Sun Jan 27 2002 Bernhard Rosenkraenzer <bero@redhat.com> 6.52-2
483aca
- hpijs is finally free - support it.
483aca
- Add extra package for CUPS support
483aca
483aca
* Mon Jan 21 2002 Bernhard Rosenkraenzer <bero@redhat.com> 6.52-1
483aca
- Updates:
483aca
  - ghostscript 6.52
483aca
  - hpdj 2.6 -> pcl3 3.3
483aca
  - CJK Patchlevel 3, adobe-cmaps 200109
483aca
  - gimp-print 4.2.0
483aca
- Adapt patches
483aca
- Fix various URLs
483aca
- Begin cleaning up spec file
483aca
- Fix bugs #21879 and #50923
483aca
483aca
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
483aca
- automated rebuild
483aca
483aca
* Thu Oct 18 2001 Crutcher Dunnavant <crutcher@redhat.com> 6.51-16
483aca
- update the Omni driver, and patch it to seek in /usr/lib/Omni/ first
483aca
- require Omni
483aca
483aca
* Mon Oct 01 2001 Crutcher Dunnavant <crutcher@redhat.com> 6.51-15
483aca
- change -dPARANOIDSAFER to punch a hole for OutputFile
483aca
483aca
* Mon Sep 17 2001 Crutcher Dunnavant <crutcher@redhat.com> 6.51-14
483aca
- add -dPARANOIDSAFER to let us breathe a little easier in the print spooler.
483aca
483aca
* Thu Sep 13 2001 Crutcher Dunnavant <crutcher@redhat.com> 6.51-13
483aca
- apply jakub's fix to ghostscript's jmp_buf problems; #49591
483aca
483aca
* Wed Sep  5 2001 Crutcher Dunnavant <crutcher@redhat.com> 6.51-12
483aca
- fix lprsetup.sh; #50925
483aca
483aca
* Fri Aug 24 2001 Crutcher Dunnavant <crutcher@redhat.com> 6.51-11
483aca
- added Epson's old eplaseren drivers,
483aca
- pointed out by Till Kamppeter <till.kamppeter@gmx.net>
483aca
483aca
* Tue Aug 21 2001 Paul Howarth <paul@city-fan.org> 6.51-10
483aca
- included Samsung GDI driver for ML-4500 printer support.
483aca
483aca
* Sun Aug 19 2001 Crutcher Dunnavant <crutcher@redhat.com> 6.51-9
483aca
- applied IBM's glib patches for Omni, which now works.
483aca
- BE AWARE: we now link against libstdc++ and glib for this, and use a c++
483aca
- link stage to do the dirty.
483aca
- added glib-devel buildreq and glib req, I don't think we require everything
483aca
- yet, I could pull in sasl.
483aca
483aca
* Sun Aug 19 2001 David Suffield <david_suffield@hp.com> 6.51-8
483aca
- Added gs device hpijs and updated gdevhpij.c to hpijs 0.97
483aca
483aca
* Wed Aug 15 2001 Crutcher Dunnavant <crutcher@redhat.com> 6.51-7
483aca
- pull in ynakai's update to the cjk resources.
483aca
483aca
* Thu Aug  9 2001 Crutcher Dunnavant <crutcher@redhat.com> 6.51-6
483aca
- turn dmprt and cdj880 back on. for some reason, they work now.
483aca
- voodoo, who knows.
483aca
483aca
* Thu Aug  9 2001 Yukihiro Nakai <ynakai@redhat.com> 6.51-5
483aca
- Add cjk resources
483aca
483aca
* Wed Aug  1 2001 Crutcher Dunnavant <crutcher@redhat.com> 6.51-4
483aca
- applied drepper@redhat.com's patch for #50300
483aca
- fixed build deps on zlib-devel and libpng-devel, #49853
483aca
- made gs_init.ps a config file; #25096
483aca
- O\^/nZ the daTa directorieZ now; #50693
483aca
483aca
* Tue Jul 24 2001 Crutcher Dunnavant <crutcher@redhat.com> 6.51-3
483aca
- wired up the Resource dir and the Font and CIDFont maps.
483aca
483aca
* Mon Jul 23 2001 Crutcher Dunnavant <crutcher@redhat.com> 6.51-2
483aca
- luckily, I had a spare chicken. Thanks to some work by Nakai, and one last
483aca
- desperate search through google, everything /seems/ to be working. I know
483aca
- that there are going to be problems in the japanese code, and I need to turn
483aca
- on the cjk font map from adobe, but it /works/ at the moment.
483aca
483aca
* Thu Jun 21 2001 Crutcher Dunnavant <crutcher@redhat.com>
483aca
- upgraded to 6.51, a major version upgrade
483aca
- rewrote spec file, threw out some patches
483aca
- turned on IBM's Omni print drivers interface
483aca
- turned on HP's hpijs print drivers interface
483aca
- turned on every driver that looked usable from linux
483aca
- sacrificed a chicken to integrate the old Japanese drivers
483aca
- - This didn't work. The japanese patches are turned off, pending review.
483aca
- - I can do loops with C, but the bugs are in Postscript init files
483aca
483aca
* Wed Apr 11 2001 Crutcher Dunnavant <crutcher@redhat.com>
483aca
- added P. B. West's lx5000 driver
483aca
483aca
* Tue Feb 27 2001 Crutcher Dunnavant <crutcher@redhat.com>
483aca
- added xtt-fonts requirement (for VFlib)
483aca
483aca
* Fri Feb  9 2001 Adrian Havill <havill@redhat.com>
483aca
- cmpskit removed as a build prereq
483aca
483aca
* Thu Feb  8 2001 Crutcher Dunnavant <crutcher@redhat.com>
483aca
- merged in some patches that got away:
483aca
  * Fri Sep  1 2000 Mitsuo Hamada <mhamada@redhat.com>
483aca
  - add support JIS B size
483aca
  - fix the problem of reconverting GNUPLOT output
483aca
483aca
* Thu Feb  8 2001 Crutcher Dunnavant <crutcher@redhat.com>
483aca
- switched to japanese for everybody
483aca
483aca
* Thu Feb  8 2001 Crutcher Dunnavant <crutcher@redhat.com>
483aca
- tweaked time_.h to test for linux, and include the right
483aca
- header
483aca
483aca
* Wed Feb  7 2001 Crutcher Dunnavnat <crutcher@redhat.com>
483aca
- added the lxm3200 driver
483aca
483aca
* Mon Dec 11 2000 Crutcher Dunnavant <crutcher@redhat.com>
483aca
- merged in the (accendental) branch that contained the mktemp
483aca
- and LD_RUN_PATH bug fixes.
483aca
483aca
* Tue Oct 17 2000 Jeff Johnson <jbj@redhat.com>
483aca
- tetex using xdvi with ghostscript patch (#19212).
483aca
483aca
* Tue Sep 12 2000 Michael Stefaniuc <mstefani@redhat.com>
483aca
- expanded the gcc296 patch to fix a compilation issue with the new stp
483aca
  driver
483aca
483aca
* Mon Sep 11 2000 Michael Stefaniuc <mstefani@redhat.com>
483aca
- added the stp driver from the gimp-print project.
483aca
  It supports high quality printing especialy with Epson Stylus Photo.
483aca
483aca
* Wed Aug  2 2000 Matt Wilson <msw@redhat.com>
483aca
- rebuilt against new libpng
483aca
483aca
* Wed Aug  2 2000 Bernhard Rosenkraenzer <bero@redhat.com>
483aca
- Fix up the cdj880 patch (Bug #14978)
483aca
- Fix build with gcc 2.96
483aca
483aca
* Fri Jul 21 2000 Bill Nottingham <notting@redhat.com>
483aca
- turn off japanese support
483aca
483aca
* Thu Jul 13 2000 Prospector <bugzilla@redhat.com>
483aca
- automatic rebuild
483aca
483aca
* Fri Jul 07 2000 Trond Eivind Glomsrød <teg@redhat.com>
483aca
- fixed the broken inclusion of files in /usr/doc
483aca
- Build requires freetype-devel
483aca
483aca
* Fri Jun 16 2000 Matt Wilson <msw@redhat.com>
483aca
- build japanese support in main distribution
483aca
- FHS manpage paths
483aca
483aca
* Sun Mar 26 2000 Chris Ding <cding@redhat.com>
483aca
- enabled bmp16m driver
483aca
483aca
* Thu Mar 23 2000 Matt Wilson <msw@redhat.com>
483aca
- added a boatload of Japanese printers
483aca
483aca
* Thu Mar 16 2000 Matt Wilson <msw@redhat.com>
483aca
- add japanese support, enable_japanese macro
483aca
483aca
* Mon Feb 14 2000 Bernhard Rosenkraenzer <bero@redhat.com>
483aca
- 5.50 at last...
483aca
- hpdj 2.6
483aca
- Added 3rd party drivers:
483aca
  - Lexmark 5700 (lxm5700m)
483aca
  - Alps MD-* (md2k, md5k)
483aca
  - Lexmark 2050, 3200, 5700 and 7000 (lex2050, lex3200, lex5700, lex7000)
483aca
483aca
* Fri Feb  4 2000 Bernhard Rosenkraenzer <bero@redhat.com>
483aca
- rebuild to compress man page
483aca
- fix gs.1 symlink
483aca
483aca
* Wed Jan 26 2000 Bill Nottingham <notting@redhat.com>
483aca
- add stylus 740 uniprint files
483aca
483aca
* Thu Jan 13 2000 Preston Brown <pbrown@redhat.com>
483aca
- add lq850 dot matrix driver (#6357)
483aca
483aca
* Thu Oct 28 1999 Bill Nottingham <notting@redhat.com>
483aca
- oops, include oki182 driver.
483aca
483aca
* Tue Aug 24 1999 Bill Nottingham <notting@redhat.com>
483aca
- don't optimize on Alpha. This way it works.
483aca
483aca
* Thu Jul 29 1999 Michael K. Johnson <johnsonm@redhat.com>
483aca
- added hpdj driver
483aca
- changed build to use tar_cat so adding new drivers is sane
483aca
483aca
* Thu Jul  1 1999 Bill Nottingham <notting@redhat.com>
483aca
- add OkiPage 4w+, HP 8xx drivers
483aca
* Mon Apr  5 1999 Bill Nottingham <notting@redhat.com>
483aca
- fix typo in config patch.
483aca
483aca
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
483aca
- auto rebuild in the new build environment (release 6)
483aca
483aca
* Mon Mar 15 1999 Cristian Gafton <gafton@redhat.com>
483aca
- added patch from rth to fix alignement problems on the alpha.
483aca
483aca
* Wed Feb 24 1999 Preston Brown <pbrown@redhat.com>
483aca
- Injected new description and group.
483aca
483aca
* Mon Feb 08 1999 Bill Nottingham <notting@redhat.com>
483aca
- add uniprint .upp files
483aca
483aca
* Sat Feb 06 1999 Preston Brown <pbrown@redhat.com>
483aca
- fontpath update.
483aca
483aca
* Wed Dec 23 1998 Preston Brown <pbrown@redhat.com>
483aca
- updates for ghostscript 5.10
483aca
483aca
* Fri Nov 13 1998 Preston Brown <pbrown@redhat.com>
483aca
- updated to use shared urw-fonts package.
483aca
* Mon Nov 09 1998 Preston Brown <pbrown@redhat.com>
483aca
- turned on truetype (ttf) font support.
483aca
483aca
* Thu Jul  2 1998 Jeff Johnson <jbj@redhat.com>
483aca
- updated to 4.03.
483aca
483aca
* Tue May 05 1998 Cristian Gafton <gafton@redhat.com>
483aca
- enabled more printer drivers
483aca
- buildroot
483aca
483aca
* Mon Apr 27 1998 Prospector System <bugs@redhat.com>
483aca
- translations modified for de, fr, tr
483aca
483aca
* Mon Mar 03 1997 Erik Troan <ewt@redhat.com>
483aca
- Made /usr/share/ghostscript/3.33/Fontmap a config file.