This commit is contained in:
parent
bdd369286d
commit
583f4e2b02
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:4865b483e640a1950a9de2ff07260ae0ae5f534ddb72b68bed75db1e8f78527f
|
|
||||||
size 460040
|
|
3
librsvg-2.18.1.tar.bz2
Normal file
3
librsvg-2.18.1.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:de6d4582448bef474a9613f7b7028daf7222dd5822c6f12ad0659fbfe60b92cc
|
||||||
|
size 461160
|
13
librsvg-64bit-warning.patch
Normal file
13
librsvg-64bit-warning.patch
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
Index: librsvg-2.18.1/rsvg-styles.c
|
||||||
|
===================================================================
|
||||||
|
--- librsvg-2.18.1.orig/rsvg-styles.c
|
||||||
|
+++ librsvg-2.18.1/rsvg-styles.c
|
||||||
|
@@ -669,7 +669,7 @@ rsvg_parse_style_arg (RsvgHandle * ctx,
|
||||||
|
} else if (rsvg_css_param_match (str, "text-rendering")) {
|
||||||
|
state->has_text_rendering_type = TRUE;
|
||||||
|
|
||||||
|
- if (!strcmp (str + arg_off, "auto" || !strcmp (str + arg_off, "default")))
|
||||||
|
+ if (!strcmp (str + arg_off, "auto") || !strcmp (&str[arg_off], "default"))
|
||||||
|
state->text_rendering_type = TEXT_RENDERING_AUTO;
|
||||||
|
else if (!strcmp (str + arg_off, "optimizeSpeed"))
|
||||||
|
state->text_rendering_type = TEXT_RENDERING_OPTIMIZE_SPEED;
|
@ -1,3 +1,12 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Aug 30 23:10:58 CEST 2007 - maw@suse.de
|
||||||
|
|
||||||
|
- Update to version 2.18.1:
|
||||||
|
+ Basic support for SVG 1.1's text-rendering and shape-rendering
|
||||||
|
properties (bugzilla.gnome.org #464599)
|
||||||
|
- M-x replace-string RET %run_ldconfig RET /sbin/ldconfig RET
|
||||||
|
- Add librsvg-64bit-warning.patch.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Aug 2 02:03:16 CEST 2007 - mauro@suse.de
|
Thu Aug 2 02:03:16 CEST 2007 - mauro@suse.de
|
||||||
|
|
||||||
|
18
librsvg.spec
18
librsvg.spec
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package librsvg (Version 2.18.0)
|
# spec file for package librsvg (Version 2.18.1)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
# This file and all modifications and additions to the pristine
|
# This file and all modifications and additions to the pristine
|
||||||
@ -24,11 +24,12 @@ BuildRequires: mozilla-xulrunner%{xulrunner_version}-devel
|
|||||||
BuildRequires: gecko-sdk
|
BuildRequires: gecko-sdk
|
||||||
%endif
|
%endif
|
||||||
PreReq: coreutils
|
PreReq: coreutils
|
||||||
Version: 2.18.0
|
Version: 2.18.1
|
||||||
Release: 1
|
Release: 1
|
||||||
Summary: A Library for Rendering SVG Data
|
Summary: A Library for Rendering SVG Data
|
||||||
Source: ftp://ftp.gnome.org/pub/GNOME/sources/librsvg/2.18/%{name}-%{version}.tar.bz2
|
Source: ftp://ftp.gnome.org/pub/GNOME/sources/librsvg/2.18/%{name}-%{version}.tar.bz2
|
||||||
Patch1: env-paths.diff
|
Patch1: env-paths.diff
|
||||||
|
Patch2: librsvg-64bit-warning.patch
|
||||||
URL: http://librsvg.sourceforge.net/
|
URL: http://librsvg.sourceforge.net/
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
|
|
||||||
@ -48,7 +49,7 @@ Summary: Include Files and Libraries mandatory for Development.
|
|||||||
Group: Development/Libraries/C and C++
|
Group: Development/Libraries/C and C++
|
||||||
Provides: librsvg2-devel
|
Provides: librsvg2-devel
|
||||||
Obsoletes: librsvg2-devel
|
Obsoletes: librsvg2-devel
|
||||||
Requires: %{name} = %{version} libcroco-devel glib2-devel gtk2-devel libgsf-devel libart_lgpl-devel popt-devel
|
Requires: %{name} = %{version} libcroco-devel libbz2-devel glib2-devel gtk2-devel libgsf-devel libart_lgpl-devel popt-devel
|
||||||
|
|
||||||
%description devel
|
%description devel
|
||||||
This package contains all necessary include files and libraries needed
|
This package contains all necessary include files and libraries needed
|
||||||
@ -79,6 +80,7 @@ Authors:
|
|||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
%patch1
|
%patch1
|
||||||
|
%patch2 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
autoreconf -f -i
|
autoreconf -f -i
|
||||||
@ -101,11 +103,11 @@ rm $RPM_BUILD_ROOT%{_libdir}/*/*.*a $RPM_BUILD_ROOT%{_libdir}/*/*/*/*.*a
|
|||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf $RPM_BUILD_ROOT
|
||||||
|
|
||||||
%post
|
%post
|
||||||
%run_ldconfig
|
/sbin/ldconfig
|
||||||
touch var/adm/SuSEconfig/run-gtk
|
touch var/adm/SuSEconfig/run-gtk
|
||||||
|
|
||||||
%postun
|
%postun
|
||||||
%run_ldconfig
|
/sbin/ldconfig
|
||||||
touch var/adm/SuSEconfig/run-gtk
|
touch var/adm/SuSEconfig/run-gtk
|
||||||
|
|
||||||
%files
|
%files
|
||||||
@ -138,6 +140,12 @@ touch var/adm/SuSEconfig/run-gtk
|
|||||||
%{_libdir}/browser-plugins/*.so
|
%{_libdir}/browser-plugins/*.so
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Aug 30 2007 - maw@suse.de
|
||||||
|
- Update to version 2.18.1:
|
||||||
|
+ Basic support for SVG 1.1's text-rendering and shape-rendering
|
||||||
|
properties (bugzilla.gnome.org #464599)
|
||||||
|
- M-x replace-string RET %%run_ldconfig RET /sbin/ldconfig RET
|
||||||
|
- Add librsvg-64bit-warning.patch.
|
||||||
* Thu Aug 02 2007 - mauro@suse.de
|
* Thu Aug 02 2007 - mauro@suse.de
|
||||||
- Updated to 2.18.0
|
- Updated to 2.18.0
|
||||||
- Bugfixes for #412682, #418823, #401115, #444462, #452823, #448327,
|
- Bugfixes for #412682, #418823, #401115, #444462, #452823, #448327,
|
||||||
|
Loading…
Reference in New Issue
Block a user