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

Revision 521, 39.8 KB checked in by daisuke, 14 years ago (diff)

import VineSeed package specs

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