source: projects/specs/trunk/g/ghostscript/ghostscript-vl.spec @ 9690

Revision 9690, 41.5 KB checked in by tomop, 9 years ago (diff)

ghostscript-9.15-2

Line 
1%define gs_ver 9.15
2%define gs_dot_ver 9.15
3%{expand: %%define build_with_freetype %{?_with_freetype:1}%{!?_with_freetype:0}}
4Summary: A PostScript(TM) interpreter and renderer.
5Summary(ja): 日本語 PostScript(TM) インタプリタ/レンダラ/ビュア
6Name: ghostscript
7Version: %{gs_ver}
8Release: 2%{?_dist_release}
9
10# Included CMap data is Redistributable, no modification permitted,
11# see http://bugzilla.redhat.com/487510
12License: AGPLv3+ and Redistributable, no modification permitted
13URL: http://www.ghostscript.com/
14Group: Applications/Publishing
15Source0: ghostscript-%{gs_ver}-cleaned-1.tar.bz2
16# ghostscript contains code we cannot ship due to licensing concerns.
17# Therefore we use this script to remove it before shipping the
18# tarball.
19# Download the upstream tarball and invoke this script while in the
20# tarball's directory:
21Source1: generate-tarball.sh
22Source2: CIDFnmap
23Source4: cidfmap
24Source5: cidfmap.ja
25
26Source10: Changelog.gs7.vine
27
28# patches from fedora
29Patch1: ghostscript-multilib.patch
30Patch2: ghostscript-scripts.patch
31Patch3: ghostscript-noopt.patch
32Patch4: ghostscript-runlibfileifexists.patch
33Patch5: ghostscript-icc-missing-check.patch
34Patch6: ghostscript-Fontmap.local.patch
35Patch7: ghostscript-wrf-snprintf.patch
36Patch8: ghostscript-system-openjpeg2.patch
37
38# buildfix
39Patch20: ghostscript-8.71-fix-build-executables.patch
40
41# security patches
42Patch1000: fix696041.patch
43
44BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
45BuildRequires: xz
46BuildRequires: libjpeg-devel, libXt-devel
47BuildRequires: zlib-devel, libpng-devel, unzip, gtk3-devel
48BuildRequires: glib2-devel, gnutls-devel
49# Omni requires libxml
50BuildRequires: libxml2-devel
51BuildRequires: libtiff-devel
52BuildRequires: cups-devel >= 1.1.13
53BuildRequires: libtool
54#BuildRequires: jasper-devel
55BuildRequires: dbus-devel
56BuildRequires: poppler-data
57BuildRequires: lcms2-devel
58BuildRequires: openjpeg2-devel
59%{?_with_freetype:BuildRequires: freetype2-devel}
60
61Requires: urw-fonts
62Requires: ghostscript-fonts
63Requires: poppler-data
64
65Obsoletes: hpijs <= 1.7.1-2vl5
66#Provides: hpijs
67
68Obsoletes: ghostscript-shared < 8.0
69Provides: ghostscript-shared = %{version}-%{release}
70
71Conflicts: cups < 1.3.9-1
72
73Packager: daisuke
74Vendor: Project Vine
75Distribution: Vine Linux
76
77%description
78Ghostscript is a set of software that provides a PostScript(TM)
79interpreter, a set of C procedures (the Ghostscript library, which
80implements the graphics capabilities in the PostScript language) and
81an interpreter for Portable Document Format (PDF) files. Ghostscript
82translates PostScript code into many common, bitmapped formats, like
83those understood by your printer or screen. Ghostscript is normally
84used to display PostScript files and to print PostScript files to
85non-PostScript printers.
86
87If you need to display PostScript files or print them to
88non-PostScript printers, you should install ghostscript. If you
89install ghostscript, you also need to install the ghostscript-fonts
90package.
91
92%description -l ja
93Ghostscript は PostScript(TM)interpreterやC procedure (PostScript言語の中で
94graphic機能を実装した Ghostscript ライブラリ)や Portable Document Format
95(PDF)ファイルの interpreter などのソフトウェア集です。
96Ghostscript は PostScript コードをお使いのプリンターやスクリーンが理解できる
97多くの一般的な bitmap 形式のフォーマットに変換します。
98Ghostscript は一般的に PostScript ファイルを表示させたり、非 PostScript
99プリンターに PostScript ファイルを印刷する場合に使用します。
100
101もしもあなたが、PostScript ファイルを表示させたり、非 PostScript プリンターに
102PostScript ファイルを印刷するのであれば、ghostscript をインストールするべきです。
103もしもあなたが ghostscript をインストールするならば、ghostscript-fonts
104パッケージも必要です。
105
106
107%package devel
108Summary: Files for developing applications that use ghostscript.
109Summary(ja): ghostscript を使うアプリケーションを開発するためのファイル
110Requires: %{name} = %{version}-%{release}
111Group: Development/Libraries
112Obsoletes: hpijs <= 1.7.1-2vl5
113
114%description devel
115The header files for developing applications that use ghostscript.
116
117%description devel -l ja
118ghostscript を使うアプリケーションを開発するためのヘッダファイル
119
120%package doc
121Summary: Documentation for ghostscript.
122Summary(ja): ghostscript のドキュメント
123Requires: %{name} = %{version}-%{release}
124Group: Documentation
125
126%description doc
127The documentation files that come with ghostscript.
128
129%package gtk
130Summary: A GTK-enabled PostScript(TM) interpreter and renderer.
131Summary(ja): GTK+ 版の PostScript(TM) インタプリタ/レンダラ
132Requires: %{name} = %{version}-%{release}
133Group: Applications/Publishing
134
135%description gtk
136A GTK-enabled version of Ghostscript, called 'gsx'.
137
138%prep
139%setup -q -n %{name}-%{gs_ver}
140rm -rf expat freetype icclib jasper jpeg jpegxr lcms lcms2 libpng openjpeg zlib cups/libs
141
142# Fix ijs-config not to have multilib conflicts (bug #192672)
143%patch1 -p1 -b .multilib
144
145# Fix some shell scripts
146%patch2 -p1 -b .scripts
147
148# Build igcref.c with -O0 to work around bug #150771.
149%patch3 -p1 -b .noopt
150
151# Define .runlibfileifexists.
152%patch4 -p1
153
154# Fixed missing error check when setting ICC profile.
155%patch5 -p1 -b .icc-missing-check
156
157
158# Restored Fontmap.local patch, incorrectly dropped after
159# ghostscript-8.15.4-3 (bug #610301).
160# Note: don't use -b here to avoid the backup file ending up in the
161# package manifest.
162%patch6 -p1
163
164# Use more caution when converting floats to strings (bug #980085).
165%patch7 -p1 -b .wrf-snprintf
166
167%patch8 -p1 -b .system-openjpeg2
168
169# security patches.
170%patch1000 -p2 -b .fix696041
171
172
173# Convert manual pages to UTF-8
174from8859_1() {
175        iconv -f iso-8859-1 -t utf-8 < "$1" > "${1}_"
176        mv "${1}_" "$1"
177}
178for i in man/de/*.1; do
179  if [ "$(file --brief --mime-encoding "$i")" = iso-8859-1 ]; then
180    from8859_1 "$i"
181  fi
182done
183
184# Convert ps files to UTF-8
185for i in examples/cjk/gsc*.ps; do from8859_1 "$i"; done
186
187%build
188# Compile without strict aliasing opts due to these files:
189# gdevescv.c gdevl4v.c gdevopvp.c gdevbbox.c gdevdbit.c gdevddrw.c
190# gdevp14.c gdevpdfd.c gdevpdfi.c gdevpdfo.c gdevpdft.c gdevpdfv.c
191# gdevpdte.c gdevpdtt.c gdevps.c gdevpx.c gscoord.c gscparam.c gscrd.c
192# gsdps1.c gsimage.c gspath1.c gsptype1.c gsptype2.c gstype2.c
193# gstype42.c gxccache.c gxchar.c gxclimag.c gxclpath.c gxfcopy.c
194# gximag3x.c gximage3.c gxipixel.c gxshade1.c gxstroke.c gxtype1.c
195# ibnum.c iscanbin.c zchar1.c zchar.c zcharx.c zfapi.c zfont32.c
196# zfunc0.c zfunc3.c zfunc4.c zpcolor.c zshade.c
197EXTRACFLAGS="-fno-strict-aliasing"
198
199FONTPATH=
200for path in \
201        %{_datadir}/fonts/default/%{name} \
202        %{_datadir}/fonts/default/Type1 \
203        %{_datadir}/fonts/default/amspsfnt/pfb \
204        %{_datadir}/fonts/default/cmpsfont/pfb \
205        %{_datadir}/fonts \
206        %{_datadir}/%{name}/conf.d \
207        %{_sysconfdir}/%{name} \
208        %{_sysconfdir}/%{name}/%{gs_dot_ver} \
209        %{_datadir}/poppler/cMap/*
210do
211  FONTPATH="$FONTPATH${FONTPATH:+:}$path"
212done
213autoconf --force
214%configure --with-ijs --enable-dynamic --with-fontpath="$FONTPATH" \
215        --with-drivers=ALL --disable-compile-inits --with-system-libtiff \
216        --with-install-cups \
217        CFLAGS="$CFLAGS $EXTRACFLAGS"
218
219# Build IJS
220cd ijs
221./autogen.sh
222%configure --enable-shared --enable-static
223make %{?_smp_mflags}
224cd ..
225
226%if %{build_with_freetype}
227FT_CFLAGS=$(pkg-config --cflags freetype2)
228make %{?_smp_mflags} \
229     so RPM_OPT_FLAGS="$RPM_OPT_FLAGS $EXTRAFLAGS" prefix=%{_prefix} \
230        FT_BRIDGE=1 FT_CFLAGS="$FT_CFLAGS" FT_LIB=freetype
231make %{?_smp_mflags} \
232     RPM_OPT_FLAGS="$RPM_OPT_FLAGS $EXTRAFLAGS" prefix=%{_prefix} \
233        FT_BRIDGE=1 FT_CFLAGS="$FT_CFLAGS" FT_LIB=freetype
234%else
235make %{?_smp_mflags} \
236     so RPM_OPT_FLAGS="$RPM_OPT_FLAGS $EXTRAFLAGS" prefix=%{_prefix}
237make %{?_smp_mflags} \
238     RPM_OPT_FLAGS="$RPM_OPT_FLAGS $EXTRAFLAGS" prefix=%{_prefix}
239%endif
240make cups
241
242%install
243rm -rf $RPM_BUILD_ROOT
244mkdir -p $RPM_BUILD_ROOT
245mkdir -p $RPM_BUILD_ROOT/{%{_mandir},%{_bindir},%{_datadir},%{_docdir}}
246mkdir -p $RPM_BUILD_ROOT/{%{_libdir},%{_includedir}/ijs}
247
248make install soinstall \
249%{?_with_freetype:FT_BRIDGE=1} \
250        prefix=$RPM_BUILD_ROOT%{_prefix} \
251        mandir=$RPM_BUILD_ROOT%{_mandir} \
252        datadir=$RPM_BUILD_ROOT%{_datadir} \
253        gsincludedir=$RPM_BUILD_ROOT%{_includedir}/ghostscript/ \
254        bindir=$RPM_BUILD_ROOT%{_bindir} \
255        libdir=$RPM_BUILD_ROOT%{_libdir} \
256        docdir=$RPM_BUILD_ROOT%{_docdir}/%{name}-%{gs_dot_ver} \
257        gsdir=$RPM_BUILD_ROOT%{_datadir}/%{name} \
258        gsdatadir=$RPM_BUILD_ROOT%{_datadir}/%{name}/%{gs_dot_ver} \
259        gssharedir=$RPM_BUILD_ROOT%{_libdir}/%{name}/%{gs_dot_ver} \
260        CUPSSERVERROOT=$RPM_BUILD_ROOT`cups-config --serverroot` \
261        CUPSSERVERBIN=$RPM_BUILD_ROOT`cups-config --serverbin` \
262        CUPSDATA=$RPM_BUILD_ROOT`cups-config --datadir`
263
264mv -f $RPM_BUILD_ROOT%{_bindir}/gsc $RPM_BUILD_ROOT%{_bindir}/gs
265
266cd ijs
267%makeinstall
268cd ..
269
270echo ".so man1/gs.1" > $RPM_BUILD_ROOT/%{_mandir}/man1/ghostscript.1
271ln -sf gs $RPM_BUILD_ROOT/usr/bin/ghostscript
272
273# Rename an original cidfmap to cidfmap.GS
274mv $RPM_BUILD_ROOT%{_datadir}/%{name}/%{gs_dot_ver}/Resource/Init/cidfmap{,.GS}
275# Install our own cidfmap to allow the separated
276# cidfmap which the font packages own.
277install -m0644 %{SOURCE2} $RPM_BUILD_ROOT%{_datadir}/%{name}/%{gs_dot_ver}/Resource/Init/CIDFnmap
278install -m0644 %{SOURCE4} $RPM_BUILD_ROOT%{_datadir}/%{name}/%{gs_dot_ver}/Resource/Init/cidfmap
279
280# Documentation
281install -m0644 doc/COPYING $RPM_BUILD_ROOT%{_docdir}/%{name}-%{gs_dot_ver}
282
283# Don't ship .la files
284rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
285
286# Don't ship .a files
287rm -f $RPM_BUILD_ROOT%{_libdir}/*.a
288
289# Don't ship ijs example client or server
290rm -f $RPM_BUILD_ROOT%{_bindir}/ijs_{client,server}_example
291
292# Don't ship URW fonts; we already have them.
293rm -rf $RPM_BUILD_ROOT%{_datadir}/ghostscript/%{gs_dot_ver}/Resource/Font
294
295# cjk examples
296mkdir -p $RPM_BUILD_ROOT%{_datadir}/%{name}/%{gs_dot_ver}/examples/cjk
297install -m0644 examples/cjk/* $RPM_BUILD_ROOT%{_datadir}/%{name}/%{gs_dot_ver}/examples/cjk/
298
299# Don't ship two copies of Resource.  Just the versioned one will do.
300rm -rf $RPM_BUILD_ROOT%{_datadir}/ghostscript/Resource
301
302mkdir -p $RPM_BUILD_ROOT%{_datadir}/%{name}/conf.d
303mkdir -p $RPM_BUILD_ROOT/etc/ghostscript/%{gs_dot_ver}
304touch $RPM_BUILD_ROOT/etc/ghostscript/%{gs_dot_ver}/Fontmap.local
305touch $RPM_BUILD_ROOT/etc/ghostscript/%{gs_dot_ver}/cidfmap.local
306
307# cidfmap.ja
308install -m644 %{SOURCE5} $RPM_BUILD_ROOT%{_datadir}/%{name}/conf.d
309
310# vine's historical changelog
311install -m644 %{SOURCE10} $RPM_BUILD_ROOT%{_docdir}/%{name}-%{gs_dot_ver}
312
313# The man/de/man1 symlinks are broken (bug #66238).
314find $RPM_BUILD_ROOT%{_mandir}/de/man1 -type l | xargs rm -f
315
316# Don't ship fixmswrd.pl as it pulls in perl (bug #463948).
317rm -f $RPM_BUILD_ROOT%{_bindir}/fixmswrd.pl
318
319# Don't ship CMaps (instead poppler-data paths are in search path).
320rm -f $RPM_BUILD_ROOT%{_datadir}/ghostscript/%{gs_dot_ver}/Resource/CMap/*
321
322MAIN_PWD=`pwd`
323(cd $RPM_BUILD_ROOT; find ./usr/share/ghostscript/%{gs_dot_ver}/Resource -type f | \
324                sed -e 's/\.//;' | grep -v Fontmap | grep -v gs_init.ps > $MAIN_PWD/rpm.sharelist
325 find .%{_bindir}/ | sed -e 's/\.//;' | \
326                grep -v '/$\|/hpijs$\|/gsx$\|/ijs-config$' \
327                >> $MAIN_PWD/rpm.sharelist)
328
329%clean
330rm -rf $RPM_BUILD_ROOT
331
332%post -p /sbin/ldconfig
333
334%postun -p /sbin/ldconfig
335
336%files -f rpm.sharelist
337%defattr(-,root,root)
338%dir %{_sysconfdir}/ghostscript
339%dir %{_sysconfdir}/ghostscript/%{gs_dot_ver}
340%config(noreplace) %{_sysconfdir}/ghostscript/%{gs_dot_ver}/*
341%dir %{_datadir}/ghostscript
342%dir %{_datadir}/ghostscript/conf.d
343%dir %{_datadir}/ghostscript/%{gs_dot_ver}
344%dir %{_datadir}/ghostscript/%{gs_dot_ver}/Resource
345%dir %{_datadir}/ghostscript/%{gs_dot_ver}/Resource/Init
346%config %{_datadir}/ghostscript/%{gs_dot_ver}/Resource/Init/gs_init.ps
347%config %{_datadir}/ghostscript/%{gs_dot_ver}/Resource/Init/Fontmap*
348%config %{_datadir}/ghostscript/conf.d/cidfmap.ja
349%{_datadir}/ghostscript/%{gs_dot_ver}/examples
350%{_datadir}/ghostscript/%{gs_dot_ver}/lib
351%{_datadir}/ghostscript/%{gs_dot_ver}/iccprofiles
352%{_mandir}/man*/*
353%lang(de) %{_mandir}/de/man*/*
354%{_libdir}/libgs.so.*
355%{_libdir}/libijs-*.so*
356%dir %{_libdir}/%{name}
357%{_libdir}/%{name}/%{gs_dot_ver}/
358
359%files doc
360%defattr(-,root,root)
361%doc %{_docdir}/%{name}-%{gs_dot_ver}
362
363%files gtk
364%defattr(-,root,root)
365%{_bindir}/gsx
366
367%files devel
368%defattr(-,root,root)
369%dir %{_includedir}/ghostscript
370%{_includedir}/ghostscript/*.h
371%dir %{_includedir}/ijs
372%{_includedir}/ijs/*
373%{_bindir}/ijs-config
374%{_libdir}/pkgconfig/ijs.pc
375%{_libdir}/libijs.so
376%{_libdir}/libgs.so
377
378%changelog
379* Sun Aug  2 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 9.15-2
380- added patch1000 to fix CVE-2015-3228.
381
382* Wed Dec 24 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 9.15-1
383- new upstream release.
384- imported patches from RawHide.
385
386* Thu Sep 20 2012 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 8.71-6
387- add patch3000 for fix CVE-2012-4405 (icc)
388- add Vendor/Distri tags
389- use smp_flag when make
390
391* Sat Apr 28 2012 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 8.71-5
392- added Patch2000 (to fix cups-raster driver).
393
394* Thu Feb 09 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 8.71-4
395- re-enable cups filter (pstoraster)
396
397* Sun Apr 03 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 8.71-3
398- rebuild with krb5-1.8.2
399- add BR: krb5-devel
400- add BR: libpaper-devel
401
402* Sat Feb 20 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 8.71-2
403- add Patch20 to fix build of the "gs" executables.
404  (import from debian package)
405  - /usr/bin/gs was built as a shared library not as an executable.
406
407* Thu Feb 18 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 8.71-1
408- update to 8.71
409- remove BC: libpaper-devel
410- drop obsolete patches
411- add --with-system-libtiff
412
413* Fri Jan  8 2010 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 8.64-4
414- add patch12,13 for fix CVE-2009-4270 (debugging output)
415
416* Thu Jul 23 2009 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 8.64-3
417- drop Provides: hpijs (should be provided by other package)
418- add BuildConflicts: libpaper-devel
419
420* Wed Jun 03 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 8.64-2
421- add %%{_libdir}/cups to %%files instead of /usr/lib/cups
422
423* Wed Jun 03 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 8.64-1
424- new upstream release
425- remove cjkv patch (merged in upstream)
426- add Patch8: fix bitcmyk driver
427- add Patch9: fix CVE-2009-0583, CVE-2009-0584
428- add Patch10: fix CVE-2009-0792
429- add Patch11: fix CVE-2009-0196
430
431* Sun Jan 11 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 8.63-6
432- add Patch200 to use NeverEmbeddedFontList/AlwaysEmbeddedFontList
433
434* Tue Jan 06 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 8.63-5
435- add hanamin entry to cidfmap.ja
436- add patch1000 to fix eplaser driver bug
437
438* Fri Oct 31 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 8.63-4
439- add Patch100,101 to fix cjk vertical writing
440- remove CIDFnmap
441
442* Thu Oct 30 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 8.63-3
443- remove libijs.la
444- fix broken charactor in changelog.
445
446* Wed Oct 29 2008 Shu KONNO <owa@bg.wakwak.com> 8.63-2
447- s^/usr/lib/cups/filter^%%{_libdir}/cups/filter^ at %%files
448
449* Wed Oct 29 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 8.63-1
450- update to ghostscript-8.63 based on fedora package
451- add cidfmap.ja
452- add Obsoletes/Provides: hpijs, hpijs-devel
453- historical changelogs are in Changelog.gs7.vine
454
455* Fri Oct 17 2008 Tim Waugh <twaugh@redhat.com> 8.63-4
456- Try out a work-around for bug #465311.
457
458* Wed Oct 15 2008 Tim Waugh <twaugh@redhat.com> 8.63-3
459- Don't ship fixmswrd.pl as it pulls in perl (bug #463948).
460
461* Tue Oct 14 2008 Tim Waugh <twaugh@redhat.com> 8.63-2
462- Split out a doc sub-package (bug #466507).
463
464* Mon Aug  4 2008 Tim Waugh <twaugh@redhat.com> 8.63-1
465- 8.63.  No longer need r8591 or incomplete-ccittfax patches.
466- Compile without strict aliasing opts due to warnings across several
467  files.
468- Don't run autogen.sh for main package, just for ijs which doesn't
469  ship with a configure script.
470
471* Mon Jun 23 2008 Tim Waugh <twaugh@redhat.com> 8.62-4
472- Applied patch to work around bug #229174.
473- Applied patch from upstream to fix box_fill_path for shfill (bug #452348).
474
475* Mon Mar 31 2008 Tim Waugh <twaugh@redhat.com> 8.62-3
476- Fix pksmraw output (bug #308211).
477
478* Tue Mar  4 2008 Tim Waugh <twaugh@redhat.com> 8.62-2
479- No longer need CVE-2008-0411 patch.
480- Don't ship URW fonts; we already have them.
481
482* Tue Mar  4 2008 Tim Waugh <twaugh@redhat.com> 8.62-1
483- 8.62.  No longer need IJS KRGB patch, or patch for gs bug 689577.
484
485* Wed Feb 27 2008 Tim Waugh <twaugh@redhat.com> 8.61-10
486- Applied patch to fix CVE-2008-0411 (bug #431536).
487
488* Fri Feb 22 2008 Tim Waugh <twaugh@redhat.com> 8.61-9
489- Build with jasper again (bug #433897).  Build requires jasper-devel, and
490  a patch to remove jas_set_error_cb reference.
491
492* Wed Feb 13 2008 Tim Waugh <twaugh@redhat.com> 8.61-8
493- Rebuild for GCC 4.3.
494
495* Mon Jan 28 2008 Tim Waugh <twaugh@redhat.com> 8.61-7
496- Don't build with jasper support.
497- Remove bundled libraries.
498
499* Tue Dec 11 2007 Tim Waugh <twaugh@redhat.com> 8.61-6
500- Applied upstream patch for bug #416321.
501
502* Fri Nov 30 2007 Tim Waugh <twaugh@redhat.com> 8.61-5
503- Fixed runlibfileifexists patch.
504
505* Fri Nov 30 2007 Tim Waugh <twaugh@redhat.com> 8.61-4
506- Revert previous change, but define .runlibfileifexists, not just
507  runlibfileifexists.
508
509* Wed Nov 28 2007 Tim Waugh <twaugh@redhat.com> 8.61-3
510- No longer need runlibfileifexists.
511- Use runlibfile in cidfmap.
512
513* Wed Nov 28 2007 Tim Waugh <twaugh@redhat.com> 8.61-2
514- Add /usr/share/fonts to fontpath (bug #402551).
515- Restore cidfmap-switching bits, except for FAPIcidfmap which is no
516  longer used.
517- Add runlibfileifexists to gs_init.ps.
518- Build with --disable-compile-inits (bug #402501).
519
520* Fri Nov 23 2007 Tim Waugh <twaugh@redhat.com> 8.61-1
521- 8.61.
522
523* Tue Oct 23 2007 Tim Waugh <twaugh@redhat.com> 8.60-5
524- Applied patch from upstream to fix CVE-2007-2721 (bug #346511).
525
526* Tue Oct  9 2007 Tim Waugh <twaugh@redhat.com> 8.60-4
527- Marked localized man pages as %%lang (bug #322321).
528
529* Thu Sep 27 2007 Tim Waugh <twaugh@redhat.com> 8.60-3
530- Back-ported mkstemp64 patch (bug #308211).
531
532* Thu Aug 23 2007 Tim Waugh <twaugh@redhat.com> 8.60-2
533- More specific license tag.
534
535* Fri Aug  3 2007 Tim Waugh <twaugh@redhat.com> 8.60-1
536- 8.60.
537
538* Mon Jul 16 2007 Tim Waugh <twaugh@redhat.com> 8.60-0.r8112.2
539- Own %%{_libdir}/ghostscript (bug #246026).
540
541* Tue Jul 10 2007 Tim Waugh <twaugh@redhat.com> 8.60-0.r8112.1
542- 8.60 snapshot from svn.  Patches dropped:
543  - big-cmap-post
544  - split-cidfnmap
545  - exactly-enable-cidfnmap
546  - Fontmap.local
547  No longer needed:
548  - gxcht-64bit-crash
549
550* Tue Apr 17 2007 Tim Waugh <twaugh@redhat.com> 8.15.4-3
551- Apply fonts in CIDFnmap even if the same fontnames are already registered
552  (bug #163231).
553- New file CIDFmap (bug #233966).
554- Allow local overrides for FAPIcidfmap, cidfmap and Fontmap (bug #233966).
555
556* Tue Apr  3 2007 Tim Waugh <twaugh@redhat.com> 8.15.4-2
557- Fixed configuration file locations (bug #233966).
558
559* Wed Mar 14 2007 Tim Waugh <twaugh@redhat.com> 8.15.4-1
560- 8.15.4.
561
562* Thu Jan 25 2007 Tim Waugh <twaugh@redhat.com> 8.15.3-7
563- dvipdf script fixes (bug #88906).
564- Moved libijs.so and libgs.so into devel package (bug #203623).
565
566* Wed Jan 24 2007 Tim Waugh <twaugh@redhat.com> 8.15.3-6
567- Configure with --with-drivers=ALL since the advertised default is not
568  what gets used (bug #223819).
569
570* Thu Jan 18 2007 Tim Waugh <twaugh@redhat.com> 8.15.3-5
571- Backported gxcht 64bit crash fix from GPL trunk (bug #177763).
572
573* Fri Jan 12 2007 Tim Waugh <twaugh@redhat.com> 8.15.3-4
574- Own cjkv directory (bug #221380, bug #222375).
575
576* Tue Dec  5 2006 Tim Waugh <twaugh@redhat.com> 8.15.3-3
577- Added split-cidfnmap patch (bug #194592).
578
579* Thu Nov 16 2006 Tim Waugh <twaugh@redhat.com> 8.15.3-2
580- 8.15.3.  No longer need gtk2, ps2epsi, badc, pagesize,
581  use-external-freetype, split-font-configuration or cjkv patches.
582- Renumbered patches.
583
584* Tue Oct  3 2006 Tim Waugh <twaugh@redhat.com> 8.15.2-9
585- Apply CJKV patch from svn164:165 plus the fix from svn173:174 (bug #194592,
586  bug #203712, possibly bug #167596).
587
588* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 8.15.2-8.1
589- rebuild
590
591* Fri Jun 23 2006 Tim Waugh <twaugh@redhat.com> 8.15.2-8
592- Revert CJKV patch.
593
594* Wed Jun 14 2006 Tomas Mraz <tmraz@redhat.com> - 8.15.2-7
595- rebuilt with new gnutls
596
597* Tue Jun 13 2006 Tim Waugh <twaugh@redhat.com> 8.15.2-6
598- Undo svn sync.
599- Apply CJKV patch from svn164:165.
600
601* Fri Jun  9 2006 Tim Waugh <twaugh@redhat.com> 8.15.2-5
602- Sync to svn165.
603
604* Fri May 26 2006 Tim Waugh <twaugh@redhat.com> 8.15.2-4
605- Fix ijs-config not to have multilib conflicts (bug #192672)
606
607* Tue May  2 2006 Tim Waugh <twaugh@redhat.com> 8.15.2-3
608- Remove adobe-cmaps and acro5-cmaps, since latest CMaps are already
609  included (bug #190463).
610
611* Tue Apr 25 2006 Tim Waugh <twaugh@redhat.com> 8.15.2-2
612- 8.15.2.
613- No longer need build, krgb, pdfwrite, str1570 patches.
614
615* Mon Apr 24 2006 Tim Waugh <twaugh@redhat.com> 8.15.1-10
616- Fix emacs interaction (bug #189321, STR #1570).
617
618* Mon Apr 10 2006 Tim Waugh <twaugh@redhat.com> 8.15.1-9
619- Add %%{_datadir}/fonts/japanese to font path (bug #188448).
620- Spec file cleanups (bug #188066).
621
622* Sat Apr  8 2006 Tim Waugh <twaugh@redhat.com>
623- Build requires libtool (bug #188341).
624
625* Thu Apr  6 2006 Tim Waugh <twaugh@redhat.com> 8.15.1-8
626- Fix pdfwrite (bug #187834).
627- CUPS filters go in /usr/lib/cups/filter even on lib64 platforms.
628
629* Thu Mar  2 2006 Tim Waugh <twaugh@redhat.com> 8.15.1-7
630- BuildRequires: gnutls-devel
631- Updated KRGB patch for gdevijs.
632
633* Tue Feb 28 2006 Karsten Hopp <karsten@redhat.de> 8.15.1-6
634- BuildRequires: libXt-devel
635
636* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 8.15.1-5.2
637- bump again for double-long bug on ppc(64)
638
639* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 8.15.1-5.1
640- rebuilt for new gcc4.1 snapshot and glibc changes
641
642* Mon Jan 30 2006 Tim Waugh <twaugh@redhat.com> 8.15.1-5
643- Updated adobe-cmaps to 200406 (bug #173613).
644
645* Fri Jan 27 2006 Tim Waugh <twaugh@redhat.com> 8.15.1-4
646- Support reading a big cmap/post table from a TrueType font.
647
648* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
649- rebuilt
650
651* Wed Nov  9 2005 Tomas Mraz <tmraz@redhat.com> 8.15.1-3
652- Build does not explicitly require xorg-x11-devel.
653
654* Wed Nov  9 2005 Tomas Mraz <tmraz@redhat.com> 8.15.1-2
655- rebuilt with new openssl
656
657* Mon Sep 26 2005 Tim Waugh <twaugh@redhat.com> 8.15.1-1
658- Some directories should be "8.15" not "8.15.1" (bug #169198).
659
660* Thu Sep 22 2005 Tim Waugh <twaugh@redhat.com> 8.15.1-0.1
661- 8.15.1.
662- No longer need overflow patch.
663
664* Tue Aug 16 2005 Tim Waugh <twaugh@redhat.com> 8.15-0.rc4.3
665- Rebuilt for new cairo.
666
667* Mon Aug 15 2005 Tim Waugh <twaugh@redhat.com> 8.15-0.rc4.2
668- Parametrize freetype, and disable it (bug #165962).
669
670* Fri Aug 12 2005 Tim Waugh <twaugh@redhat.com> 8.15-0.rc4.1
671- 8.15rc4.
672- Fixed lips4v driver (bug #165713).
673
674* Tue Aug  9 2005 Tim Waugh <twaugh@redhat.com> 8.15-0.rc3.7
675- Install adobe/acro5 CMaps (bug #165428).
676
677* Mon Jul 18 2005 Tim Waugh <twaugh@redhat.com> 8.15-0.rc3.6
678- Fixed split font configuration patch (bug #161187).
679
680* Wed Jul 13 2005 Tim Waugh <twaugh@redhat.com> 8.15-0.rc3.5
681- Split font configuration (bug #161187).
682- Reverted this change:
683  - Build requires xorg-x11-devel, not XFree86-devel.
684
685* Tue Jul 12 2005 Tim Waugh <twaugh@redhat.com> 8.15-0.rc3.4
686- Add Japanese fonts to FAPIcidfmap (bug #161187).
687- Moved Resource directory.
688- Added use-external-freetype patch (bug #161187).
689
690* Mon Jul 11 2005 Tim Waugh <twaugh@redhat.com>
691- Build requires libtiff-devel (bug #162826).
692
693* Thu Jun  9 2005 Tim Waugh <twaugh@redhat.com> 8.15-0.rc3.3
694- Build requires xorg-x11-devel, not XFree86-devel.
695- Include ierrors.h in the devel package.
696
697* Wed Jun  8 2005 Tim Waugh <twaugh@redhat.com> 8.15-0.rc3.2
698- Drop 'Provides: libijs.so' because it is incorrect.
699- Build igcref.c with -O0 to work around bug #150771.
700- Renumber patches.
701
702* Fri Jun  3 2005 Tim Waugh <twaugh@redhat.com> 8.15-0.rc3.1
703- Switch to ESP Ghostscript.
704- 8.15rc3.
705- Lots of patches dropped.  Perhaps some will need to be re-added.
706
707* Thu Mar 10 2005 Tim Waugh <twaugh@redhat.com> 7.07-40
708- Build igcref.c with -O0 to work around bug #150771.
709
710* Tue Mar  1 2005 Tim Waugh <twaugh@redhat.com> 7.07-39
711- Rebuilt for new GCC.
712
713* Mon Feb 21 2005 Tim Waugh <twaugh@redhat.com> 7.07-38
714- Fixes inspired by GCC 4.
715
716* Tue Jan 18 2005 Tim Waugh <twaugh@redhat.com>
717- Correct permissions for %%{_datadir}/ghostscript/Resource (bug #145420).
718
719* Fri Dec 10 2004 Tim Waugh <twaugh@redhat.com> 7.07-37
720- Fixed missing return statement (bug #136757).
721
722* Thu Dec  9 2004 Tim Waugh <twaugh@redhat.com> 7.07-36
723- Remove VFlib2 bits (bug #120498).
724
725* Fri Dec  3 2004 Tim Waugh <twaugh@redhat.com> 7.07-35
726- Added /etc/ghostscript to search path and to file manifest (bug #98974).
727
728* Sat Nov 20 2004 Miloslav Trmac <mitr@redhat.com> - 7.07-34
729- Convert man pages to UTF-8
730
731* Wed Oct 20 2004 Tim Waugh <twaugh@redhat.com> 7.07-33
732- Fix for bug #136322 (temporary files).
733
734* Tue Sep 28 2004 Tim Waugh <twaugh@redhat.com> 7.07-32
735- Turn off fontconfig until it's fixed (bug #133353).
736
737* Wed Aug 18 2004 Tim Waugh <twaugh@redhat.com> 7.07-31
738- Only ship gsx in the gtk subpackage.
739
740* Fri Aug  6 2004 Tim Waugh <twaugh@redhat.com>
741- Run /sbin/ldconfig in %%post/%%postun.
742- Stricter requirements for the main package in the subpackages.
743
744* Tue Jul 20 2004 Tim Waugh <twaugh@redhat.com> 7.07-30
745- Updated eplaser driver to add alc4000 (bug #128007).
746
747* Fri Jun 25 2004 Tim Waugh <twaugh@redhat.com> 7.07-29
748- Prevent pdf2ps generating "null setpagesize" (bug #126446).
749
750* Thu Jun 24 2004 Tim Waugh <twaugh@redhat.com> 7.07-28
751- Fix Omni patch assumption about /usr/lib which breaks for multilib
752  architectures.
753
754* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
755- rebuilt
756
757* Tue Jun  1 2004 Tim Waugh <twaugh@redhat.com> 7.07-26
758- Removed another debug message from the fontconfig patch.
759
760* Tue Mar  9 2004 Tim Waugh <twaugh@redhat.com> 7.07-25
761- Added bjc250gs driver (bug #117860).
762
763* Thu Mar  4 2004 Tim Waugh <twaugh@redhat.com> 7.07-24
764- Fix compilation with GCC 3.4.
765
766* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
767- rebuilt
768
769* Wed Feb 18 2004 Tim Waugh <twaugh@redhat.com> 7.07-23
770- Build against gtk2/glib2 (bug #115619).  Patch from W. Michael Petullo.
771
772* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com> 7.07-22
773- rebuilt
774
775* Thu Feb 12 2004 Tim Waugh <twaugh@redhat.com> 7.07-21
776- Leave gdevpdfm.c seemingly-mistaken bitwise ops alone (bug #115396).
777
778* Thu Feb  5 2004 Tim Waugh <twaugh@redhat.com> 7.07-20
779- Fix compilation with GCC 3.4.
780
781* Wed Jan 28 2004 Tim Waugh <twaugh@redhat.com> 7.07-19
782- Attempt to fix gdevcups crash (bug #114256).
783- Make gs dynamically link to libgs (bug #114276).
784- Fix gdevesmv.c's misuse of const (bug #114250).
785
786* Tue Jan 20 2004 Tim Waugh <twaugh@redhat.com> 7.07-18
787- Turn on libgs again (bug #88175).
788
789* Mon Jan 19 2004 Tim Waugh <twaugh@redhat.com> 7.07-17
790- Removed stp driver.  Use the IJS version (ijsgimpprint) instead.
791- No longer conflicts with foomatic for hpijs versioning.
792
793* Mon Jan 12 2004 Tim Waugh <twaugh@redhat.com> 7.07-16
794- Split hpijs out into separate source package.
795
796* Thu Jan 8  2004 Tim Waugh <twaugh@redhat.com>
797- Fix several mistakenly-used bitwise operations.
798
799* Tue Jan 6  2004 Tim Waugh <twaugh@redhat.com> 7.07-15
800- Build for Fedora Core 1 printer drivers update.
801- Conflicts with foomatic before hpijs 1.5 data.
802- Make fontconfig optional.
803
804* Sat Dec 13 2003 Tim Waugh <twaugh@redhat.com> 7.07-14
805- Disable unnecessary debug messages from fontconfig support.
806
807* Fri Dec  5 2003 Tim Waugh <twaugh@redhat.com> 7.07-13
808- Add fontconfig support (bug #111412).
809
810* Thu Nov 27 2003 Tim Waugh <twaugh@redhat.com>
811- Build requires libjpeg-devel (bug #110737).
812
813* Tue Nov 11 2003 Tim Waugh <twaugh@redhat.com> 7.07-12
814- Updated hpijs to 1.5 (bug #109714).
815
816* Mon Nov 10 2003 Tim Waugh <twaugh@redhat.com>
817- Updated lxm3200 patch (bug #109625).
818
819* Tue Sep 30 2003 Tim Waugh <twaugh@redhat.com> 7.07-11
820- Updated gdevcups.c from CUPS 1.1.19.
821- Apply NOMEDIAATTRS patch from CUPS 1.1.19 (bug #105401).
822
823* Thu Aug 28 2003 Tim Waugh <twaugh@redhat.com>
824- Fix lips4v driver (bug #92337).
825
826* Wed Aug 20 2003 Tim Waugh <twaugh@redhat.com> 7.07-10
827- Fix compilation problems in hpijs.
828
829* Mon Aug  4 2003 Tim Waugh <twaugh@redhat.com> 7.07-9
830- Further fix from bug #100685.
831
832* Thu Jul 31 2003 Tim Waugh <twaugh@redhat.com> 7.07-8
833- Further fix from bug #100685.
834
835* Tue Jul 29 2003 Tim Waugh <twaugh@redhat.com> 7.07-7
836- Further fix from bug #100685.
837
838* Fri Jul 25 2003 Tim Waugh <twaugh@redhat.com> 7.07-6
839- Further fix from bug #100557.
840
841* Thu Jul 24 2003 Tim Waugh <twaugh@redhat.com> 7.07-5
842- Further fix from bug #100557.
843- Fix bug #100685.
844
845* Wed Jul 23 2003 Tim Waugh <twaugh@redhat.com> 7.07-4
846- Fix bug #100557.
847
848* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com> 7.07-3
849- rebuilt
850
851* Tue May 27 2003 Tim Waugh <twaugh@redhat.com>
852- Fix sed usage in ps2epsi (bug #89300).
853
854* Tue May 20 2003 Tim Waugh <twaugh@redhat.com> 7.07-2
855- HPIJS 1.4 (bug #91219).
856
857* Sun May 18 2003 Tim Waugh <twaugh@redhat.com> 7.07-1
858- 7.07.
859- Parametrize build_libgs.
860- Remove Omni requirement (bug #88177).
861- Fix ghostscript-gtk obsoletes: line (bug #88175).
862
863* Thu Apr  3 2003 Tim Waugh <twaugh@redhat.com> 7.06-1
864- 7.06.
865- Updated config, vflib.fixup patches.
866- No longer need dx6, jpeg patches.
867- No longer need to add in missed GNU drivers.
868- Turn off dj970 driver (hpijs drives that).
869
870* Mon Mar 31 2003 Tim Waugh <twaugh@redhat.com> 7.05-34
871- Apply fix for CJK font search method when the fonts are not available
872  (bug #83516).
873- The gb18030 patch no longer applies here.
874
875* Thu Mar 27 2003 Tim Waugh <twaugh@redhat.com> 7.05-33
876- Add some missing font aliases (bug #73342).
877- Use the system jpeg library.
878- Update hpijs to 1.3.1.
879- Update gdevcups.c from cups-1.1.18.
880
881* Mon Feb 24 2003 Elliot Lee <sopwith@redhat.com> 7.05-32
882- debuginfo rebuild
883
884* Fri Feb 21 2003 Elliot Lee <sopwith@redhat.com> 7.05-31
885- Add ghostscript-7.05-oob-66421.patch to fix the segfault behind #66421
886
887* Thu Jan 30 2003 Tim Waugh <twaugh@redhat.com> 7.05-30
888- Remove rss patch from hpijs (not needed).
889
890* Wed Jan 22 2003 Tim Powers <timp@redhat.com> 7.05-29
891- rebuilt
892
893* Thu Jan 16 2003 Tim Waugh <twaugh@redhat.com> 7.05-28
894- Add Korean font aliases to CIDFnmap CJK resource files (bug #81924).
895
896* Sat Dec 14 2002 Tim Waugh <twaugh@redhat.com> 7.05-27
897- Obsolete ghostscript-gtk (bug #79585).
898- Omni 121002 patch.
899
900* Tue Dec 10 2002 Tim Waugh <twaugh@redhat.com> 7.05-26
901- Don't ship the shared object yet (part of bug #79340).
902- Don't make the gtk package, since that needs the shared object.
903
904* Tue Nov 26 2002 Tim Waugh <twaugh@redhat.com> 7.05-25
905- Fix level 1 PostScript output (bug #78450).
906- No need to carry gomni.c, since it comes from the patch.
907
908* Mon Nov 11 2002 Tim Waugh <twaugh@redhat.com> 7.05-24
909- Omni 071902 patch.
910
911* Mon Nov 11 2002 Tim Waugh <twaugh@redhat.com> 7.05-23
912- hpijs-1.3, with updated rss patch.
913- Fix XLIBDIRS.
914
915* Fri Oct 25 2002 Tim Waugh <twaugh@redhat.com> 7.05-22
916- hpijs-rss 1.2.2.
917
918* Mon Oct 14 2002 Tim Waugh <twaugh@redhat.com> 7.05-21
919- Set libdir when installing.
920
921* Thu Aug 15 2002 Tim Waugh <twaugh@redhat.com> 7.05-20
922- Add cups device (bug #69573).
923
924* Mon Aug 12 2002 Tim Waugh <twaugh@redhat.com> 7.05-19
925- Fix the gb18030 patch (bug #71135, bug #71303).
926
927* Sat Aug 10 2002 Elliot Lee <sopwith@redhat.com> 7.05-18
928- rebuilt with gcc-3.2 (we hope)
929
930* Fri Aug  9 2002 Tim Waugh <twaugh@redhat.com> 7.05-17
931- Add CIDnmap for GB18030 font (bug #71135).
932- Fix URL (bug #70734).
933
934* Tue Jul 23 2002 Tim Waugh <twaugh@redhat.com> 7.05-16
935- Rebuild in new environment.
936
937* Tue Jul  9 2002 Tim Waugh <twaugh@redhat.com> 7.05-15
938- Remove the chp2200 driver again, to fix cdj890 (bug #67578).
939
940* Fri Jul  5 2002 Tim Waugh <twaugh@redhat.com> 7.05-14
941- For CJK font support, use CIDFnmap instead of CIDFont
942  resources (bug #68009).
943
944* Wed Jul  3 2002 Tim Waugh <twaugh@redhat.com> 7.05-13
945- Build requires unzip and gtk+-devel (bug #67799).
946
947* Wed Jun 26 2002 Tim Waugh <twaugh@redhat.com> 7.05-12
948- File list tweaking.
949- More file list tweaking.
950
951* Tue Jun 25 2002 Tim Waugh <twaugh@redhat.com> 7.05-10
952- Rebuild for bootstrap.
953
954* Wed Jun 19 2002 Tim Waugh <twaugh@redhat.com> 7.05-9
955- Omni 052902 patch.
956
957* Mon Jun 10 2002 Tim Waugh <twaugh@redhat.com> 7.05-8
958- Requires recent version of patchutils (bug #65947).
959- Don't ship broken man page symlinks (bug #66238).
960
961* Wed May 29 2002 Tim Waugh <twaugh@redhat.com> 7.05-7
962- Put gsx in its own package.
963
964* Tue May 28 2002 Tim Waugh <twaugh@redhat.com> 7.05-6
965- New gomni.c from IBM to fix an A4 media size problem.
966- Use new Adobe CMaps (bug #65362).
967
968* Sun May 26 2002 Tim Powers <timp@redhat.com> 7.05-5
969- automated rebuild
970
971* Wed May 22 2002 Tim Waugh <twaugh@redhat.com> 7.05-4
972- New gomni.c from IBM to fix bug #65269 (again).
973
974* Tue May 21 2002 Tim Waugh <twaugh@redhat.com> 7.05-2
975- Don't apply bogus parts of vflib patch (bug #65268).
976- Work around Omni -sPAPERSIZE=a4 problem (bug #65269).
977
978* Mon May 20 2002 Tim Waugh <twaugh@redhat.com> 7.05-1
979- 7.05.
980- No longer need mkstemp, vflib.fixup, quoting, or PARANOIDSAFER
981  patches.
982- Don't apply CJK patches any more (no longer needed).
983- Updated Source15, Patch0, Patch10, Patch5, Patch24, Patch14, Patch12.
984- Made gdevdmpr.c compile again.
985- Move gimp-print to a separate package.
986- Ship the shared object too (and a .so file that is dlopened).
987- Update Omni patch.  No longer need Omni_path, Omni_quiet, Omni_glib patches.
988- Require Omni >= 0.6.1.
989- Add patch to fix gtk+ initial window size.
990- Add devel package with header files.
991- Turn on IJS support.
992- Update hpijs to 1.1.
993- Don't ship the hpijs binary in the ghostscript package.
994- Use -fPIC when building ijs.
995
996* Wed Apr  3 2002 Tim Waugh <twaugh@redhat.com> 6.52-8
997- New CIDFonts (bug #61015).
998
999* Wed Apr  3 2002 Tim Waugh <twaugh@redhat.com> 6.52-7
1000- Fix release numbers of sub packages.
1001- Handle info files, use ldconfig (bug #62574).
1002
1003* Tue Mar 19 2002 Tim Waugh <twaugh@redhat.com> 6.52-6
1004- Fix config patch so that gs --help displays the right thing.
1005- Don't ship sysvlp.sh.
1006- Fix some shell scripts.
1007- Ship escputil man page (bug #58919).
1008
1009* Mon Feb 11 2002 Tim Waugh <twaugh@redhat.com> 6.52-5
1010- Add CHP2200 driver (bug #57516).
1011- Fix gimp-print-4.2.0 so that it builds without cups-config.
1012
1013* Sat Feb  2 2002 Bill Nottingham <notting@redhat.com> 6.52-4
1014- do condrestart in %postun, not %post
1015
1016* Fri Feb  1 2002 Bernhard Rosenkraenzer <bero@redhat.com> 6.52-3
1017- Restart service cups after installing gimp-print-cups
1018
1019* Sun Jan 27 2002 Bernhard Rosenkraenzer <bero@redhat.com> 6.52-2
1020- hpijs is finally free - support it.
1021- Add extra package for CUPS support
1022
1023* Mon Jan 21 2002 Bernhard Rosenkraenzer <bero@redhat.com> 6.52-1
1024- Updates:
1025  - ghostscript 6.52
1026  - hpdj 2.6 -> pcl3 3.3
1027  - CJK Patchlevel 3, adobe-cmaps 200109
1028  - gimp-print 4.2.0
1029- Adapt patches
1030- Fix various URLs
1031- Begin cleaning up spec file
1032- Fix bugs #21879 and #50923
1033
1034* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
1035- automated rebuild
1036
1037* Thu Oct 18 2001 Crutcher Dunnavant <crutcher@redhat.com> 6.51-16
1038- update the Omni driver, and patch it to seek in /usr/lib/Omni/ first
1039- require Omni
1040
1041* Mon Oct 01 2001 Crutcher Dunnavant <crutcher@redhat.com> 6.51-15
1042- change -dPARANOIDSAFER to punch a hole for OutputFile
1043
1044* Mon Sep 17 2001 Crutcher Dunnavant <crutcher@redhat.com> 6.51-14
1045- add -dPARANOIDSAFER to let us breathe a little easier in the print spooler.
1046
1047* Thu Sep 13 2001 Crutcher Dunnavant <crutcher@redhat.com> 6.51-13
1048- apply jakub's fix to ghostscript's jmp_buf problems; #49591
1049
1050* Wed Sep  5 2001 Crutcher Dunnavant <crutcher@redhat.com> 6.51-12
1051- fix lprsetup.sh; #50925
1052
1053* Fri Aug 24 2001 Crutcher Dunnavant <crutcher@redhat.com> 6.51-11
1054- added Epson's old eplaseren drivers,
1055- pointed out by Till Kamppeter <till.kamppeter@gmx.net>
1056
1057* Tue Aug 21 2001 Paul Howarth <paul@city-fan.org> 6.51-10
1058- included Samsung GDI driver for ML-4500 printer support.
1059
1060* Sun Aug 19 2001 Crutcher Dunnavant <crutcher@redhat.com> 6.51-9
1061- applied IBM's glib patches for Omni, which now works.
1062- BE AWARE: we now link against libstdc++ and glib for this, and use a c++
1063- link stage to do the dirty.
1064- added glib-devel buildreq and glib req, I don't think we require everything
1065- yet, I could pull in sasl.
1066
1067* Sun Aug 19 2001 David Suffield <david_suffield@hp.com> 6.51-8
1068- Added gs device hpijs and updated gdevhpij.c to hpijs 0.97
1069
1070* Wed Aug 15 2001 Crutcher Dunnavant <crutcher@redhat.com> 6.51-7
1071- pull in ynakai's update to the cjk resources.
1072
1073* Thu Aug  9 2001 Crutcher Dunnavant <crutcher@redhat.com> 6.51-6
1074- turn dmprt and cdj880 back on. for some reason, they work now.
1075- voodoo, who knows.
1076
1077* Thu Aug  9 2001 Yukihiro Nakai <ynakai@redhat.com> 6.51-5
1078- Add cjk resources
1079
1080* Wed Aug  1 2001 Crutcher Dunnavant <crutcher@redhat.com> 6.51-4
1081- applied drepper@redhat.com's patch for #50300
1082- fixed build deps on zlib-devel and libpng-devel, #49853
1083- made gs_init.ps a config file; #25096
1084- O\^/nZ the daTa directorieZ now; #50693
1085
1086* Tue Jul 24 2001 Crutcher Dunnavant <crutcher@redhat.com> 6.51-3
1087- wired up the Resource dir and the Font and CIDFont maps.
1088
1089* Mon Jul 23 2001 Crutcher Dunnavant <crutcher@redhat.com> 6.51-2
1090- luckily, I had a spare chicken. Thanks to some work by Nakai, and one last
1091- desperate search through google, everything /seems/ to be working. I know
1092- that there are going to be problems in the japanese code, and I need to turn
1093- on the cjk font map from adobe, but it /works/ at the moment.
1094
1095* Thu Jun 21 2001 Crutcher Dunnavant <crutcher@redhat.com>
1096- upgraded to 6.51, a major version upgrade
1097- rewrote spec file, threw out some patches
1098- turned on IBM's Omni print drivers interface
1099- turned on HP's hpijs print drivers interface
1100- turned on every driver that looked usable from linux
1101- sacrificed a chicken to integrate the old Japanese drivers
1102- - This didn't work. The japanese patches are turned off, pending review.
1103- - I can do loops with C, but the bugs are in Postscript init files
1104
1105* Wed Apr 11 2001 Crutcher Dunnavant <crutcher@redhat.com>
1106- added P. B. West's lx5000 driver
1107
1108* Tue Feb 27 2001 Crutcher Dunnavant <crutcher@redhat.com>
1109- added xtt-fonts requirement (for VFlib)
1110
1111* Fri Feb  9 2001 Adrian Havill <havill@redhat.com>
1112- cmpskit removed as a build prereq
1113
1114* Thu Feb  8 2001 Crutcher Dunnavant <crutcher@redhat.com>
1115- merged in some patches that got away:
1116-       * Fri Sep  1 2000 Mitsuo Hamada <mhamada@redhat.com>
1117        - add support JIS B size
1118        - fix the problem of reconverting GNUPLOT output
1119
1120* Thu Feb  8 2001 Crutcher Dunnavant <crutcher@redhat.com>
1121- switched to japanese for everybody
1122
1123* Thu Feb  8 2001 Crutcher Dunnavant <crutcher@redhat.com>
1124- tweaked time_.h to test for linux, and include the right
1125- header
1126
1127* Wed Feb  7 2001 Crutcher Dunnavnat <crutcher@redhat.com>
1128- added the lxm3200 driver
1129
1130* Mon Dec 11 2000 Crutcher Dunnavant <crutcher@redhat.com>
1131- merged in the (accendental) branch that contained the mktemp
1132- and LD_RUN_PATH bug fixes.
1133
1134* Tue Oct 17 2000 Jeff Johnson <jbj@redhat.com>
1135- tetex using xdvi with ghostscript patch (#19212).
1136
1137* Tue Sep 12 2000 Michael Stefaniuc <mstefani@redhat.com>
1138- expanded the gcc296 patch to fix a compilation issue with the new stp
1139  driver
1140
1141* Mon Sep 11 2000 Michael Stefaniuc <mstefani@redhat.com>
1142- added the stp driver from the gimp-print project.
1143  It supports high quality printing especialy with Epson Stylus Photo.
1144
1145* Wed Aug  2 2000 Matt Wilson <msw@redhat.com>
1146- rebuilt against new libpng
1147
1148* Wed Aug  2 2000 Bernhard Rosenkraenzer <bero@redhat.com>
1149- Fix up the cdj880 patch (Bug #14978)
1150- Fix build with gcc 2.96
1151
1152* Fri Jul 21 2000 Bill Nottingham <notting@redhat.com>
1153- turn off japanese support
1154
1155* Thu Jul 13 2000 Prospector <bugzilla@redhat.com>
1156- automatic rebuild
1157
1158* Fri Jul 07 2000 Trond Eivind Glomsrød <teg@redhat.com>
1159- fixed the broken inclusion of files in /usr/doc
1160- Build requires freetype-devel
1161
1162* Fri Jun 16 2000 Matt Wilson <msw@redhat.com>
1163- build japanese support in main distribution
1164- FHS manpage paths
1165
1166* Sun Mar 26 2000 Chris Ding <cding@redhat.com>
1167- enabled bmp16m driver
1168
1169* Thu Mar 23 2000 Matt Wilson <msw@redhat.com>
1170- added a boatload of Japanese printers
1171
1172* Thu Mar 16 2000 Matt Wilson <msw@redhat.com>
1173- add japanese support, enable_japanese macro
1174
1175* Mon Feb 14 2000 Bernhard Rosenkraenzer <bero@redhat.com>
1176- 5.50 at last...
1177- hpdj 2.6
1178- Added 3rd party drivers:
1179  - Lexmark 5700 (lxm5700m)
1180  - Alps MD-* (md2k, md5k)
1181  - Lexmark 2050, 3200, 5700 and 7000 (lex2050, lex3200, lex5700, lex7000)
1182
1183* Fri Feb  4 2000 Bernhard Rosenkraenzer <bero@redhat.com>
1184- rebuild to compress man page
1185- fix gs.1 symlink
1186
1187* Wed Jan 26 2000 Bill Nottingham <notting@redhat.com>
1188- add stylus 740 uniprint files
1189
1190* Thu Jan 13 2000 Preston Brown <pbrown@redhat.com>
1191- add lq850 dot matrix driver (#6357)
1192
1193* Thu Oct 28 1999 Bill Nottingham <notting@redhat.com>
1194- oops, include oki182 driver.
1195
1196* Tue Aug 24 1999 Bill Nottingham <notting@redhat.com>
1197- don't optimize on Alpha. This way it works.
1198
1199* Thu Jul 29 1999 Michael K. Johnson <johnsonm@redhat.com>
1200- added hpdj driver
1201- changed build to use tar_cat so adding new drivers is sane
1202
1203* Thu Jul  1 1999 Bill Nottingham <notting@redhat.com>
1204- add OkiPage 4w+, HP 8xx drivers
1205* Mon Apr  5 1999 Bill Nottingham <notting@redhat.com>
1206- fix typo in config patch.
1207
1208* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
1209- auto rebuild in the new build environment (release 6)
1210
1211* Mon Mar 15 1999 Cristian Gafton <gafton@redhat.com>
1212- added patch from rth to fix alignement problems on the alpha.
1213
1214* Wed Feb 24 1999 Preston Brown <pbrown@redhat.com>
1215- Injected new description and group.
1216
1217* Mon Feb 08 1999 Bill Nottingham <notting@redhat.com>
1218- add uniprint .upp files
1219
1220* Sat Feb 06 1999 Preston Brown <pbrown@redhat.com>
1221- fontpath update.
1222
1223* Wed Dec 23 1998 Preston Brown <pbrown@redhat.com>
1224- updates for ghostscript 5.10
1225
1226* Fri Nov 13 1998 Preston Brown <pbrown@redhat.com>
1227- updated to use shared urw-fonts package.
1228* Mon Nov 09 1998 Preston Brown <pbrown@redhat.com>
1229- turned on truetype (ttf) font support.
1230
1231* Thu Jul  2 1998 Jeff Johnson <jbj@redhat.com>
1232- updated to 4.03.
1233
1234* Tue May 05 1998 Cristian Gafton <gafton@redhat.com>
1235- enabled more printer drivers
1236- buildroot
1237
1238* Mon Apr 27 1998 Prospector System <bugs@redhat.com>
1239- translations modified for de, fr, tr
1240
1241* Mon Mar 03 1997 Erik Troan <ewt@redhat.com>
1242- Made /usr/share/ghostscript/3.33/Fontmap a config file.
Note: See TracBrowser for help on using the repository browser.