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