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

Revision 3262, 40.0 KB checked in by daisuke, 13 years ago (diff)

ghostscript:

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