Behdad Esfahbod f0c767a
%define glib2_base_version 2.17.3
cvsdist fdc49ab
%define glib2_version %{glib2_base_version}-1
cvsdist a39ba95
%define pkgconfig_version 0.12
cvsdist 9ef557d
%define freetype_version 2.1.3-3
Behdad Esfahbod aae7dfc
%define fontconfig_version 2.6
Behdad Esfahbod f0c767a
%define cairo_version 1.7.6
Behdad Esfahbod 20a2f40
%define libthai_version 0.1.9
cvsdist 3d79492
ee552b8
Summary: System for layout and rendering of internationalized text
cvsdist efb4927
Name: pango
Behdad Esfahbod d129888
Version: 1.26.0
Behdad Esfahbod ea8362a
Release: 1%{?dist}
0fe07f5
License: LGPLv2+
cvsdist efb4927
Group: System Environment/Libraries
Behdad Esfahbod 58e2bc4
Source: http://download.gnome.org/sources/pango/1.25/pango-%{version}.tar.bz2
cvsdist efb4927
URL: http://www.pango.org
8801091
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
cvsdist efb4927
cvsdist efb4927
# We need to prereq this so we can run pango-querymodules
cvsdist 3d79492
Prereq: glib2 >= %{glib2_version}
cvsdist 4a847ca
Prereq: freetype >= %{freetype_version}
cvsdist 9ef557d
Requires: freetype >= %{freetype_version}
650b5e5
Requires: cairo >= %{cairo_version}
besfahbo 53e1de3
Requires: libthai >= %{libthai_version}
cvsdist 3d79492
BuildRequires: glib2-devel >= %{glib2_version}
cvsdist 3d79492
BuildRequires: pkgconfig >= %{pkgconfig_version}
cvsdist 3d79492
BuildRequires: freetype-devel >= %{freetype_version}
cvsdist 539766a
BuildRequires: fontconfig-devel >= %{fontconfig_version}
32b8d98
BuildRequires: libXrender-devel
32b8d98
BuildRequires: libX11-devel
32b8d98
BuildRequires: libXext-devel
99dfb7b
BuildRequires: libXft-devel
617a038
BuildRequires: libXt-devel
6991da0
BuildRequires: cairo-devel >= %{cairo_version}
besfahbo 53e1de3
BuildRequires: libthai-devel >= %{libthai_version}
besfahbo ae13591
BuildRequires: gtk-doc
cvsdist efb4927
cvsdist 1cf4425
# Look for pango.modules in an arch-specific directory
1ee0811
Patch0: pango-1.21.4-lib64.patch
8b6e9b1
cvsdist efb4927
%description
8801091
Pango is a library for laying out and rendering of text, with an emphasis
ba32ab6
on internationalization. Pango can be used anywhere that text layout is needed,
8801091
though most of the work on Pango so far has been done in the context of the
8801091
GTK+ widget toolkit. Pango forms the core of text and font handling for GTK+.
cvsdist efb4927
8801091
Pango is designed to be modular; the core Pango layout engine can be used
ba32ab6
with different font backends.
ba32ab6
8801091
The integration of Pango with Cairo provides a complete solution with high
8801091
quality text handling and graphics rendering.
cvsdist 3d79492
cvsdist efb4927
%package devel
ba32ab6
Summary: Development files for pango
cvsdist efb4927
Group: Development/Libraries
besfahbo 7e8665f
Requires: pango = %{version}-%{release}
32b8d98
Requires: libXrender-devel
32b8d98
Requires: libX11-devel
32b8d98
Requires: libXext-devel
99dfb7b
Requires: libXft-devel
cvsdist 3d79492
Requires: glib2-devel >= %{glib2_version}
cvsdist 3d79492
Requires: freetype-devel >= %{freetype_version}
cvsdist 539766a
Requires: fontconfig-devel >= %{fontconfig_version}
650b5e5
Requires: cairo-devel >= %{cairo_version}
besfahbo 53e1de3
Requires: pkgconfig
cvsdist efb4927
cvsdist efb4927
%description devel
ba32ab6
The pango-devel package includes the header files and developer documentation
besfahbo 53e1de3
for the pango package.
cvsdist efb4927
cvsdist 961111c
%prep
cvsdist 961111c
%setup -q -n pango-%{version}
cvsdist 961111c
85ca4e1
%patch0 -p1 -b .lib64
cvsdist 961111c
cvsdist 961111c
%build
cvsdist 961111c
Behdad Esfahbod e11a787
# We try hard to not link to libstdc++
Behdad Esfahbod 5c0d422
%configure --enable-gtk-doc --enable-doc-cross-references --with-included-modules=basic-fc
cvsdist 961111c
make
cvsdist 961111c
cvsdist 961111c
%install
cvsdist 961111c
rm -rf $RPM_BUILD_ROOT
cvsdist 961111c
cvsdist 5b54303
# Deriving /etc/pango/$host location
cvsdist 5b54303
# NOTE: Duplicated below
cvsdist 5b54303
#
cvsdist 5b54303
# autoconf changes linux to linux-gnu
cvsdist 5b54303
case "%{_host}" in
cvsdist 5b54303
  *linux) host="%{_host}-gnu"
cvsdist 5b54303
  ;;
cvsdist 5b54303
  *) host="%{_host}"
cvsdist 5b54303
  ;;
cvsdist 5b54303
esac
cvsdist 5b54303
cvsdist 5b54303
# autoconf uses powerpc not ppc
cvsdist 5b54303
host=`echo $host | sed "s/^ppc/powerpc/"`
a99c208
# autoconf uses ibm-linux not redhat-linux on s390x
a99c208
host=`echo $host | sed "s/^s390\(x\)*-redhat/s390\1-ibm/"`
cvsdist 5b54303
8801091
# Make sure that the host value that is passed to the compile
cvsdist 5b54303
# is the same as the host that we're using in the spec file
cvsdist 5b54303
#
cvsdist 5b54303
compile_host=`grep 'host_triplet =' pango/Makefile | sed "s/.* = //"`
cvsdist 5b54303
cvsdist 5b54303
if test "x$compile_host" != "x$host" ; then
cvsdist 5b54303
  echo 1>&2 "Host mismatch: compile='$compile_host', spec file='$host'" && exit 1
