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

Revision 6854, 40.5 KB checked in by iwamoto, 12 years ago (diff)

update: ghostscript

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