/[pkgs]/devel/ghostscript/ghostscript.spec
ViewVC logotype

Contents of /devel/ghostscript/ghostscript.spec

Parent Directory Parent Directory | Revision Log Revision Log


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

admin@fedoraproject.org
ViewVC Help
Powered by ViewVC 1.1.2