source: projects/specs/branches/6/g/ghostscript/ghostscript-vl.spec @ 6043

Revision 6043, 40.1 KB checked in by tomop, 12 years ago (diff)

ghostscript-8.71-5

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