This commit is contained in:
parent
c746554811
commit
1416aed689
@ -1,3 +1,8 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 7 17:31:59 CEST 2008 - sbrabec@suse.cz
|
||||
|
||||
- Call pango-querymodules for thai-lang module (bnc#431518).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 7 10:56:02 CEST 2008 - cthiel@suse.de
|
||||
|
||||
|
34
pango.spec
34
pango.spec
@ -32,7 +32,7 @@ License: LGPL v2.1 or later
|
||||
Group: System/Libraries
|
||||
AutoReqProv: on
|
||||
Version: 1.22.0
|
||||
Release: 1
|
||||
Release: 2
|
||||
Summary: System for Layout and Rendering of Internationalised Text
|
||||
Source: ftp://ftp.gnome.org/pub/GNOME/sources/pango/1.18/%{name}-%{version}.tar.bz2
|
||||
Source1: README.SuSE
|
||||
@ -183,6 +183,36 @@ if [ -x usr/bin/pango-querymodules ] ; then
|
||||
> etc/pango/pango.modules
|
||||
fi
|
||||
%endif
|
||||
%if %suse_version >= 1100
|
||||
|
||||
%post module-thai-lang
|
||||
%if "%_lib" == "lib64"
|
||||
# it is not fatal if execution fails on 32bit systems
|
||||
LD_LIBRARY_PATH=usr/%{_lib}\
|
||||
usr/bin/pango-querymodules-64\
|
||||
> etc/pango/pango64.modules || echo "pango-querymodules-64 did not run properly in postin."
|
||||
%else
|
||||
LD_LIBRARY_PATH=usr/%{_lib}\
|
||||
usr/bin/pango-querymodules\
|
||||
> etc/pango/pango.modules
|
||||
%endif
|
||||
|
||||
%postun module-thai-lang
|
||||
%if "%_lib" == "lib64"
|
||||
if [ -x usr/bin/pango-querymodules-64 ] ; then
|
||||
# it is not fatal if execution fails on 32bit systems
|
||||
LD_LIBRARY_PATH=usr/%{_lib}\
|
||||
usr/bin/pango-querymodules-64\
|
||||
> etc/pango/pango64.modules || echo "pango-querymodules-64 did not run properly in postun."
|
||||
fi
|
||||
%else
|
||||
if [ -x usr/bin/pango-querymodules ] ; then
|
||||
LD_LIBRARY_PATH=usr/%{_lib}\
|
||||
usr/bin/pango-querymodules\
|
||||
> etc/pango/pango.modules
|
||||
fi
|
||||
%endif
|
||||
%endif
|
||||
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
@ -228,6 +258,8 @@ fi
|
||||
%{_datadir}/gtk-doc/html/pango
|
||||
|
||||
%changelog
|
||||
* Tue Oct 07 2008 sbrabec@suse.cz
|
||||
- Call pango-querymodules for thai-lang module (bnc#431518).
|
||||
* Tue Oct 07 2008 cthiel@suse.de
|
||||
- Update to version 1.22.0:
|
||||
+ Improved Romanian sample text
|
||||
|
Loading…
Reference in New Issue
Block a user