cvsdist 5b54303
fi
cvsdist 5b54303
cvsdist 961111c
%makeinstall
cvsdist 961111c
cvsdist c1e1e62
# Remove files that should not be packaged
cvsdist c1e1e62
rm $RPM_BUILD_ROOT%{_libdir}/*.la
fc67506
rm $RPM_BUILD_ROOT%{_libdir}/pango/*/modules/*.la
cvsdist c1e1e62
cvsdist c1e1e62
PANGOXFT_SO=$RPM_BUILD_ROOT%{_libdir}/libpangoxft-1.0.so
cvsdist c1e1e62
if ! test -e $PANGOXFT_SO; then
cvsdist c1e1e62
        echo "$PANGOXFT_SO not found; did not build with Xft support?"
cvsdist c1e1e62
        ls $RPM_BUILD_ROOT%{_libdir}
cvsdist c1e1e62
        exit 1
8801091
fi
cvsdist c1e1e62
cvsdist 1cf4425
# We need to have separate 32-bit and 64-bit pango-querymodules binaries
cvsdist 1cf4425
# for places where we have two copies of the Pango libraries installed.
cvsdist 1cf4425
# (we might have x86_64 and i686 packages on the same system, for example.)
cvsdist e2fd27d
case "$host" in
b0ef079
  alpha*|ia64*|powerpc64*|s390x*|sparc64*|x86_64*)
cvsdist 1cf4425
   mv $RPM_BUILD_ROOT%{_bindir}/pango-querymodules $RPM_BUILD_ROOT%{_bindir}/pango-querymodules-64
cvsdist 1cf4425
   ;;
cvsdist 1cf4425
  *)
cvsdist 1cf4425
   mv $RPM_BUILD_ROOT%{_bindir}/pango-querymodules $RPM_BUILD_ROOT%{_bindir}/pango-querymodules-32
cvsdist 1cf4425
   ;;
cvsdist 1cf4425
esac
cvsdist 1cf4425
cvsdist 1cf4425
rm $RPM_BUILD_ROOT%{_sysconfdir}/pango/pango.modules
cvsdist e2fd27d
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/pango/$host
cvsdist e2fd27d
touch $RPM_BUILD_ROOT%{_sysconfdir}/pango/$host/pango.modules
cvsdist e2fd27d
cvsdist e2fd27d
#
cvsdist e2fd27d
# We need the substitution of $host so we use an external
cvsdist e2fd27d
# file list
cvsdist e2fd27d
#
cvsdist e2fd27d
echo %dir %{_sysconfdir}/pango/$host > modules.files
cvsdist e2fd27d
echo %ghost %{_sysconfdir}/pango/$host/pango.modules >> modules.files
cvsdist 1cf4425
cvsdist 961111c
%clean
cvsdist 961111c
rm -rf $RPM_BUILD_ROOT
cvsdist 961111c
cvsdist 961111c
%post
cvsdist 961111c
/sbin/ldconfig
cvsdist 5b54303
besfahbo e8bd291
umask 0022
cvsdist 5b54303
# Deriving /etc/pango/$host location
cvsdist 5b54303
#
cvsdist e2fd27d
# autoconf changes linux to linux-gnu
cvsdist 1cf4425
case "%{_host}" in
cvsdist 5b54303
  *linux) host="%{_host}-gnu"
cvsdist e2fd27d
  ;;
cvsdist e2fd27d
  *) host="%{_host}"
cvsdist e2fd27d
  ;;
cvsdist e2fd27d
esac
cvsdist e2fd27d
cvsdist 5b54303
# autoconf uses powerpc not ppc
cvsdist 5b54303
host=`echo $host | sed "s/^ppc/powerpc/"`
cvsdist 5b54303
cvsdist e2fd27d
case "$host" in
b0ef079
  alpha*|ia64*|powerpc64*|s390x*|sparc64*|x86_64*)
cvsdist e2fd27d
   %{_bindir}/pango-querymodules-64 > %{_sysconfdir}/pango/$host/pango.modules
cvsdist 1cf4425
   ;;
cvsdist 1cf4425
  *)
cvsdist e2fd27d
   %{_bindir}/pango-querymodules-32 > %{_sysconfdir}/pango/$host/pango.modules
cvsdist 1cf4425
   ;;
cvsdist 1cf4425
esac
cvsdist 961111c
besfahbo 62a1df6
%postun
besfahbo 62a1df6
/sbin/ldconfig
besfahbo 62a1df6
besfahbo 62a1df6
if test $1 -gt 0; then
besfahbo 62a1df6
besfahbo 62a1df6
umask 0022
besfahbo 62a1df6
# Deriving /etc/pango/$host location
besfahbo 62a1df6
#
besfahbo 62a1df6
# autoconf changes linux to linux-gnu
besfahbo 62a1df6
case "%{_host}" in
besfahbo 62a1df6
  *linux) host="%{_host}-gnu"
besfahbo 62a1df6
  ;;
besfahbo 62a1df6
  *) host="%{_host}"
besfahbo 62a1df6
  ;;
besfahbo 62a1df6
esac
besfahbo 62a1df6
besfahbo 62a1df6
# autoconf uses powerpc not ppc
besfahbo 62a1df6
host=`echo $host | sed "s/^ppc/powerpc/"`
c1274b9
# autoconf uses ibm-linux not redhat-linux (s390x)
c1274b9
host=`echo $host | sed "s/^s390\(x\)*-redhat/s390\1-ibm/"`
besfahbo 62a1df6
besfahbo 62a1df6
case "$host" in
b0ef079
  alpha*|ia64*|powerpc64*|s390x*|sparc64*|x86_64*)
besfahbo 62a1df6
   %{_bindir}/pango-querymodules-64 > %{_sysconfdir}/pango/$host/pango.modules || :
besfahbo 62a1df6
   ;;
besfahbo 62a1df6
  *)
besfahbo 62a1df6
   %{_bindir}/pango-querymodules-32 > %{_sysconfdir}/pango/$host/pango.modules || :
besfahbo 62a1df6
   ;;
besfahbo 62a1df6
esac
besfahbo 62a1df6
besfahbo 62a1df6
fi
cvsdist 961111c
cvsdist e2fd27d
%files -f modules.files
cvsdist 961111c
%defattr(-, root, root)
0fe07f5
%doc README AUTHORS COPYING NEWS
besfahbo 1af3d63
%doc pango-view/HELLO.txt
cvsdist c1e1e62
%{_libdir}/libpango*-*.so.*
cvsdist 1cf4425
%{_bindir}/pango-querymodules*
Behdad Esfahbod a5c386e
%{_bindir}/pango-view
Behdad Esfahbod a7078f7
%{_datadir}/man/man1/pango-view.1.gz
cvsdist c1e1e62
%{_libdir}/pango
0fe07f5
%doc %{_mandir}/man1/*
cvsdist 5221d6e
cvsdist c1e1e62
%dir %{_sysconfdir}/pango
cvsdist c1e1e62
%config %{_sysconfdir}/pango/pangox.aliases
cvsdist 961111c
cvsdist 961111c
cvsdist 961111c
%files devel
cvsdist 961111c
%defattr(-, root, root)
cvsdist c1e1e62
%{_libdir}/libpango*.so
cvsdist c1e1e62
%{_includedir}/*
cvsdist c1e1e62
%{_libdir}/pkgconfig/*
0fe07f5
%doc %{_datadir}/gtk-doc/html/pango
cvsdist 961111c
cvsdist 961111c
cvsdist efb4927
%changelog
Behdad Esfahbod d129888
* Mon Sep 21 2009 Behdad Esfahbod <besfahbo@redhat.com> - 1.26.0-1
Behdad Esfahbod d129888
- 1.26.0
Behdad Esfahbod d129888
Behdad Esfahbod a8f8dac
* Tue Sep  8 2009 Behdad Esfahbod <besfahbo@redhat.com> - 1.25.6-1
Behdad Esfahbod a8f8dac
- 1.25.6
Behdad Esfahbod a8f8dac
Behdad Esfahbod 41848e1
* Mon Aug 24 2009 Behdad Esfahbod <besfahbo@redhat.com> - 1.25.5-1
Behdad Esfahbod ea8362a
- 1.25.5
Behdad Esfahbod ea8362a
a99c208
* Thu Aug 20 2009 Karsten Hopp <karsten@redhat.com> 1.25.4-2
a99c208
- fix autoconf host on s390x
a99c208
Behdad Esfahbod 60f692e
* Tue Aug 17 2009 Behdad Esfahbod <besfahbo@redhat.com> - 1.25.4-1
Behdad Esfahbod 60f692e
- 1.25.4
Behdad Esfahbod 60f692e
Behdad Esfahbod 5c0d422
* Tue Aug 11 2009 Behdad Esfahbod <besfahbo@redhat.com> - 1.25.3-1
Behdad Esfahbod 5c0d422
- 1.25.3
Behdad Esfahbod 5c0d422
Behdad Esfahbod bcda4ae
* Tue Aug 11 2009 Behdad Esfahbod <besfahbo@redhat.com> - 1.25.2-1
Behdad Esfahbod bcda4ae
- 1.25.2
Behdad Esfahbod bcda4ae
Behdad Esfahbod 270b4c1
* Mon Aug 10 2009 Behdad Esfahbod <besfahbo@redhat.com> - 1.25.1-7
Behdad Esfahbod 270b4c1
- Yes, I am stupid.
Behdad Esfahbod 270b4c1
Behdad Esfahbod e11a787
* Mon Aug 10 2009 Behdad Esfahbod <besfahbo@redhat.com> - 1.25.1-6
Behdad Esfahbod e11a787
- One more try
Behdad Esfahbod e11a787
Behdad Esfahbod aae7dfc
* Mon Aug 10 2009 Behdad Esfahbod <besfahbo@redhat.com> - 1.25.1-5
Behdad Esfahbod aae7dfc
- Remove -fexceptions from CXXFLAGS actually
Behdad Esfahbod aae7dfc
- Hopefully builds this time
Behdad Esfahbod aae7dfc
Behdad Esfahbod 33ce880
* Mon Aug 10 2009 Behdad Esfahbod <besfahbo@redhat.com> - 1.25.1-4
Behdad Esfahbod 33ce880
- Remove -fexceptions from RPM_OPT_FLAGS
Behdad Esfahbod 33ce880
- Hopefully builds this time
Behdad Esfahbod 33ce880
Behdad Esfahbod 9fb5d1a
* Mon Aug 10 2009 Behdad Esfahbod <besfahbo@redhat.com> - 1.25.1-3
Behdad Esfahbod 9fb5d1a
- Remove pango-1.25.1-no-hb-main.patch
Behdad Esfahbod 9fb5d1a
- Add pango-1.25.1-cxx.patch
Behdad Esfahbod 9fb5d1a
- Hopefully builds this time
Behdad Esfahbod 9fb5d1a
Behdad Esfahbod 7b1e2f3
* Mon Aug 10 2009 Behdad Esfahbod <besfahbo@redhat.com> - 1.25.1-2
Behdad Esfahbod 7b1e2f3
- Add pango-1.25.1-no-hb-main.patch to fix build on x86-64
Behdad Esfahbod 7b1e2f3
Behdad Esfahbod 58e2bc4
* Mon Aug 10 2009 Behdad Esfahbod <besfahbo@redhat.com> - 1.25.1-1
Behdad Esfahbod 58e2bc4
- Update to 1.25.1
Behdad Esfahbod 58e2bc4
Behdad Esfahbod d5178b4
* Wed Jul 22 2009 Behdad Esfahbod <besfahbo@redhat.com> - 1.24.5-1
Behdad Esfahbod d5178b4
- Update to 1.24.5
Behdad Esfahbod d5178b4
b8addc6
* Tue Jun 30 2009 Matthias Clasen <mclasen@redhat.com> - 1.24.4-1
b8addc6
- Update to 1.24.4
b8addc6
Behdad Esfahbod 7bfdda0
* Wed Jun 24 2009 Behdad Esfahbod <besfahbo@redhat.com> - 1.24.3-1
Behdad Esfahbod 7bfdda0
- Update to 1.24.3
Behdad Esfahbod 7bfdda0
400d2a3
* Fri May 15 2009 Karsten Hopp <karsten@redhat.com> 1.24.2-1
400d2a3
- Update to 1.24.2
400d2a3
- See http://download.gnome.org/sources/pango/1.24/pango-1.24.2.news
400d2a3
c1274b9
* Sat Apr 18 2009 Karsten Hopp <karsten@redhat.com> 1.24.1-1.1
c1274b9
- autoconf uses ibm-linux not redhat-linux (s390x)
c1274b9
8801091
* Mon Apr 13 2009 Matthias Clasen <mclasen@redhat.com> - 1.24.1-1
8801091
- Update to 1.24.1
8801091
- See http://download.gnome.org/sources/pango/1.24/pango-1.24.1.news
8801091
Behdad Esfahbod 7da4087
* Wed Mar 26 2009 Behdad Esfahbod <besfahbo@redhat.com> - 1.24.0-2
Behdad Esfahbod 7da4087
- Remove weird Requires(pre).
Behdad Esfahbod 7da4087
- Resolves #486641
Behdad Esfahbod 7da4087
Behdad Esfahbod a7078f7
* Mon Mar 16 2009 Behdad Esfahbod <besfahbo@redhat.com> - 1.24.0-1
Behdad Esfahbod a7078f7
- Update to 1.24.0
Behdad Esfahbod a7078f7
- Package pango-view.1.gz
Behdad Esfahbod a7078f7
Behdad Esfahbod e79360e
* Wed Mar 11 2009 Behdad Esfahbod <besfahbo@redhat.com> - 1.23.0-4.g5317893
Behdad Esfahbod e79360e
- Push changes from git
Behdad Esfahbod e79360e
fbff48b
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.23.0-3
fbff48b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
fbff48b
Behdad Esfahbod a5c386e
* Wed Feb  4 2009 Behdad Esfahbod <besfahbo@redhat.com> - 1.23.0-2
Behdad Esfahbod a5c386e
- Move pango-view from pango-devel to pango
Behdad Esfahbod a5c386e
fcec64c
* Tue Feb  3 2009 Matthias Clasen <mclasen@redhat.com> - 1.23.0-1
fcec64c
- Update to 1.23.0
fcec64c
8da3634
* Tue Dec 16 2008 Matthias Clasen <mclasen@redhat.com> - 1.22.4-1
8da3634
- Update to 1.22.4
8da3634
6a54c6e
* Sun Dec  7 2008 Mamoru Tasaka <mtasaka@ioa.s.u-tokyo.ac.jp> - 1.22.3-2
6a54c6e
- Rebuild for pkgconfig provides
6a54c6e
ba32ab6
* Mon Nov 24 2008 Matthias Clasen <mclasen@redhat.com> - 1.22.3-1
8da3634
- Update to 1.22.3
ba32ab6
6d50866
* Wed Nov 12 2008 Matthias Clasen <mclasen@redhat.com> - 1.22.2-1
6d50866
- Update to 1.22.2
6d50866
db71c93
* Mon Oct 20 2008 Matthias Clasen <mclasen@redhat.com> - 1.22.1-1
db71c93
- Update to 1.22.1
db71c93
Behdad Esfahbod f0c767a
* Mon Sep 22 2008 Behdad Esfahbod <besfahbo@redhat.com> - 1.22.0-1.1
Behdad Esfahbod f0c767a
- Rebuild against cairo 1.7.6
Behdad Esfahbod f0c767a
- Update cairo and glib required versions
Behdad Esfahbod f0c767a
f8e6a68
* Mon Sep 22 2008 Matthias Clasen <mclasen@redhat.com> - 1.22.0-1
f8e6a68
- Update to 1.22.0
f8e6a68
63b8d50
* Mon Sep  8 2008 Matthias Clasen <mclasen@redhat.com> - 1.21.6-1
63b8d50
- Update to 1.21.6
63b8d50
Behdad Esfahbod 5f80fee
* Mon Aug 26 2008 Behdad Esfahbod <besfahbo@redhat.com> - 1.21.5-1
Behdad Esfahbod 5f80fee
- Update to 1.21.5
Behdad Esfahbod 5f80fee
38a21aa
* Mon Aug 11 2008 Matthias Clasen <mclasen@redhat.com> - 1.21.4-1
38a21aa
- Update to 1.21.4
38a21aa
2788dce
* Tue Jun 17 2008 Matthias Clasen <mclasen@redhat.com> - 1.21.3-1
2788dce
- Update to 1.21.3
2788dce
dfc709b
* Tue Jun  3 2008 Matthias Clasen <mclasen@redhat.com> - 1.21.2-1
dfc709b
- Update to 1.21.2
dfc709b
b0ef079
* Mon May 26 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.21.1-2
b0ef079
- add sparc64 to multilib handling
b0ef079
11762e6
* Tue May 13 2008 Matthias Clasen <mclasen@redhat.com> - 1.21.1-1
11762e6
- Update to 1.21.1
11762e6
4e412bc
* Fri Apr 25 2008 Matthias Clasen <mclasen@redhat.com> - 1.21.0-1
4e412bc
- Update to 1.21.0
4e412bc
57f0877
* Tue Apr  8 2008 Matthias Clasen <mclasen@redhat.com> - 1.20.1-1
57f0877
- Update to 1.20.1
57f0877
8cd2d85
* Mon Mar 10 2008 Matthias Clasen <mclasen@redhat.com> - 1.20.0-1
8cd2d85
- Update to 1.20.0
8cd2d85
663d30b
* Mon Feb 25 2008 Matthias Clasen <mclasen@redhat.com> - 1.19.4-1
663d30b
- Update to 1.19.4
663d30b
5405777
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.19.3-3
5405777
- Autorebuild for GCC 4.3
5405777
Behdad Esfahbod 20a2f40
* Mon Jan 29 2008 Behdad Esfahbod <besfahbo@redhat.com> - 1.19.3-2
Behdad Esfahbod 20a2f40
- Bump libthai requirement.
Behdad Esfahbod 20a2f40
Behdad Esfahbod 5514e9b
* Mon Jan 21 2008 Behdad Esfahbod <besfahbo@redhat.com> - 1.19.3-1
Behdad Esfahbod 5514e9b
- Update to 1.19.3
Behdad Esfahbod 5514e9b
89acbb4
* Tue Dec 18 2007 Matthias Clasen <mclasne@redhat.com> - 1.19.2-1
89acbb4
- Update to 1.19.2
89acbb4
0d968c2
* Thu Dec  6 2007 Matthias Clasen <mclasne@redhat.com> - 1.19.1-1
0d968c2
- Update to 1.19.1
0d968c2
Behdad Esfahbod b376c45
* Wed Oct 31 2007 Behdad Esfahbod <besfahbo@redhat.com> - 1.19.0-1
Behdad Esfahbod b376c45
- Update to 1.19.0
Behdad Esfahbod b376c45
85ca4e1
* Mon Oct 15 2007 Matthias Clasen <mclasen@redhat.com> - 1.18.3-1
85ca4e1
- Update to 1.18.3 (make Nafees Nastaliq font work)
85ca4e1
1c730dc
* Tue Sep 18 2007 Matthias Clasen <mclasen@redhat.com> - 1.18.2-1
1c730dc
- Update to 1.18.2
1c730dc
45c9520
* Tue Sep  4 2007 Matthias Clasen <mclasen@redhat.com> - 1.18.1-1
45c9520
- Update to 1.18.1
45c9520
Behdad Esfahbod a5719c9
* Thu Aug 23 2007 Behdad Esfahbod <besfahbo@redhat.com> - 1.18.0-1
Behdad Esfahbod a5719c9
- Update to 1.18.0
Behdad Esfahbod a5719c9
d19e2e2
* Wed Aug 22 2007 Adam Jackson <ajax@redhat.com> - 1.17.5-3
d19e2e2
- Rebuild for PPC toolchain bug
d19e2e2
0fe07f5
* Thu Aug  2 2007 Matthias Clasen <mclasen@redhat.com> - 1.17.5-2
0fe07f5
- Update license field
0fe07f5
- Don't install ChangeLog
0fe07f5
3819ea6
* Mon Jul 30 2007 Matthias Clasen <mclasen@redhat.com> - 1.17.5-1
3819ea6
- Update to 1.17.5
3819ea6
Behdad Esfahbod c8cedaf
* Tue Jul 03 2007 Behdad Esfahbod <besfahbo@redhat.com>
Behdad Esfahbod c8cedaf
- Distribute NEWS
Behdad Esfahbod c8cedaf
3771606
* Mon Jul  2 2007 Matthias Clasen <mclasen@redhat.com> - 1.17.4-1
3771606
- Update to 1.17.4
3771606
2f54a89
* Mon Jul  2 2007 Matthias Clasen <mclasen@redhat.com> - 1.17.3-1
2f54a89
- Update to 1.17.3
2f54a89
- Drop ancient Obsoletes
2f54a89
a464212
* Mon Jun  4 2007 Matthias Clasen <mclasen@redhat.com> - 1.17.2-1
a464212
- Update to 1.17.2
a464212
0baec00
* Mon May 28 2007 Matthias Clasen <mclasen@redhat.com> - 1.17.1-1
0baec00
- Update to 1.17.1
0baec00
8e843f3
* Sat May 19 2007 Matthias Clasen <mclasen@redhat.com> - 1.17.0-1
8e843f3
- Update to 1.17.0
8e843f3
besfahbo ae13591
* Fri Apr 10 2007 Behdad Esfahbod <besfahbo@redhat.com> - 1.16.4-1
besfahbo ae13591
- Update to 1.16.4.
besfahbo ae13591
- Enable doc rebuilding to get cross-references right.
besfahbo ae13591
besfahbo 14d769a
* Tue Apr 10 2007 Behdad Esfahbod <besfahbo@redhat.com> - 1.16.2-1
besfahbo 14d769a
- Update to 1.16.2.
besfahbo 14d769a
bbc81f0
* Tue Mar 13 2007 Matthias Clasen <mclasen@redhat.com> - 1.16.1-1
bbc81f0
- Update to 1.16.1
bbc81f0
81055e5
* Tue Feb 27 2007 Matthias Clasen <mclasen@redhat.com> - 1.16.0-1
81055e5
- Update to 1.16.0
81055e5
3ba1211
* Tue Feb 13 2007 Matthias Clasen <mclasen@redhat.com> - 1.15.6-1
3ba1211
- Update to 1.15.6
3ba1211
besfahbo 10fcd12
* Mon Jan 22 2007 Behdad Esfahbod <besfahbo@redhat.com> - 1.15.5-1
besfahbo 10fcd12
- Update to 1.15.5.
besfahbo 10fcd12
- Drop upstreamed pango-1.15.4-slighthint.patch
besfahbo 10fcd12
besfahbo 1af3d63
* Wed Jan 18 2007 Behdad Esfahbod <besfahbo@redhat.com> - 1.15.4-5
besfahbo 1af3d63
- Again... HELLO.txt is moved.
besfahbo 1af3d63
besfahbo 858a963
* Wed Jan 18 2007 Behdad Esfahbod <besfahbo@redhat.com> - 1.15.4-4
besfahbo 858a963
- Bump again.  I accidentally tagged 1.15.3-4 as 1.15.4-3 previously :(.
besfahbo 858a963
besfahbo 03f3833
* Wed Jan 18 2007 Behdad Esfahbod <besfahbo@redhat.com> - 1.15.4-3
besfahbo 03f3833
- s/HELLO.utf8/HELLO.txt/ to match upstream.
besfahbo 03f3833
besfahbo c2a6956
* Wed Jan 17 2007 Behdad Esfahbod <besfahbo@redhat.com> - 1.15.4-2
besfahbo c2a6956
- Update slighthint patch to apply.
besfahbo c2a6956
besfahbo 53e1de3
* Wed Jan 17 2007 Behdad Esfahbod <besfahbo@redhat.com> - 1.15.4-1
besfahbo 53e1de3
- Update to 1.15.4
besfahbo 53e1de3
- [Build]Require libthai[-devel]
besfahbo 53e1de3
- Require pkgconfig in -devel
besfahbo 53e1de3
- Remove "static libs" from -devel description, since we don't ship them.
besfahbo 53e1de3
besfahbo 7e8665f
* Fri Jan 12 2007 Behdad Esfahbod <besfahbo@redhat.com> - 1.15.3-5
besfahbo 7e8665f
- Require pango = %{version}-%{release} in devel (previously didn't have
besfahbo 7e8665f
  releaes).
besfahbo 7e8665f
besfahbo 2776f33
* Thu Jan 11 2007 Behdad Esfahbod <besfahbo@redhat.com> - 1.15.3-4
besfahbo 62a1df6
- Undo the posttrans change.  That's a no no.  We now regenerate the module
besfahbo 62a1df6
  file in postun if there are any other pango versions left.  This should
besfahbo 62a1df6
  take care of the problem in the future.
besfahbo 62a1df6
besfahbo 62a1df6
* Thu Jan 11 2007 Behdad Esfahbod <besfahbo@redhat.com> - 1.15.3-3
besfahbo ac684e2
- Move pango.modules generation to posttrans, to make sure modules available
besfahbo ac684e2
  in an older version but not this one are removed.
besfahbo ac684e2
- Resolves #222217
besfahbo ac684e2
besfahbo 626e874
* Tue Jan 09 2007 Behdad Esfahbod <besfahbo@redhat.com> - 1.15.3-2
besfahbo 626e874
- Update sources
besfahbo 626e874
besfahbo f0e00fd
* Tue Jan 09 2007 Behdad Esfahbod <besfahbo@redhat.com> - 1.15.3-1
besfahbo f0e00fd
- Update to 1.15.3
besfahbo f0e00fd
- Pass --with-included-modules=basic-fc.  Saves one page of memory per process.
besfahbo f0e00fd
ac607f8
* Tue Dec 21 2006 Matthias Clasen <mclasen@redhat.com> - 1.15.2-1
ac607f8
- Update to 1.15.2
ac607f8
94747f1
* Tue Dec  5 2006 Matthias Clasen <mclasen@redhat.com> - 1.15.1-1
94747f1
- Update to 1.15.1
94747f1
f17ba3e
* Fri Oct 20 2006 Matthias Clasen <mclasen@redhat.com> - 1.15.0-1
f17ba3e
- Update to 1.15.0
f17ba3e
besfahbo 68382d8
* Thu Oct 12 2006 Behdad Esfahbod <besfahbo@redhat.com> - 1.14.6-1
besfahbo 68382d8
- Update to 1.14.6
besfahbo 68382d8
f369fe0
* Sun Oct 01 2006 Jesse Keating <jkeating@redhat.com> - 1.14.4-3
f369fe0
- rebuilt for unwind info generation, broken in gcc-4.1.1-21
f369fe0
besfahbo 4f23fb5
* Mon Sep 25 2006 Behdad Esfahbod <besfahbo@redhat.com> - 1.14.4-2
besfahbo 4f23fb5
- Remove illegal g_object_unref().
besfahbo 4f23fb5
besfahbo b3645f8
* Fri Sep 15 2006 Behdad Esfahbod <besfahbo@redhat.com> - 1.14.4-1
besfahbo 598a2b8
- Update to 1.14.4
besfahbo 598a2b8
- Fixes bugs 198136, 306388, 206390
besfahbo 598a2b8
- Remove upstreamed patch
besfahbo 598a2b8
8b6e9b1
* Tue Sep 12 2006 Matthias Clasen <mclasen@redhat.com> - 1.14.3-2
8b6e9b1
- Fix Hangul decomposition issues (#206044)
8b6e9b1
8a7fca8
* Mon Sep  4 2006 Matthias Clasen <mclasen@redhat.com> - 1.14.3-1
8a7fca8
- Update to 1.14.3
8a7fca8
besfahbo d44d132
* Tue Aug 22 2006 Behdad Esfahbod <besfahbo@redhat.com> - 1.14.2-1
besfahbo d44d132
- Update to 1.14.2
besfahbo d44d132
3534437
* Mon Aug 21 2006 Matthias Clasen <mclasen@redhat.com> - 1.14.1-1.fc6
3534437
- Update to 1.14.1
3534437
besfahbo d4f4b1c
* Thu Aug 17 2006 Behdad Esfahbod <besfahbo@redhat.com> - 1.14.0-3
besfahbo d4f4b1c
- Bump glib requirement to 2.12.0. (bug #201586)
besfahbo d4f4b1c
besfahbo 706712e
* Wed Aug 07 2006 Behdad Esfahbod <besfahbo@redhat.com> - 1.14.0-2
besfahbo 706712e
- Incorrect sources in last update.  Fix.
besfahbo 706712e
besfahbo edbc476
* Wed Aug 07 2006 Behdad Esfahbod <besfahbo@redhat.com> - 1.14.0-1
besfahbo edbc476
- Update to 1.14.0
besfahbo edbc476
besfahbo 3a2b56a
* Wed Aug 02 2006 Behdad Esfahbod <besfahbo@redhat.com> - 1.13.5-1
besfahbo 3a2b56a
- Update to 1.13.5
besfahbo 3a2b56a
besfahbo e8bd291
* Mon Jul 27 2006 Behdad Esfahbod <besfahbo@redhat.com> - 1.13.4-2
besfahbo e8bd291
- Add umask 022 to post (#185419)
besfahbo e8bd291
9df92b2
* Tue Jul 25 2006 Matthias Clasen <mclasen@redhat.com> - 1.13.4-1
9df92b2
- Update to 1.13.4
9df92b2
1eb41cf
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 1.13.3-1.1
1eb41cf
- rebuild
1eb41cf
besfahbo cf5a8ad
* Mon Jul 10 2006 Behdad Esfahbod <besfahbo@redhat.com> - 1.13.3-1
besfahbo cf5a8ad
- Update to 1.13.3
besfahbo cf5a8ad
besfahbo 5951a6b
* Thu Jun 15 2006 Behdad Esfahbod <besfahbo@redhat.com> - 1.13.2-1
besfahbo 5951a6b
- Update to 1.13.2
besfahbo 5951a6b
617a038
* Sun May 21 2006 Matthias Clasen <mclasen@redhat.com> - 1.13.1-3
617a038
- Add missing BuildRequires (#191958)
617a038
129068b
* Tue May 16 2006 Matthias Clasen <mclasen@redhat.com> - 1.13.1-2
a88c74b
- Update to 1.13.1
a88c74b
8388423
* Mon May  8 2006 Matthias Clasen <mclasen@redhat.com> - 1.13.0-1
922968c
- Update to 1.13.0
922968c
f902558
* Fri Apr  7 2006 Matthias Clasen <mclasen@redhat.com> - 1.12.1-2
f902558
- Update to 1.12.1
f902558
48a1dd5
* Mon Mar 13 2006 Matthias Clasen <mclasen@redhat.com> - 1.12.0-1
48a1dd5
- Update to 1.12.0
48a1dd5
6aad56c
* Sun Feb 26 2006 Matthias Clasen <mclasen@redhat.com> - 1.11.99-1
6aad56c
- Update to 1.11.99
6aad56c
7792991
* Tue Feb 21 2006 Matthias Clasen <mclasen@redhat.com> - 1.11.6-1
7792991
- Upate to 1.11.6
7792991
- Drop upstreamed patches
7792991
a88be5b
* Fri Feb 17 2006 Matthias Clasen <mclasen@redhat.com> - 1.11.5-2
a88be5b
- Fix a crash in pango_split
a88be5b
- Hide some private API
a88be5b
2047a66
* Mon Feb 11 2006 Matthias Clasen <mclasen@redhat.com> - 1.11.5-1
2047a66
- Update to 1.11.5
2047a66
7c3a46a
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.11.4-1.2
7c3a46a
- bump again for double-long bug on ppc(64)
7c3a46a
4b19eac
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.11.4-1.1
4b19eac
- rebuilt for new gcc4.1 snapshot and glibc changes
4b19eac
ee552b8
* Mon Feb  6 2006 Matthias Clasen <mclasen@redhat.com> - 1.11.4-1
ee552b8
- Update to 1.11.4
ee552b8
e08d521
* Mon Jan 30 2006 Matthias Clasen <mclasen@redhat.com> - 1.11.3-1
e08d521
- Update to 1.11.3
e08d521
fcf3849
* Mon Jan 16 2006 Matthias Clasen <mclasen@redhat.com> - 1.11.2-1
fcf3849
- Update to 1.11.2
fcf3849
6991da0
* Wed Dec 19 2005 Matthias Clasen <mclasen@redhat.com> - 1.11.1-2
6991da0
- BuildRequire cairo-devel
6991da0
297d4db
* Wed Dec 14 2005 Matthias Clasen <mclasen@redhat.com> - 1.11.1-1
297d4db
- Update to 1.11.1
297d4db
6541761
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
6541761
- rebuilt
6541761
2ae4b56
* Wed Nov 30 2005 Matthias Clasen <mclasen@redhat.com> - 1.11.0-1
2ae4b56
- Update to 1.11.0
2ae4b56
c0fe069
* Tue Nov 29 2005 Matthias Clasen <mclasen@redhat.com> - 1.10.2-1
c0fe069
- Update to 1.10.2
c0fe069
d784e41
* Sun Nov 13 2005 Jeremy Katz <katzj@redhat.com> - 1.10.1-6
d784e41
- switch prereqs to modular X
d784e41
cde5b64
* Fri Nov  4 2005 Matthias Clasen <mclasen@redhat.com> - 1.10.1-5
32b8d98
- Switch buildrequires to modular X.
32b8d98
- Don't install .la files for modules.
32b8d98
6912a47
* Thu Oct 27 2005 Matthias Clasen <mclasen@redhat.com> - 1.10.1-2
6912a47
- Bump the requirement for glib (#165928)
6912a47
fe6f4af
* Mon Oct  3 2005 Matthias Clasen <mclasen@redhat.com> - 1.10.1-1
fe6f4af
- Newer upstream version
fe6f4af
- Use the docs which are included in the tarball
fe6f4af
2b565d9
* Wed Aug 17 2005 Owen Taylor <otaylor@redhat.com> - 1.10.0-1
2b565d9
- Upgrade to 1.10.0
2b565d9
Kristian Høgsberg b2fb90d
* Mon Aug 15 2005 Kristian Høgsberg <krh@redhat.com> 1.9.1-2
Kristian Høgsberg b2fb90d
- Patch out libpixman dependency.
Kristian Høgsberg b2fb90d
e3dc173
* Thu Jul 28 2005 Owen Taylor <otaylor@redhat.com> 1.9.1-1
e3dc173
- Update to 1.9.1
e3dc173
650b5e5
* Tue Jun 21 2005 Matthias Clasen <mclasen@redhat.com> 
650b5e5
- Add a missing requires
650b5e5
a851aac
* Tue Jun 21 2005 Matthias Clasen <mclasen@redhat.com> 1.9.0-1
a851aac
- Update to 1.9.0
a851aac
- Require cairo
a851aac
06a1bbc
* Fri Mar  4 2005 Owen Taylor <otaylor@redhat.com> - 1.8.1-1
06a1bbc
- Update to 1.8.1
06a1bbc
60644f4
* Tue Dec 21 2004 Matthias Clasen <mclasen@redhat.com> - 1.8.0-1
60644f4
- Version 1.8.0
60644f4
- Drop unneeded patches and hacks
60644f4
b3edd2d
* Wed Oct 20 2004 Owen Taylor <otaylor@redhat.com> - 1.6.0-7
b3edd2d
- Fix problem with pango_layout_get_attributes returning one too few items
b3edd2d
  (Needed to fix problems mentioned in #135656, 
b3edd2d
  http://bugzilla.gnome.org/show_bug.cgi?id=155912)
b3edd2d
9142b70
* Tue Oct 19 2004 Owen Taylor <otaylor@redhat.com> - 1.6.0-6
9142b70
- Make Hangul and Kana not backspace-deletes-char (#135356)
9142b70
6ee681c
* Tue Oct 19 2004 Owen Taylor <otaylor@redhat.com> - 1.6.0-5
6ee681c
- Fix problem in the last patch where we weren't getting the metrics from the 
6ee681c
  right font description (#136428, Steven Lawrance)
6ee681c
da0f973
* Mon Oct 18 2004 Owen Taylor <otaylor@redhat.com> - 1.6.0-4
da0f973
- Move place where we compute fontset metrics to fix problems with line 
da0f973
  height in CJK locales (#131218)
da0f973
bd9f265
* Mon Oct 11 2004 Colin Walters <walters@redhat.com> - 1.6.0-3
bd9f265
- BR xorg-x11-devel instead of XFree86-devel
bd9f265
31bfae4
* Mon Sep 20 2004 Owen Taylor <otaylor@redhat.com> - 1.6.0-2
31bfae4
- Add patch from CVS to fix display of U+3000 (#132203,  
31bfae4
  reported upstream by Suresh Chandrasekharan, Federic Zhang)
31bfae4
bcd2e9c
* Mon Sep 20 2004 Owen Taylor <otaylor@redhat.com> - 1.6.0-1
bcd2e9c
- Version 1.6.0
bcd2e9c
- Add patch from CVS to fix bitmap-fonts/no-hint problem (#129246)
bcd2e9c
cvsdist 4a847ca
* Wed Sep  8 2004 Jeremy Katz <katzj@redhat.com> - 1.5.2-3
cvsdist 4a847ca
- fix running of pango-query-modules to have necessary libraries available
cvsdist 4a847ca
  (#132052)
cvsdist 4a847ca
cvsdist 74efd9d
* Mon Aug 16 2004 Owen Taylor <otaylor@redhat.com> - 1.5.2-2
cvsdist 74efd9d
- Fix crashes with left-matra fixups (#129982, Jatin Nansi)
cvsdist 74efd9d
cvsdist 41f3cbe
* Mon Aug  2 2004 Owen Taylor <otaylor@redhat.com> - 1.5.2-1
cvsdist 41f3cbe
- Update to 1.5.2
cvsdist 41f3cbe
- Fix ppc/powerpc confusion when creating query-modules binary (#128645)
cvsdist 41f3cbe
cvsdist 9311002
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
cvsdist 9311002
- rebuilt
cvsdist 9311002
cvsdist 5b54303
* Wed Mar 17 2004 Owen Taylor <otaylor@redhat.com> 1.4.0-2
cvsdist 5b54303
- Fix location for modules file on ppc/ppc64 (#114399)
cvsdist 5b54303
- Make the spec file check to avoid further mismatches
cvsdist 5b54303
cvsdist 150fb79
* Wed Mar 17 2004 Alex Larsson <alexl@redhat.com> 1.4.0-1
cvsdist 150fb79
- update to 1.4.0
cvsdist 150fb79
cvsdist 150fb79
* Wed Mar 10 2004 Mark McLoughlin <markmc@redhat.com> 1.3.6-1
cvsdist 150fb79
- Update to 1.3.6
cvsdist 150fb79
- Bump required glib2 to 2.3.1
cvsdist 150fb79
cvsdist 150fb79
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
cvsdist 150fb79
- rebuilt
cvsdist 150fb79
cvsdist 150fb79
* Tue Mar 02 2004 Mark McLoughlin <markmc@redhat.com> 1.3.5-1
cvsdist 150fb79
- Update to 1.3.5
cvsdist 150fb79
cvsdist 150fb79
* Wed Feb 25 2004 Mark McLoughlin <markmc@redhat.com> 1.3.3-1
cvsdist 150fb79
- Update to 1.3.3
cvsdist 150fb79
cvsdist 150fb79
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
cvsdist 150fb79
- rebuilt
cvsdist 150fb79
cvsdist 5221d6e
* Fri Jan 23 2004 Jonathan Blandford <jrb@redhat.com> 1.3.2-1
cvsdist 5221d6e
- new version
cvsdist 5221d6e
- add man page
cvsdist 5221d6e
cvsdist e2fd27d
* Thu Dec 18 2003 Owen Taylor <otaylor@redhat.com> 1.2.5-4
cvsdist e2fd27d
- Deal with autoconf changing -linux to -linux-gnu (#112387)
cvsdist e2fd27d
cvsdist 1cf4425
* Mon Dec  8 2003 Owen Taylor <otaylor@redhat.com> 1.2.5-3.0
cvsdist 1cf4425
- Package pango-querymodules as pango-querymodules-{32,64}; look for 
cvsdist 1cf4425
  pango.modules in an architecture-specific directory.
cvsdist 1cf4425
  (Fixes #111511, Justin M. Forbes)
cvsdist 1cf4425
cvsdist 1cf4425
* Mon Sep  8 2003 Owen Taylor <otaylor@redhat.com> 1.2.5-2.0
cvsdist 1cf4425
- Fix problem with corrupt Thai shaper
cvsdist 1cf4425
cvsdist fdc49ab
* Wed Aug 27 2003 Owen Taylor <otaylor@redhat.com> 1.2.5-1.1
cvsdist fdc49ab
- Version 1.2.5
cvsdist fdc49ab
cvsdist fdc49ab
* Tue Aug 26 2003 Owen Taylor <otaylor@redhat.com> 1.2.4-1.1
cvsdist fdc49ab
- Version 1.2.4
cvsdist fdc49ab
cvsdist fdc49ab
* Tue Jul  8 2003 Owen Taylor <otaylor@redhat.com> 1.2.3-2.0
cvsdist fdc49ab
- Bump for rebuild
cvsdist fdc49ab
cvsdist fdc49ab
* Mon Jun  9 2003 Owen Taylor <otaylor@redhat.com>
cvsdist fdc49ab
- Version 1.2.3
cvsdist fdc49ab
cvsdist fdc49ab
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
cvsdist fdc49ab
- rebuilt
cvsdist fdc49ab
cvsdist fdc49ab
* Mon Jun  2 2003 Owen Taylor <otaylor@redhat.com>
cvsdist fdc49ab
- Use the right version-1.2.2 tarball
cvsdist fdc49ab
cvsdist fdc49ab
* Thu May 29 2003 Owen Taylor <otaylor@redhat.com>
cvsdist fdc49ab
- Version 1.2.2
cvsdist fdc49ab
cvsdist 9ef557d
* Thu Feb 13 2003 Tim Powers <timp@redhat.com> 1.2.1-3
cvsdist 9ef557d
- remove deps on Xft and Xft-devel since XFree86 no longer has the
cvsdist 9ef557d
  virtual prvodes. Instead, require XFree86-devel > 4.2.99
cvsdist 9ef557d
cvsdist 9ef557d
* Tue Feb 11 2003 Owen Taylor <otaylor@redhat.com>
cvsdist 9ef557d
- Fix problem where language tag wasn't causing relookup of font (#84034)
cvsdist 9ef557d
cvsdist 9ef557d
* Sun Feb  2 2003 Owen Taylor <otaylor@redhat.com>
cvsdist 9ef557d
- Version 1.2.1
cvsdist 9ef557d
cvsdist 9ef557d
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
cvsdist 9ef557d
- rebuilt
cvsdist 9ef557d
cvsdist 9ef557d
* Tue Jan 14 2003 Owen Taylor <otaylor@redhat.com>
cvsdist 9ef557d
- Patch from CVS to synthesize GDEF tables for fonts
cvsdist 9ef557d
  without them, like the Kacst fonts in fonts-arabic
cvsdist 9ef557d
cvsdist 9ef557d
* Thu Jan  9 2003 Owen Taylor <otaylor@redhat.com>
cvsdist 9ef557d
- Make requires freetype, not freetype-devel (#81423)
cvsdist 9ef557d
cvsdist 9ef557d
* Tue Jan  7 2003 Owen Taylor <otaylor@redhat.com>
cvsdist 9ef557d
- Update slighthint patch for freetype-2.1.3 (#81125)
cvsdist 9ef557d
cvsdist 9ef557d
* Fri Dec 20 2002 Owen Taylor <otaylor@redhat.com>
cvsdist 9ef557d
- Version 1.2.0
cvsdist 9ef557d
cvsdist 9ef557d
* Mon Dec 16 2002 Owen Taylor <otaylor@redhat.com>
cvsdist 9ef557d
- Version 1.1.6
cvsdist 9ef557d
cvsdist 9ef557d
* Wed Dec 11 2002 Owen Taylor <otaylor@redhat.com>
cvsdist 9ef557d
- Version 1.1.5
cvsdist 9ef557d
cvsdist c1e1e62
* Tue Dec  3 2002 Owen Taylor <otaylor@redhat.com>
cvsdist c1e1e62
- Version 1.1.4
cvsdist c1e1e62
cvsdist c1e1e62
* Thu Nov 21 2002 Havoc Pennington <hp@redhat.com>
cvsdist c1e1e62
- change PKG_CONFIG_PATH hack to also search /usr/X11R6/lib64/pkgconfig
cvsdist c1e1e62
cvsdist c1e1e62
* Wed Nov 20 2002 Havoc Pennington <hp@redhat.com>
cvsdist c1e1e62
- explicitly require pangoxft to be built, so we catch situations such
cvsdist c1e1e62
  as xft.pc moving to /usr/X11R6
cvsdist c1e1e62
- also add /usr/X11R6/lib/pkgconfig to PKG_CONFIG_PATH as a temporary 
cvsdist c1e1e62
  hack
cvsdist c1e1e62
cvsdist c1e1e62
* Thu Nov  7 2002 Havoc Pennington <hp@redhat.com>
cvsdist c1e1e62
- 1.1.3
cvsdist c1e1e62
cvsdist c1e1e62
* Thu Oct 31 2002 Owen Taylor <otaylor@redhat.com> 1.1.1-5
cvsdist c1e1e62
- Require the necessary freetype version, don't just
cvsdist c1e1e62
  BuildRequires it (#74744)
cvsdist c1e1e62
cvsdist c1e1e62
* Thu Oct 31 2002 Owen Taylor <otaylor@redhat.com> 1.1.1-4
cvsdist c1e1e62
- Own /etc/pango (#73962, Enrico Scholz)
cvsdist c1e1e62
- Remove .la files from the build root
cvsdist c1e1e62
cvsdist c1e1e62
* Mon Oct  7 2002 Havoc Pennington <hp@redhat.com>
cvsdist c1e1e62
- require glib 2.0.6-3, try rebuild on more arches
cvsdist c1e1e62
cvsdist 961111c
* Wed Aug 21 2002 Owen Taylor <otaylor@redhat.com>
cvsdist 961111c
- Version 1.1.1 (main change, fixes font selection for FT2 backend, 
cvsdist 961111c
  as in gdmgreeter)
cvsdist 961111c
cvsdist e8d69eb
* Thu Aug 15 2002 Owen Taylor <otaylor@redhat.com>
cvsdist e8d69eb
- Fix linked list manipulation problem that was causing hang for anaconda
cvsdist 961111c
- Fix warning from loading mini-fonts with context == NULL
cvsdist e8d69eb
cvsdist 99c0bbf
* Wed Aug 14 2002 Owen Taylor <otaylor@redhat.com>
cvsdist 99c0bbf
- Fix major memory leak in the last patch
cvsdist 99c0bbf
cvsdist 99c0bbf
* Tue Aug 13 2002 Owen Taylor <otaylor@redhat.com>
cvsdist 99c0bbf
- Actually use language tags at the rendering layer (should fix #68211)
cvsdist 99c0bbf
cvsdist 99c0bbf
* Mon Jul 15 2002 Owen Taylor <otaylor@redhat.com>
cvsdist 99c0bbf
- Remove fixed-ltmain.sh, relibtoolize; to fix relink problems without 
cvsdist 99c0bbf
- Fix bug causing hex boxes to be misrendered
cvsdist 99c0bbf
  leaving RPATH (#66005)
cvsdist 99c0bbf
- For FT2 backend, supply FT_LOAD_NO_BITMAP to avoid problems with 
cvsdist 99c0bbf
  fonts with embedded bitmaps (#67851)
cvsdist 99c0bbf
cvsdist 99c0bbf
* Mon Jul  8 2002 Owen Taylor <otaylor@redhat.com>
cvsdist 99c0bbf
- Make basic-x shaper work with our big-5 fonts
cvsdist 99c0bbf
cvsdist 99c0bbf
* Wed Jul  3 2002 Owen Taylor <otaylor@redhat.com>
cvsdist 99c0bbf
- New upstream tarball with hooks for change-on-the fly font rendering
cvsdist 99c0bbf
cvsdist 99c0bbf
* Tue Jun 25 2002 Owen Taylor <otaylor@redhat.com>
cvsdist 99c0bbf
- Up FreeType version to deal with FreeType-2.0.x / 2.1.x \
cvsdist 99c0bbf
  ABI changes for pango's OpenType code.
cvsdist 99c0bbf
cvsdist 99c0bbf
* Mon Jun 24 2002 Owen Taylor <otaylor@redhat.com>
cvsdist 99c0bbf
- Add some Korean aliases that the installer wants
cvsdist 99c0bbf
cvsdist 99c0bbf
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
cvsdist 99c0bbf
- automated rebuild
cvsdist 539766a
cvsdist 539766a
* Sat Jun  8 2002 Havoc Pennington <hp@redhat.com>
cvsdist 539766a
- devel package requires fontconfig/Xft devel packages
cvsdist 539766a
cvsdist 539766a
* Fri Jun 07 2002 Havoc Pennington <hp@redhat.com>
cvsdist 539766a
- rebuild in different environment
cvsdist 539766a
cvsdist 539766a
* Thu Jun  6 2002 Owen Taylor <otaylor@redhat.com>
cvsdist 539766a
- Snapshot with Xft2/fontconfig support
cvsdist 539766a
cvsdist 539766a
* Wed May 29 2002 Owen Taylor <otaylor@redhat.com>
cvsdist 539766a
- Version 1.0.2
cvsdist 539766a
- Patch for charmaps problem
cvsdist 539766a
cvsdist 539766a
* Sun May 26 2002 Tim Powers <timp@redhat.com>
cvsdist 539766a
- automated rebuild
cvsdist 539766a
cvsdist 539766a
* Wed May 22 2002 Havoc Pennington <hp@redhat.com>
cvsdist 539766a
- rebuild in different environment
cvsdist 539766a
cvsdist 539766a
* Wed May 22 2002 Havoc Pennington <hp@redhat.com>
cvsdist 539766a
- add patch to adjust to newer version of freetype
cvsdist 539766a
cvsdist b3ee2fd
* Wed Apr  3 2002 Alex Larsson <alexl@redhat.com>
cvsdist b3ee2fd
- Update to version 1.0.1, remove patch
cvsdist b3ee2fd
cvsdist a39ba95
* Tue Mar 19 2002 Owen Taylor <otaylor@redhat.com>
cvsdist a39ba95
- Patch from CVS for big speedup with FreeType-2.0.9
cvsdist a39ba95
cvsdist a39ba95
* Mon Mar 11 2002 Owen Taylor <otaylor@redhat.com>
cvsdist a39ba95
- Rebuild
cvsdist a39ba95
cvsdist a39ba95
* Fri Mar  8 2002 Owen Taylor <otaylor@redhat.com>
cvsdist a39ba95
- Version 1.0.0
cvsdist a39ba95
cvsdist a39ba95
* Mon Feb 25 2002 Alex Larsson <alexl@redhat.com>
cvsdist a39ba95
- Update to 0.26
cvsdist a39ba95
cvsdist a39ba95
* Thu Feb 21 2002 Alex Larsson <alexl@redhat.com>
cvsdist a39ba95
- Bump for rebuild
cvsdist a39ba95
cvsdist a39ba95
* Mon Feb 18 2002 Alex Larsson <alexl@redhat.com>
cvsdist a39ba95
- Update to 0.25
cvsdist a39ba95
cvsdist a39ba95
* Fri Feb 15 2002 Havoc Pennington <hp@redhat.com>
cvsdist a39ba95
- add horrible buildrequires hack
cvsdist a39ba95
cvsdist a39ba95
* Thu Feb 14 2002 Havoc Pennington <hp@redhat.com>
cvsdist a39ba95
- 0.24.90 cvs snap
cvsdist a39ba95
cvsdist a39ba95
* Tue Jan 29 2002 Owen Taylor <otaylor@redhat.com>
cvsdist a39ba95
- Version 0.24
cvsdist a39ba95
cvsdist a39ba95
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
cvsdist a39ba95
- automated rebuild
cvsdist a39ba95
cvsdist 3d79492
* Wed Jan  2 2002 Havoc Pennington <hp@redhat.com>
cvsdist 3d79492
- new snap 0.23.90
cvsdist 3d79492
cvsdist 3d79492
* Sun Nov 25 2001 Havoc Pennington <hp@redhat.com>
cvsdist 3d79492
- rebuild with 64-bit-fixed glib
cvsdist 3d79492
cvsdist 3d79492
* Sun Nov 25 2001 Havoc Pennington <hp@redhat.com>
cvsdist 3d79492
- Version 0.22
cvsdist 3d79492
- add explicit check for required glib2 version before we do the build,
cvsdist 3d79492
  so we don't end up with bad RPMs on --nodeps builds
cvsdist 3d79492
- PreReq the glib2_version version, instead of 1.3.8 hardcoded that 
cvsdist 3d79492
  no one had updated recently
cvsdist 3d79492
cvsdist 3d79492
* Thu Oct 25 2001 Owen Taylor <otaylor@redhat.com>
cvsdist 3d79492
- Version 0.21
cvsdist 3d79492
cvsdist 3d79492
* Thu Oct  4 2001 Havoc Pennington <hp@redhat.com>
cvsdist 3d79492
- cvs snap
cvsdist 3d79492
- new cvs snap with a bugfix
cvsdist 3d79492
cvsdist 3d79492
* Thu Sep 27 2001 Havoc Pennington <hp@redhat.com>
cvsdist 3d79492
- sync with Owen's changes, fix up dependency versions
cvsdist 3d79492
cvsdist 3d79492
* Wed Sep 19 2001 Havoc Pennington <hp@redhat.com>
cvsdist 3d79492
- 0.19
cvsdist 3d79492
cvsdist 3d79492
* Mon Sep 10 2001 Havoc Pennington <hp@redhat.com>
cvsdist 3d79492
- build CVS snap
cvsdist 3d79492
cvsdist 3d79492
* Wed Sep 05 2001 Havoc Pennington <hp@redhat.com>
cvsdist 3d79492
- no relinking junk
cvsdist 3d79492
cvsdist 3d79492
* Tue Sep  4 2001 root <root@dhcpd37.meridian.redhat.com>
cvsdist 3d79492
- Version 0.18
cvsdist 3d79492
cvsdist efb4927
* Fri Jul 20 2001 Owen Taylor <otaylor@redhat.com>
cvsdist efb4927
- Configure --disable-gtk-doc
cvsdist efb4927
- BuildRequires freetype-devel, XFree86-devel
cvsdist efb4927
cvsdist efb4927
* Tue Jun 12 2001 Havoc Pennington <hp@redhat.com>
cvsdist efb4927
- 0.17
cvsdist efb4927
- libtool hackarounds
cvsdist efb4927
cvsdist efb4927
* Fri May 04 2001 Owen Taylor <otaylor@redhat.com>
cvsdist efb4927
- 0.16, rename back to pango from pango-gtkbeta
cvsdist efb4927
cvsdist efb4927
* Fri Feb 16 2001 Owen Taylor <otaylor@redhat.com>
cvsdist efb4927
- Obsolete fribidi-gtkbeta
cvsdist efb4927
cvsdist efb4927
* Mon Dec 11 2000 Havoc Pennington <hp@redhat.com>
cvsdist efb4927
- Remove that patch I just put in
cvsdist efb4927
cvsdist efb4927
* Mon Dec 11 2000 Havoc Pennington <hp@redhat.com>
cvsdist efb4927
- Patch pangox.pc.in to include -Iincludedir
cvsdist efb4927
cvsdist efb4927
* Fri Nov 17 2000 Owen Taylor <otaylor@redhat.com>
cvsdist efb4927
- final 0.13
cvsdist efb4927
cvsdist efb4927
* Tue Nov 14 2000 Owen Taylor <otaylor@redhat.com>
cvsdist efb4927
- New 0.13 tarball
cvsdist efb4927
cvsdist efb4927
* Mon Nov 13 2000 Owen Taylor <otaylor@redhat.com>
cvsdist efb4927
- 0.13pre1
cvsdist efb4927
cvsdist efb4927
* Sun Aug 13 2000 Owen Taylor <otaylor@redhat.com>
cvsdist efb4927
- Rename to 0.12b to avoid versioning problems
cvsdist efb4927
cvsdist efb4927
* Thu Aug 10 2000 Havoc Pennington <hp@redhat.com>
cvsdist efb4927
- Move to a CVS snapshot
cvsdist efb4927
cvsdist efb4927
* Fri Jul 07 2000 Owen Taylor <otaylor@redhat.com>
cvsdist efb4927
- Move back to /usr
cvsdist efb4927
- Version 0.12
cvsdist efb4927
cvsdist efb4927
* Mon Jun 19 2000  Owen Taylor <otaylor@redhat.com>
cvsdist efb4927
- Add missing %%defattr
cvsdist efb4927
cvsdist efb4927
* Thu Jun 8 2000  Owen Taylor <otaylor@redhat.com>
cvsdist efb4927
- Rebuild with a prefix of /opt/gtk-beta
cvsdist efb4927
cvsdist efb4927
* Wed May 31 2000 Owen Taylor <otaylor@redhat.com>
cvsdist efb4927
- version 0.11
cvsdist efb4927
- add --without-qt
cvsdist efb4927
cvsdist efb4927
* Wed Apr 26 2000 Owen Taylor <otaylor@redhat.com>
cvsdist efb4927
- Make the devel package require *-gtkbeta-* not the normal packages.
cvsdist efb4927
cvsdist efb4927
* Tue Apr 25 2000 Owen Taylor <otaylor@redhat.com>
cvsdist efb4927
- GTK+ snapshot version installing in /opt/gtk-beta
cvsdist efb4927
cvsdist efb4927
* Fri Feb 11 2000 Owen Taylor <otaylor@redhat.com>
cvsdist efb4927
- Created spec file