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