ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/free/rpms/freetype-freeworld/F-12/freetype-freeworld.spec
Revision: 1.3
Committed: Mon Dec 8 00:44:24 2008 UTC (4 years, 5 months ago) by kkofler
Branch: MAIN
CVS Tags: freetype-freeworld-2_3_7-2_fc11
Changes since 1.2: +7 -1 lines
Log Message:
* Mon Dec 08 2008 Kevin Kofler <Kevin@tigcc.ticalc.org> 2.3.7-2
- Add freetype-autohinter-ligature.patch by Behdad Esfahbod (rh#368561)

Line File contents
1 # Enable patented bytecode interpreter and patented subpixel rendering.
2 # Setting to 1 disables them.
3 %define without_bytecode_interpreter 0
4 %define without_subpixel_rendering 0
5
6 %{!?with_xfree86:%define with_xfree86 1}
7
8 Summary: A free and portable font rendering engine
9 Name: freetype-freeworld
10 Version: 2.3.7
11 Release: 2%{?dist}
12 License: FTL or GPLv2+
13 Group: System Environment/Libraries
14 URL: http://www.freetype.org
15 Source: http://download.savannah.gnu.org/releases/freetype/freetype-%{version}.tar.bz2
16 Source1: 99-DejaVu-autohinter-only.conf
17
18 Patch20: freetype-2.1.10-enable-ft2-bci.patch
19 Patch21: freetype-2.3.0-enable-spr.patch
20
21 # Enable otvalid and gxvalid modules
22 Patch46: freetype-2.2.1-enable-valid.patch
23
24 # Fix crash https://bugs.freedesktop.org/show_bug.cgi?id=6841
25 Patch89: freetype-2.2.1-memcpy-fix.patch
26
27 # Upstream patches
28 Patch101: freetype-autohinter-ligature.patch
29
30 BuildRoot: %{_tmppath}/%{name}-%{version}-root-%(%{__id_u} -n)
31
32 Requires: /etc/ld.so.conf.d
33 BuildRequires: libX11-devel
34
35 %description
36 The FreeType engine is a free and portable font rendering
37 engine, developed to provide advanced font support for a variety of
38 platforms and environments. FreeType is a library which can open and
39 manages font files as well as efficiently load, hint and render
40 individual glyphs. FreeType is not a font server or a complete
41 text-rendering library.
42
43 This version is compiled with the patented bytecode interpreter and subpixel
44 rendering enabled. It transparently overrides the system library using
45 ld.so.conf.d.
46
47
48 %package devel
49 Summary: FreeType development libraries and header files
50 Group: Development/Libraries
51 Requires: %{name} = %{version}-%{release}
52 Requires: zlib-devel
53 Requires: pkgconfig
54
55 %description devel
56 The freetype-devel package includes the static libraries and header files
57 for the FreeType font rendering engine.
58
59 Install freetype-devel if you want to develop programs which will use
60 FreeType.
61
62
63 %prep
64 %setup -q -n freetype-%{version}
65
66 %if ! %{without_bytecode_interpreter}
67 %patch20 -p1 -b .enable-ft2-bci
68 %endif
69
70 %if ! %{without_subpixel_rendering}
71 %patch21 -p1 -b .enable-spr
72 %endif
73
74 %patch46 -p1 -b .enable-valid
75
76 %patch89 -p1 -b .memcpy
77
78 %patch101 -p0 -b .autohinter-ligature
79
80 %build
81
82 %configure --disable-static
83 sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' builds/unix/libtool
84 sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' builds/unix/libtool
85 make %{?_smp_mflags}
86
87 %install
88 rm -rf $RPM_BUILD_ROOT
89
90 umask 0022
91
92 %makeinstall gnulocaledir=$RPM_BUILD_ROOT%{_datadir}/locale
93
94 # Don't package static a or .la files nor devel files
95 rm -rf $RPM_BUILD_ROOT%{_libdir}/*.{a,la,so} \
96 $RPM_BUILD_ROOT%{_libdir}/pkgconfig $RPM_BUILD_ROOT%{_bindir} \
97 $RPM_BUILD_ROOT%{_datadir}/aclocal $RPM_BUILD_ROOT%{_includedir}
98
99 # Move library to avoid conflict with official FreeType package
100 mkdir $RPM_BUILD_ROOT%{_libdir}/%{name}
101 mv -f $RPM_BUILD_ROOT%{_libdir}/libfreetype.so.* \
102 $RPM_BUILD_ROOT%{_libdir}/%{name}
103
104 # Register the library directory in /etc/ld.so.conf.d
105 mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/ld.so.conf.d
106 echo "%{_libdir}/%{name}" \
107 >$RPM_BUILD_ROOT%{_sysconfdir}/ld.so.conf.d/%{name}-%{_arch}.conf
108
109 # Disable BCI for DejaVu and Vera because it changes the font weight
110 install -D -p -m 0755 %{SOURCE1} \
111 $RPM_BUILD_ROOT%{_sysconfdir}/fonts/conf.d/99-DejaVu-autohinter-only.conf
112
113 %clean
114 rm -rf $RPM_BUILD_ROOT
115
116 %post -p /sbin/ldconfig
117
118 %postun -p /sbin/ldconfig
119
120 %files
121 %defattr(-,root,root)
122 %{_libdir}/%{name}
123 %doc ChangeLog README docs/LICENSE.TXT docs/FTL.TXT docs/GPL.TXT
124 %config(noreplace) %{_sysconfdir}/ld.so.conf.d/%{name}-%{_arch}.conf
125 %config(noreplace) %{_sysconfdir}/fonts/conf.d/*.conf
126
127 %changelog
128 * Mon Dec 08 2008 Kevin Kofler <Kevin@tigcc.ticalc.org> 2.3.7-2
129 - Add freetype-autohinter-ligature.patch by Behdad Esfahbod (rh#368561)
130
131 * Tue Sep 02 2008 Kevin Kofler <Kevin@tigcc.ticalc.org> 2.3.7-1
132 - Update to 2.3.7
133
134 * Sat Aug 09 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info - 2.3.6-2
135 - rebuild for RPM Fusion
136
137 * Thu Jun 19 2008 Kevin Kofler <Kevin@tigcc.ticalc.org> 2.3.6-1
138 - Update to 2.3.6 (also fixes CVE-2008-1806, CVE-2008-1807 and CVE-2008-1808)
139 - Drop multilib patch (outdated, not needed since we don't ship a -devel)
140
141 * Tue Sep 18 2007 Kevin Kofler <Kevin@tigcc.ticalc.org> 2.3.5-3.lvn8
142 - Update to 2.3.5
143 - Fix builds/unix/libtool to not emit rpath into binaries (#225770,
144 Adam Jackson)
145 - Drop unused freetype-doc tarball
146 - Use full URL for Source tag
147 - Fix License tag
148 - Ship license as %%doc
149
150 * Thu Apr 12 2007 Kevin Kofler <Kevin@tigcc.ticalc.org> 2.3.4-1.lvn7
151 - Rename to freetype-freeworld
152 - Enable bytecode interpreter and subpixel rendering
153 - Remove demos
154 - Remove devel subpackage, delete devel files after install
155 - Remove triggerpostun
156 - Install library to libdir/freetype-freeworld
157 - Register in /etc/ld.so.conf.d (trick lifted from ATLAS specfile)
158 - Set umask before install
159 - Disable BCI for DejaVu and Vera because it changes the font weight
160 - Update description
161
162 * Tue Apr 05 2007 Behdad Esfahbod <besfahbo@redhat.com> 2.3.4-1
163 - Update to 2.3.4.
164
165 * Thu Apr 05 2007 Behdad Esfahbod <besfahbo@redhat.com> 2.3.3-2
166 - Include new demos ftgrid and ftdiff in freetype-demos. (#235478)
167
168 * Thu Apr 05 2007 Behdad Esfahbod <besfahbo@redhat.com> 2.3.3-1
169 - Update to 2.3.3.
170
171 * Fri Mar 09 2007 Behdad Esfahbod <besfahbo@redhat.com> 2.3.2-1
172 - Update to 2.3.2.
173
174 * Fri Feb 02 2007 Behdad Esfahbod <besfahbo@redhat.com> 2.3.1-1
175 - Update to 2.3.1.
176
177 * Wed Jan 17 2007 Behdad Esfahbod <besfahbo@redhat.com> 2.3.0-2
178 - Add without_subpixel_rendering.
179 - Drop X11_PATH=/usr. Not needed anymore.
180
181 * Wed Jan 17 2007 Behdad Esfahbod <besfahbo@redhat.com> 2.3.0-1
182 - Update to 2.3.0.
183 - Drop upstream patches.
184 - Drop -fno-strict-aliasing, it should just work.
185 - Fix typo in ftconfig.h generation.
186
187 * Tue Jan 09 2007 Behdad Esfahbod <besfahbo@redhat.com> 2.2.1-16
188 - Backport binary-search fixes from HEAD
189 - Add freetype-2.2.1-ttcmap.patch
190 - Resolves: #208734
191
192 - Fix rendering issue with some Asian fonts.
193 - Add freetype-2.2.1-fix-get-orientation.patch
194 - Resolves: #207261
195
196 - Copy non-X demos even if not compiling with_xfree86.
197
198 - Add freetype-2.2.1-zero-item-size.patch, to fix crasher.
199 - Resolves #214048
200
201 - Add X11_PATH=/usr to "make"s, to find modern X.
202 - Resolves #212199
203
204 * Mon Sep 11 2006 Behdad Esfahbod <besfahbo@redhat.com> 2.2.1-10
205 - Fix crasher https://bugs.freedesktop.org/show_bug.cgi?id=6841
206 - Add freetype-2.2.1-memcpy-fix.patch
207
208 * Thu Sep 07 2006 Behdad Esfahbod <besfahbo@redhat.com> 2.2.1-9
209 - Add BuildRequires: libX11-devel (#205355)
210
211 * Tue Aug 29 2006 Behdad Esfahbod <besfahbo@redhat.com> 2.2.1-8
212 - Add freetype-composite.patch and freetype-more-composite.patch
213 from upstream. (#131851)
214
215 * Mon Aug 28 2006 Matthias Clasen <mclasen@redhat.com> - 2.2.1-7
216 - Require pkgconfig in the -devel package
217
218 * Fri Aug 18 2006 Jesse Keating <jkeating@redhat.com> - 2.2.1-6
219 - pass --disable-static to %%configure. (#172628)
220
221 * Thu Aug 17 2006 Jesse Keating <jkeating@redhat.com> - 2.2.1-5
222 - don't package static libs
223
224 * Sun Aug 13 2006 Matthias Clasen <mclasen@redhat.com> - 2.2.1-4.fc6
225 - fix a problem with the multilib patch (#202366)
226
227 * Thu Jul 27 2006 Matthias Clasen <mclasen@redhat.com> - 2.2.1-3
228 - fix multilib issues
229
230 * Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.2.1-2.1
231 - rebuild
232
233 * Fri Jul 07 2006 Behdad Esfahbod <besfahbo@redhat.com> 2.2.1-2
234 - Remove unused BuildRequires
235
236 * Fri Jul 07 2006 Behdad Esfahbod <besfahbo@redhat.com> 2.2.1-1
237 - Update to 2.2.1
238 - Remove FreeType 1, to move to extras
239 - Install new demos ftbench, ftchkwd, ftgamma, and ftvalid
240 - Enable modules gxvalid and otvalid
241
242 * Wed May 17 2006 Karsten Hopp <karsten@redhat.de> 2.1.10-6
243 - add buildrequires libICE-devel, libSM-devel
244
245 * Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 2.1.10-5.2.1
246 - bump again for double-long bug on ppc(64)
247
248 * Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2.1.10-5.2
249 - rebuilt for new gcc4.1 snapshot and glibc changes
250
251 * Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
252 - rebuilt
253
254 * Fri Nov 18 2005 Bill Nottingham <notting@redhat.com> 2.1.10-5
255 - Remove references to obsolete /usr/X11R6 paths
256
257 * Tue Nov 1 2005 Matthias Clasen <mclasen@redhat.com> 2.1.10-4
258 - Switch requires to modular X
259
260 * Fri Oct 21 2005 Matthias Clasen <mclasen@redhat.com> 2.1.10-3
261 - BuildRequire gettext
262
263 * Wed Oct 12 2005 Jason Vas Dias <jvdias@redhat.com> 2.1.10-2
264 - fix 'without_bytecode_interpreter 0' build: freetype-2.1.10-enable-ft2-bci.patch
265
266 * Fri Oct 7 2005 Matthias Clasen <mclasen@redhat.com> 2.1.10-1
267 - Update to 2.1.10
268 - Add necessary fixes
269
270 * Tue Aug 16 2005 Kristian Høgsberg <krh@redhat.com> 2.1.9-4
271 - Fix freetype-config on 64 bit platforms.
272
273 * Thu Jul 07 2005 Karsten Hopp <karsten@redhat.de> 2.1.9-3
274 - BuildRequires xorg-x11-devel
275
276 * Fri Mar 4 2005 David Zeuthen <davidz@redhat.com> - 2.1.9-2
277 - Rebuild
278
279 * Wed Aug 4 2004 Owen Taylor <otaylor@redhat.com> - 2.1.9-1
280 - Upgrade to 2.1.9
281 - Since we are just using automake for aclocal, use it unversioned,
282 instead of specifying 1.4.
283
284 * Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
285 - rebuilt
286
287 * Mon Apr 19 2004 Owen Taylor <otaylor@redhat.com> 2.1.7-4
288 - Add patch from freetype CVS to fix problem with eexec (#117743)
289 - Add freetype-devel to buildrequires and -devel requires
290 (Maxim Dzumanenko, #111108)
291
292 * Wed Mar 10 2004 Mike A. Harris <mharris@redhat.com> 2.1.7-3
293 - Added -fno-strict-aliasing to CFLAGS and CXXFLAGS to try to fix SEGV and
294 SIGILL crashes in mkfontscale which have been traced into freetype and seem
295 to be caused by aliasing issues in freetype macros (#118021)
296
297 * Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com> 2.1.7-2.1
298 - rebuilt
299
300 * Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com> 2.1.7-2
301 - rebuilt
302
303 * Fri Jan 23 2004 Owen Taylor <otaylor@redhat.com> 2.1.7-1
304 - Upgrade to 2.1.7
305
306 * Tue Sep 23 2003 Florian La Roche <Florian.LaRoche@redhat.de>
307 - allow compiling without the demos as that requires XFree86
308 (this allows bootstrapping XFree86 on new archs)
309
310 * Fri Aug 8 2003 Elliot Lee <sopwith@redhat.com> 2.1.4-4.1
311 - Rebuilt
312
313 * Tue Jul 8 2003 Owen Taylor <otaylor@redhat.com> 2.1.4-4.0
314 - Bump for rebuild
315
316 * Wed Jun 25 2003 Owen Taylor <otaylor@redhat.com> 2.1.4-3
317 - Fix crash with non-format-0 hdmx tables (found by David Woodhouse)
318
319 * Mon Jun 9 2003 Owen Taylor <otaylor@redhat.com> 2.1.4-1
320 - Version 2.1.4
321 - Relibtoolize to get deplibs right for x86_64
322 - Use autoconf-2.5x for freetype-1.4 to fix libtool-1.5 compat problem (#91781)
323 - Relativize absolute symlinks to fix the -debuginfo package
324 (#83521, Mike Harris)
325
326 * Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
327 - rebuilt
328
329 * Thu May 22 2003 Jeremy Katz <katzj@redhat.com> 2.1.3-9
330 - fix build with gcc 3.3
331
332 * Tue Feb 25 2003 Owen Taylor <otaylor@redhat.com>
333 - Add a memleak fix for the gzip backend from Federic Crozat
334
335 * Thu Feb 13 2003 Elliot Lee <sopwith@redhat.com> 2.1.3-7
336 - Run libtoolize/aclocal/autoconf so that libtool knows to generate shared libraries
337 on ppc64.
338 - Use _smp_mflags (for freetype 2.x only)
339
340 * Tue Feb 4 2003 Owen Taylor <otaylor@redhat.com>
341 - Switch to using %%configure (should fix #82330)
342
343 * Wed Jan 22 2003 Tim Powers <timp@redhat.com>
344 - rebuilt
345
346 * Mon Jan 6 2003 Owen Taylor <otaylor@redhat.com> 2.1.3-4
347 - Make FreeType robust against corrupt fonts with recursive composite
348 glyphs (#74782, James Antill)
349
350 * Thu Jan 2 2003 Owen Taylor <otaylor@redhat.com> 2.1.3-3
351 - Add a patch to implement FT_LOAD_TARGET_LIGHT
352 - Fix up freetype-1.4-libtool.patch
353
354 * Sat Dec 12 2002 Mike A. Harris <mharris@redhat.com> 2.1.3-2
355 - Update to freetype 2.1.3
356 - Removed ttmkfdir sources and patches, as they have been moved from the
357 freetype packaging to XFree86 packaging, and now to the ttmkfdir package
358 - Removed patches that are now included in 2.1.3:
359 freetype-2.1.1-primaryhints.patch, freetype-2.1.2-slighthint.patch,
360 freetype-2.1.2-bluefuzz.patch, freetype-2.1.2-stdw.patch,
361 freetype-2.1.2-transform.patch, freetype-2.1.2-autohint.patch,
362 freetype-2.1.2-leftright.patch
363 - Conditionalized inclusion of freetype 1.4 library.
364
365 * Wed Dec 04 2002 Florian La Roche <Florian.LaRoche@redhat.de>
366 - disable perl, it is not used at all
367
368 * Tue Dec 03 2002 Elliot Lee <sopwith@redhat.com> 2.1.2-11
369 - Instead of removing unpackaged file, include it in the package.
370
371 * Sat Nov 30 2002 Mike A. Harris <mharris@redhat.com> 2.1.2-10
372 - Attempted to fix lib64 issue in freetype-demos build with X11_LINKLIBS
373 - Cleaned up various _foodir macros throughtout specfile
374 - Removed with_ttmkfdir build option as it is way obsolete
375
376 * Fri Nov 29 2002 Tim Powers <timp@redhat.com> 2.1.2-8
377 - remove unpackaged files from the buildroot
378
379 * Wed Aug 28 2002 Owen Taylor <otaylor@redhat.com>
380 - Fix a bug with PCF metrics
381
382 * Fri Aug 9 2002 Owen Taylor <otaylor@redhat.com>
383 - Backport autohinter improvements from CVS
384
385 * Tue Jul 23 2002 Owen Taylor <otaylor@redhat.com>
386 - Fix from CVS for transformations (#68964)
387
388 * Tue Jul 9 2002 Owen Taylor <otaylor@redhat.com>
389 - Add another bugfix for the postscript hinter
390
391 * Mon Jul 8 2002 Owen Taylor <otaylor@redhat.com>
392 - Add support for BlueFuzz private dict value, fixing rendering
393 glitch for Luxi Mono.
394
395 * Wed Jul 3 2002 Owen Taylor <otaylor@redhat.com>
396 - Add an experimental FT_Set_Hint_Flags() call
397
398 * Mon Jul 1 2002 Owen Taylor <otaylor@redhat.com>
399 - Update to 2.1.2
400 - Add a patch fixing freetype PS hinter bug
401
402 * Fri Jun 21 2002 Mike A. Harris <mharris@redhat.com> 2.1.1-2
403 - Added ft rpm build time conditionalizations upon user requests
404
405 * Tue Jun 11 2002 Owen Taylor <otaylor@redhat.com> 2.1.1-1
406 - Version 2.1.1
407
408 * Mon Jun 10 2002 Owen Taylor <otaylor@redhat.com>
409 - Add a fix for PCF character maps
410
411 * Sun May 26 2002 Tim Powers <timp@redhat.com>
412 - automated rebuild
413
414 * Fri May 17 2002 Mike A. Harris <mharris@redhat.com> 2.1.0-2
415 - Updated freetype to version 2.1.0
416 - Added libtool fix for freetype 1.4 (#64631)
417
418 * Wed Mar 27 2002 Nalin Dahyabhai <nalin@redhat.com> 2.0.9-2
419 - use "libtool install" instead of "install" to install some binaries (#62005)
420
421 * Mon Mar 11 2002 Mike A. Harris <mharris@redhat.com> 2.0.9-1
422 - Updated to freetype 2.0.9
423
424 * Sun Feb 24 2002 Mike A. Harris <mharris@redhat.com> 2.0.8-4
425 - Added proper docs+demos source for 2.0.8.
426
427 * Sat Feb 23 2002 Mike A. Harris <mharris@redhat.com> 2.0.8-3
428 - Added compat patch so 2.x works more like 1.x
429 - Rebuilt with new build toolchain
430
431 * Fri Feb 22 2002 Mike A. Harris <mharris@redhat.com> 2.0.8-2
432 - Updated to freetype 2.0.8, however docs and demos are stuck at 2.0.7
433 on the freetype website. Munged specfile to deal with the problem by using
434 {oldversion} instead of version where appropriate. <sigh>
435
436 * Sat Feb 2 2002 Tim Powers <timp@redhat.com> 2.0.6-3
437 - bumping release so that we don't collide with another build of
438 freetype, make sure to change the release requirement in the XFree86
439 package
440
441 * Fri Feb 1 2002 Mike A. Harris <mharris@redhat.com> 2.0.6-2
442 - Made ttmkfdir inclusion conditional, and set up a define to include
443 ttmkfdir in RHL 7.x builds, since ttmkfdir is now moving to the new
444 XFree86-font-utils package.
445
446 * Wed Jan 16 2002 Mike A. Harris <mharris@redhat.com> 2.0.6-1
447 - Updated freetype to version 2.0.6
448
449 * Wed Jan 09 2002 Tim Powers <timp@redhat.com> 2.0.5-4
450 - automated rebuild
451
452 * Fri Nov 30 2001 Elliot Lee <sopwith@redhat.com> 2.0.5-3
453 - Fix bug #56901 (ttmkfdir needed to list Unicode encoding when generating
454 font list). (ttmkfdir-iso10646.patch)
455 - Use _smp_mflags macro everywhere relevant. (freetype-pre1.4-make.patch)
456 - Undo fix for #24253, assume compiler was fixed.
457
458 * Mon Nov 12 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.0.5-2
459 - Fix build with gcc 3.1 (#56079)
460
461 * Sun Nov 11 2001 Mike A. Harris <mharris@redhat.com> 2.0.5-1
462 - Updated freetype to version 2.0.5
463
464 * Sat Sep 22 2001 Mike A. Harris <mharris@redhat.com> 2.0.4-2
465 - Added new subpackage freetype-demos, added demos to build
466 - Disabled ftdump, ftlint in utils package favoring the newer utils in
467 demos package.
468
469 * Tue Sep 11 2001 Mike A. Harris <mharris@redhat.com> 2.0.4-1
470 - Updated source to 2.0.4
471 - Added freetype demo's back into src.rpm, but not building yet.
472
473 * Wed Aug 15 2001 Mike A. Harris <mharris@redhat.com> 2.0.3-7
474 - Changed package to use {findlang} macro to fix bug (#50676)
475
476 * Sun Jul 15 2001 Mike A. Harris <mharris@redhat.com> 2.0.3-6
477 - Changed freetype-devel to group Development/Libraries (#47625)
478
479 * Mon Jul 9 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.0.3-5
480 - Fix up FT1 headers to please Qt 3.0.0 beta 2
481
482 * Sun Jun 24 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.0.3-4
483 - Add ft2build.h to -devel package, since it's included by all other
484 freetype headers, the package is useless without it
485
486 * Thu Jun 21 2001 Nalin Dahyabhai <nalin@redhat.com> 2.0.3-3
487 - Change "Requires: freetype = name/ver" to "freetype = version/release",
488 and move the requirements to the subpackages.
489
490 * Mon Jun 18 2001 Mike A. Harris <mharris@redhat.com> 2.0.3-2
491 - Added "Requires: freetype = name/ver"
492
493 * Tue Jun 12 2001 Mike A. Harris <mharris@redhat.com> 2.0.3-1
494 - Updated to Freetype 2.0.3, minor specfile tweaks.
495 - Freetype2 docs are is in a separate tarball now. Integrated it.
496 - Built in new environment.
497
498 * Fri Apr 27 2001 Bill Nottingham <notting@redhat.com>
499 - rebuild for C++ exception handling on ia64
500
501 * Sat Jan 20 2001 Bernhard Rosenkraenzer <bero@redhat.com>
502 - Build ttmkfdir with -O0, workaround for Bug #24253
503
504 * Fri Jan 19 2001 Nalin Dahyabhai <nalin@redhat.com>
505 - libtool is used to build libttf, so use libtool to link ttmkfdir with it
506 - fixup a paths for a couple of missing docs
507
508 * Thu Jan 11 2001 Bernhard Rosenkraenzer <bero@redhat.com>
509 - Update ttmkfdir
510
511 * Wed Dec 27 2000 Bernhard Rosenkraenzer <bero@redhat.com>
512 - Update to 2.0.1 and 1.4
513 - Mark locale files as such
514
515 * Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
516 - automatic rebuild
517
518 * Mon Jun 12 2000 Preston Brown <pbrown@redhat.com>
519 - move .la file to devel pkg
520 - FHS paths
521
522 * Thu Feb 17 2000 Preston Brown <pbrown@redhat.com>
523 - revert spaces patch, fix up some foundry names to match X ones
524
525 * Mon Feb 07 2000 Nalin Dahyabhai <nalin@redhat.com>
526 - add defattr, ftmetric, ftsbit, ftstrtto per bug #9174
527
528 * Wed Feb 02 2000 Cristian Gafton <gafton@redhat.com>
529 - fix description and summary
530
531 * Wed Jan 12 2000 Preston Brown <pbrown@redhat.com>
532 - make ttmkfdir replace spaces in family names with underscores (#7613)
533
534 * Tue Jan 11 2000 Bernhard Rosenkraenzer <bero@redhat.com>
535 - 1.3.1
536 - handle RPM_OPT_FLAGS
537
538 * Wed Nov 10 1999 Preston Brown <pbrown@redhat.com>
539 - fix a path for ttmkfdir Makefile
540
541 * Thu Aug 19 1999 Preston Brown <pbrown@redhat.com>
542 - newer ttmkfdir that works better, moved ttmkfdir to /usr/bin from /usr/sbin
543 - freetype utilities moved to subpkg, X dependency removed from main pkg
544 - libttf.so symlink moved to devel pkg
545
546 * Mon Mar 22 1999 Preston Brown <pbrown@redhat.com>
547 - strip binaries
548
549 * Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
550 - auto rebuild in the new build environment (release 5)
551
552 * Thu Mar 18 1999 Cristian Gafton <gafton@redhat.com>
553 - fixed the %doc file list
554
555 * Wed Feb 24 1999 Preston Brown <pbrown@redhat.com>
556 - Injected new description and group.
557
558 * Mon Feb 15 1999 Preston Brown <pbrown@redhat.com>
559 - added ttmkfdir
560
561 * Tue Feb 02 1999 Preston Brown <pbrown@redhat.com>
562 - update to 1.2
563
564 * Thu Jan 07 1999 Cristian Gafton <gafton@redhat.com>
565 - call libtoolize to sanitize config.sub and get ARM support
566 - dispoze of the patch (not necessary anymore)
567
568 * Wed Oct 21 1998 Preston Brown <pbrown@redhat.com>
569 - post/postun sections for ldconfig action.
570
571 * Tue Oct 20 1998 Preston Brown <pbrown@redhat.com>
572 - initial RPM, includes normal and development packages.