This commit is contained in:
parent
aae11b0bef
commit
ac613a0a25
@ -4,11 +4,11 @@ pango
|
||||
prereq "filesystem glib2 xorg-x11-libs xorg-x11-libXrender xorg-x11-libX11"
|
||||
postun "/sbin/ldconfig"
|
||||
targettype 64bit postun "if [ -x usr/bin/pango-querymodules-64 ] ; then"
|
||||
targettype 64bit postun "LD_LIBRARY_PATH=usr/lib64 usr/bin/pango-querymodules-64 > etc/pango/pango64.modules"
|
||||
targettype 64bit postun "LD_LIBRARY_PATH=usr/lib64 usr/bin/pango-querymodules-64 > etc/pango/pango64.modules || echo pango-querymodules-64 did not run properly in postun."
|
||||
targettype 64bit postun "fi"
|
||||
targettype 32bit postun "if [ -x usr/bin/pango-querymodules ] ; then"
|
||||
targettype 32bit postun "LD_LIBRARY_PATH=usr/lib usr/bin/pango-querymodules > etc/pango/pango.modules"
|
||||
targettype 32bit postun "fi"
|
||||
targettype 64bit post "LD_LIBRARY_PATH=usr/lib64 usr/bin/pango-querymodules-64 > etc/pango/pango64.modules"
|
||||
targettype 64bit post "LD_LIBRARY_PATH=usr/lib64 usr/bin/pango-querymodules-64 > etc/pango/pango64.modules || echo pango-querymodules-64 did not run properly in postin."
|
||||
targettype 32bit post "LD_LIBRARY_PATH=usr/lib usr/bin/pango-querymodules > etc/pango/pango.modules"
|
||||
arch ppc64 package pango-devel
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed May 7 09:21:25 CEST 2008 - olh@suse.de
|
||||
|
||||
- execution failure of pango-querymodules-64 on 32bit systems is
|
||||
not fatal (bnc#301792)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue May 6 14:09:27 CEST 2008 - schwab@suse.de
|
||||
|
||||
|
11
pango.spec
11
pango.spec
@ -17,7 +17,7 @@ License: LGPL v2.1 or later
|
||||
Group: System/Libraries
|
||||
AutoReqProv: on
|
||||
Version: 1.20.1
|
||||
Release: 11
|
||||
Release: 12
|
||||
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
|
||||
@ -123,9 +123,10 @@ rm -rf $RPM_BUILD_ROOT
|
||||
%post
|
||||
/sbin/ldconfig
|
||||
%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
|
||||
> etc/pango/pango64.modules || echo "pango-querymodules-64 did not run properly in postin."
|
||||
%else
|
||||
LD_LIBRARY_PATH=usr/%{_lib}\
|
||||
usr/bin/pango-querymodules\
|
||||
@ -136,9 +137,10 @@ LD_LIBRARY_PATH=usr/%{_lib}\
|
||||
/sbin/ldconfig
|
||||
%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
|
||||
> etc/pango/pango64.modules || echo "pango-querymodules-64 did not run properly in postun."
|
||||
fi
|
||||
%else
|
||||
if [ -x usr/bin/pango-querymodules ] ; then
|
||||
@ -184,6 +186,9 @@ fi
|
||||
%{_datadir}/gtk-doc/html/pango
|
||||
|
||||
%changelog
|
||||
* Wed May 07 2008 olh@suse.de
|
||||
- execution failure of pango-querymodules-64 on 32bit systems is
|
||||
not fatal (bnc#301792)
|
||||
* Tue May 06 2008 schwab@suse.de
|
||||
- Don't use libtool before it is created.
|
||||
* Sat Apr 12 2008 maw@suse.de
|
||||
|
Loading…
x
Reference in New Issue
Block a user