[inkscape/el5] Revert to 73c4

Jon Ciesla limb at fedoraproject.org
Wed Dec 19 18:31:46 UTC 2012


commit e2af8ffd83801a104905c7d8641e26633c96da36
Author: Jon Ciesla <limburgher at gmail.com>
Date:   Wed Dec 19 11:53:07 2012 -0600

    Revert to 73c4

 .cvsignore                         |    1 +
 .gitignore                         |    1 -
 Makefile                           |   21 +++
 branch                             |    1 +
 inkscape-0.45.1-desktop.patch      |   30 ++++
 inkscape-0.46-fixlatex.patch       |   42 +++++
 inkscape-0.46pre2-icons.patch      |   23 +++
 inkscape-16571-cxxinclude.patch    |   12 ++
 inkscape-20090410svn-formats.patch |   16 --
 inkscape-20090410svn-uniconv.patch |   38 -----
 inkscape-20090925svn-el5.patch     |  164 -------------------
 inkscape.spec                      |  312 +++++++-----------------------------
 sources                            |    2 +-
 13 files changed, 192 insertions(+), 471 deletions(-)
---
diff --git a/.cvsignore b/.cvsignore
new file mode 100644
index 0000000..883ac0a
--- /dev/null
+++ b/.cvsignore
@@ -0,0 +1 @@
+inkscape-0.46.tar.bz2
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..4ad7261
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,21 @@
+# Makefile for source rpm: inkscape
+# $Id$
+NAME := inkscape
+SPECFILE = $(firstword $(wildcard *.spec))
+
+define find-makefile-common
+for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
+endef
+
+MAKEFILE_COMMON	:= $(shell $(find-makefile-common))
+
+ifeq ($(MAKEFILE_COMMON),)
+# attept a checkout
+define checkout-makefile-common
+test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
+endef
+
+MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
+endif
+
+include $(MAKEFILE_COMMON)
diff --git a/branch b/branch
new file mode 100644
index 0000000..42f697a
--- /dev/null
+++ b/branch
@@ -0,0 +1 @@
+EL-5
diff --git a/inkscape-0.45.1-desktop.patch b/inkscape-0.45.1-desktop.patch
new file mode 100644
index 0000000..c6cd23d
--- /dev/null
+++ b/inkscape-0.45.1-desktop.patch
@@ -0,0 +1,30 @@
+Make desktop-file-validate and rpmlint happy, handle compressed svgs (#245413)
+and let it conform enough not to break the build in Rawhide.
+
+(Lubomir Kundrak <lkundrak at redhat.com>)
+https://bugs.launchpad.net/inkscape/+bug/190420
+
+--- inkscape-0.45.1.orig/inkscape.desktop.in	2007-01-16 03:49:00.000000000 +0100
++++ inkscape-0.45.1/inkscape.desktop.in	2007-12-02 03:17:08.000000000 +0100
+@@ -2,18 +2,16 @@
+ _Name=Inkscape SVG Vector Illustrator
+ _Comment=Create and edit Scalable Vector Graphics images
+ 
+-Encoding=UTF-8
+ Version=1.0
+ 
+ Type=Application
+-Categories=Application;Graphics;VectorGraphics;GTK;
++Categories=Graphics;VectorGraphics;GTK;
+ 
+-MimeType=image/svg+xml
++MimeType=image/svg+xml;image/svg+xml-compressed;
+ 
+-FilePattern=inkscape
+ Exec=inkscape %F
+ TryExec=inkscape
+ Terminal=false
+ StartupNotify=true
+ 
+-Icon=inkscape.png
++Icon=inkscape
diff --git a/inkscape-0.46-fixlatex.patch b/inkscape-0.46-fixlatex.patch
new file mode 100644
index 0000000..379ec6b
--- /dev/null
+++ b/inkscape-0.46-fixlatex.patch
@@ -0,0 +1,42 @@
+Patch to fix #441017: LaTeX rendering nonfunctional in Inkscape 0.46.
+
+First hunk is from Stéphane Bonnet, thanks!
+http://launchpadlibrarian.net/12978623/eqtexsvg.py.patch
+
+Second hunk is from here, unlike Ubuntu we support -quiet though
+https://bugs.launchpad.net/inkscape/+bug/195052/comments/1
+
+--- inkscape-0.46/share/extensions/eqtexsvg.py.orig	2008-04-05 22:12:35.000000000 +0200
++++ inkscape-0.46/share/extensions/eqtexsvg.py	2008-04-05 22:14:04.000000000 +0200
+@@ -49,16 +49,18 @@ def svg_open(self,filename):
+     doc_sizeW = max(doc_width,doc_height)
+ 
+     def clone_and_rewrite(self, node_in):
+-        if node_in.tag != 'svg':
+-            node_out = inkex.etree.Element(inkex.addNS(node_in.tag,'svg'))
++        in_tag = node_in.tag.rsplit('}',1)[-1]
++        if in_tag != 'svg':
++            node_out = inkex.etree.Element(inkex.addNS(in_tag,'svg'))
+             for name in node_in.attrib:
+                 node_out.set(name, node_in.attrib[name])
+         else:
+             node_out = inkex.etree.Element(inkex.addNS('g','svg'))
+         for c in node_in.iterchildren():
+-            if c.tag in ('g', 'path', 'polyline', 'polygon'):
++            c_tag = c.tag.rsplit('}',1)[-1]
++            if c_tag in ('g', 'path', 'polyline', 'polygon'):
+                 child = clone_and_rewrite(self, c)
+-                if c.tag == 'g':
++                if c_tag == 'g':
+                     child.set('transform','matrix('+str(doc_sizeH/700.)+',0,0,'+str(-doc_sizeH/700.)+','+str(-doc_sizeH*0.25)+','+str(doc_sizeW*0.75)+')')
+                 node_out.append(child)
+ 
+@@ -110,7 +112,7 @@ class EQTEXSVG(inkex.Effect):
+ 
+         os.system('dvips -q -f -E -D 600 -y 5000 -o ' + ps_file + ' ' + dvi_file)
+         #os.system('cd ' + base_dir)
+-        os.system('pstoedit -f plot-svg -dt -ssp ' + ps_file + ' ' + svg_file + '> ' + out_file)
++        os.system('pstoedit -quiet -f plot-svg -dt -ssp ' + ps_file + ' ' + svg_file + '> ' + out_file)
+         svg_open(self, svg_file)
+ 
+         clean()
diff --git a/inkscape-0.46pre2-icons.patch b/inkscape-0.46pre2-icons.patch
new file mode 100644
index 0000000..373e6cb
--- /dev/null
+++ b/inkscape-0.46pre2-icons.patch
@@ -0,0 +1,23 @@
+Default to small icons and Sans font.
+
+diff -urp inkscape-0.45+0.46pre2.orig/src/preferences-skeleton.h inkscape-0.45+0.46pre2/src/preferences-skeleton.h
+--- inkscape-0.45+0.46pre2.orig/src/preferences-skeleton.h	2008-02-17 05:24:14.000000000 +0100
++++ inkscape-0.45+0.46pre2/src/preferences-skeleton.h	2008-02-22 09:34:12.000000000 +0100
+@@ -73,7 +73,7 @@ static char const preferences_skeleton[]
+ "                       tracebackground=\"0\" usepressure=\"1\" usetilt=\"0\" keep_selected=\"1\"/>\n"
+ "    <eventcontext id=\"text\"  usecurrent=\"0\" gradientdrag=\"1\"\n" 
+ "                       font_sample=\"AaBbCcIiPpQq12369$\342\202\254\302\242?.;/()\"\n"
+-"                  style=\"fill:black;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans;font-style:normal;font-weight:normal;font-size:40px;\" selcue=\"1\"/>\n"
++"                  style=\"fill:black;fill-opacity:1;stroke:none;font-family:Sans;font-style:normal;font-weight:normal;font-size:40px;-inkscape-font-specification:Sans;font-stretch:normal;font-variant:normal\" selcue=\"1\"/>\n"
+ "    <eventcontext id=\"nodes\" selcue=\"1\" gradientdrag=\"1\" show_handles=\"1\" sculpting_profile=\"1\" />\n"
+ "    <eventcontext id=\"tweak\" selcue=\"0\" gradientdrag=\"0\" show_handles=\"0\" width=\"0.2\" force=\"0.2\" fidelity=\"0.5\" usepressure=\"1\" style=\"fill:red;stroke:none;\" usecurrent=\"0\"/>\n"
+ "    <eventcontext id=\"gradient\" selcue=\"1\"/>\n"
+@@ -308,7 +308,7 @@ static char const preferences_skeleton[]
+ "    <group\n"
+ "       id=\"tools\"\n"
+ "       icononly=\"1\"\n"
+-"       small=\"0\" />\n"
++"       small=\"1\" />\n"
+ "  </group>\n"
+ "\n"
+ "  <group\n"
diff --git a/inkscape-16571-cxxinclude.patch b/inkscape-16571-cxxinclude.patch
new file mode 100644
index 0000000..3ebfbb1
--- /dev/null
+++ b/inkscape-16571-cxxinclude.patch
@@ -0,0 +1,12 @@
+--- inkscape-16571/src/Makefile.in.orig	2007-11-29 13:38:13.000000000 +0100
++++ inkscape-16571/src/Makefile.in	2007-11-29 13:38:29.000000000 +0100
+@@ -317,7 +317,8 @@
+ 	$(POPPLER_GLIB_CFLAGS)	\
+ 	-DPOTRACE=\"potrace\"	\
+ 	$(INKSCAPE_CFLAGS) \
+-	-I$(top_srcdir)/cxxtest
++	-I$(top_srcdir)/cxxtest \
++	-I$(top_srcdir)/src/extension/script
+ 
+ 
+ @PLATFORM_WIN32_TRUE at win32_sources = winmain.cpp registrytool.cpp registrytool.h
diff --git a/inkscape.spec b/inkscape.spec
index fd203a0..a716975 100644
--- a/inkscape.spec
+++ b/inkscape.spec
@@ -1,19 +1,16 @@
 Name:           inkscape
-Version:        0.47
-Release:        0.16.pre4.20091101svn%{?dist}
+Version:        0.46
+Release:        2%{?dist}.1
 Summary:        Vector-based drawing program using SVG
 
 Group:          Applications/Productivity
 License:        GPLv2+
 URL:            http://inkscape.sourceforge.net/
-#Source0:        http://download.sourceforge.net/inkscape/%{name}-%{version}.tar.bz2
-# svn export -r22548 https://inkscape.svn.sourceforge.net/svnroot/inkscape/inkscape/trunk@22548 inkscape
-# tar czf inkscape.tar.gz inkscape
-Source0:        %{name}.tar.gz
-
-Patch0:         inkscape-20090410svn-uniconv.patch
-Patch4:         inkscape-20090410svn-formats.patch
-Patch5:         inkscape-20090925svn-el5.patch
+Source0:        http://download.sourceforge.net/inkscape/%{name}-%{version}.tar.bz2
+Patch0:         inkscape-16571-cxxinclude.patch
+Patch1:         inkscape-0.45.1-desktop.patch
+Patch2:         inkscape-0.46pre2-icons.patch
+Patch3:         inkscape-0.46-fixlatex.patch
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 
@@ -32,127 +29,68 @@ BuildRequires:  pango-devel
 BuildRequires:  pkgconfig
 BuildRequires:  lcms-devel >= 1.13
 BuildRequires:  cairo-devel
+BuildRequires:  openssl-devel
 BuildRequires:  dos2unix
+BuildRequires:  perl-XML-Parser
 BuildRequires:  python-devel
 BuildRequires:  poppler-devel
 BuildRequires:  loudmouth-devel
 BuildRequires:  boost-devel
-BuildRequires:  gsl-devel
-BuildRequires:  libwpg-devel
-BuildRequires:  ImageMagick-c++-devel
-BuildRequires:  perl(XML::Parser)
-BuildRequires:  perl(ExtUtils::Embed)
-BuildRequires:  intltool
-# A packaging bug in EL-5
-%if 0%{?fedora > 6}
-BuildRequires:  popt-devel
-%else
+
+# Use popt-devel if Fedora 8, RHEL 6, newer or unknown,
+# rely on popt otherwise
+%if %{!?fedora:8}%{?fedora} < 8 || %{!?rhel:6}%{?rhel} < 6
 BuildRequires:  popt
+%else
+BuildRequires:  popt-devel
 %endif
-BuildRequires:  autoconf
-BuildRequires:  automake
-
-# Incompatible license
-BuildConflicts: openssl-devel
 
-# Disable all for now. TODO: Be smarter
-%if 0
-Requires:       dia
 Requires:       pstoedit
-Requires:       ghostscript
 Requires:       perl(Image::Magick)
-Requires:       tex(latex)
-Requires:       tex(dvips)
-Requires:       transfig
-Requires:       gimp
 Requires:       numpy
+Requires:       PyXML
 Requires:       python-lxml
-Requires:       uniconvertor
-# TODO: Deal with these (autoreqs, disabled now):
-# perl(Cwd)
-# perl(Exporter)
-# perl(File::Basename)
-# perl(Getopt::Long)
-# perl(Getopt::Std)
-# perl(MIME::Base64)
-# perl(Pod::Usage)
-# perl(SVG)
-# perl(SVG::Parser)
-# perl(XML::XQL)
-# perl(XML::XQL::DOM)
-# perl(strict)
-# perl(vars)
-# perl(warnings)
-%endif
-Requires:       python-lxml
-Requires:       numpy
 
 Requires(post):   desktop-file-utils
 Requires(postun): desktop-file-utils
 
-# Filter out perl requires and provides
-# XXX: For now _all_
-%global __perl_provides %{nil}
-%global __perl_requires %{nil}
-
 %description
-Inkscape is a vector graphics editor, with capabilities similar to
-Illustrator, CorelDraw, or Xara X, using the W3C standard Scalable Vector
-Graphics (SVG) file format.  It is therefore a very useful tool for web
-designers and as an interchange format for desktop publishing.
-
-Inkscape supports many advanced SVG features (markers, clones, alpha
-blending, etc.) and great care is taken in designing a streamlined
-interface. It is very easy to edit nodes, perform complex path operations,
-trace bitmaps and much more.
-
-
-%package view
-Summary:        Viewing program for SVG files
-Group:          Applications/Productivity
-
-%description view
-Viewer for files in W3C standard Scalable Vector Graphics (SVG) file
-format.
+Inkscape is a vector-based drawing program, like CorelDraw® or Adobe
+Illustrator® from the proprietary software world, and Sketch or Karbon14 from
+the free software world. It is free software, distributed under the terms of
+the Gnu General Public License, Version 2.
 
+Inkscape uses W3C SVG as its native file format. It is therefore a very useful
+tool for web designers and as an interchange format for desktop publishing.
 
-%package docs
-Summary:        Documentation for Inkscape
-Group:          Documentation
-Requires:       inkscape
-
-%description docs
-Tutorial and examples for Inkscape, a graphics editor for vector
-graphics in W3C standard Scalable Vector Graphics (SVG) file format.
+It has a relatively modern display engine, giving you finely antialiased
+display, alpha transparencies, vector fonts and so on. Inkscape is written in
+C and C++, using the Gtk+ toolkit and optionally some Gnome libraries.
 
 
 %prep
-%setup -q -n %{name}
-%patch0 -p1 -b .uniconv
-%patch4 -p1 -b .formats
-%patch5 -p1 -b .el5
-
-# https://bugs.launchpad.net/inkscape/+bug/314381
-# A couple of files have executable bits set,
-# despite not being executable
-(find . \( -name '*.cpp' -o -name '*.h' \) -perm +111
-	find share/extensions -name '*.py' -perm +111
-) |xargs chmod -x
-
-# Fix end of line encodings
+%setup -q
+%patch0 -p1 -b .cxxinclude
+%patch1 -p1 -b .desktop
+%patch2 -p1 -b .icons
+%patch3 -p1 -b .fixlatex
+find -type f -regex '.*\.\(cpp\|h\)' -perm +111 -exec chmod -x {} ';'
+find share/extensions/ -type f -regex '.*\.py' -perm +111 -exec chmod -x {} ';'
 dos2unix -k -q share/extensions/*.py
 
 
 %build
-sh autogen.sh
-%configure                      \
-        --with-python           \
-        --with-perl             \
-        --with-gnome-vfs        \
-        --with-xft              \
-        --enable-lcms           \
-        --enable-poppler-cairo  \
-        --disable-dependency-tracking
+%configure                     \
+--disable-dependency-tracking  \
+--with-xinerama                \
+--enable-static=no             \
+--with-python                  \
+--with-perl                    \
+--with-gnome-vfs               \
+--with-inkjar                  \
+--enable-inkboard              \
+--enable-lcms                  \
+--enable-poppler-cairo
 
 make %{?_smp_mflags}
 
@@ -160,169 +98,41 @@ make %{?_smp_mflags}
 %install
 rm -rf $RPM_BUILD_ROOT
 make install DESTDIR=$RPM_BUILD_ROOT
-find $RPM_BUILD_ROOT -type f -name "*.la" -exec rm -f {} ';'
-
-desktop-file-install --vendor fedora --delete-original  \
-        --dir $RPM_BUILD_ROOT%{_datadir}/applications   \
-        $RPM_BUILD_ROOT%{_datadir}/applications/%{name}.desktop
-
-# No skencil anymore
-rm -f $RPM_BUILD_ROOT%{_datadir}/%{name}/extensions/sk2svg.sh
-
 %find_lang %{name}
+find $RPM_BUILD_ROOT -type f -name "*.la" -exec rm -f {} ';'
 
+rm -f $RPM_BUILD_ROOT%{_datadir}/%{name}/extensions/outline2svg.*
+rm -f $RPM_BUILD_ROOT%{_datadir}/%{name}/extensions/txt2svg.*
 
-%check
-# XXX: Tests fail, ignore it for now
-make -k check || :
+desktop-file-install --vendor fedora --delete-original     \
+  --dir $RPM_BUILD_ROOT%{_datadir}/applications            \
+  $RPM_BUILD_ROOT%{_datadir}/applications/%{name}.desktop
 
 
 %clean
 rm -rf $RPM_BUILD_ROOT
 
 
-%files -f %{name}.lang
-%defattr(-,root,root,-)
-%{_bindir}/inkscape
-%dir %{_datadir}/inkscape
-%{_datadir}/inkscape/clipart
-%{_datadir}/inkscape/extensions
-%{_datadir}/inkscape/filters
-%{_datadir}/inkscape/fonts
-%{_datadir}/inkscape/gradients
-%{_datadir}/inkscape/icons
-%{_datadir}/inkscape/keys
-%{_datadir}/inkscape/markers
-%{_datadir}/inkscape/palettes
-%{_datadir}/inkscape/patterns
-%{_datadir}/inkscape/screens
-%{_datadir}/inkscape/templates
-%{_datadir}/inkscape/ui
-%{_datadir}/applications/fedora-inkscape.desktop
-%{_datadir}/pixmaps/inkscape.png
-%{_mandir}/man1/inkscape.1*
-%{_mandir}/fr/man1/inkscape.1*
-%doc AUTHORS COPYING ChangeLog NEWS README
+%post
+update-desktop-database %{_datadir}/applications > /dev/null 2>&1 || :
 
 
-%files view
-%defattr(-,root,root,-)
-%{_bindir}/inkview
-%{_mandir}/man1/inkview.1*
-%doc AUTHORS COPYING ChangeLog NEWS README
+%postun
+update-desktop-database %{_datadir}/applications > /dev/null 2>&1 || :
 
 
-%files docs
+%files -f %{name}.lang
 %defattr(-,root,root,-)
-%dir %{_datadir}/inkscape
-%{_datadir}/inkscape/tutorials
-%{_datadir}/inkscape/examples
+%doc AUTHORS COPYING ChangeLog NEWS README
+%doc %{_mandir}/man1/*
+%{_bindir}/*
+%{_datadir}/%{name}/
+%{_datadir}/applications/*.desktop
+%{_datadir}/pixmaps/*
+%{_mandir}/fr/man1/*
 
 
 %changelog
-* Mon Sep 07 2009 Lubomir Rintel <lkundrak at v3.sk> - 0.47-0.16.pre4.20091101svn
-- Move to a later snapshot
-- python-lxml and numpy seem to be rather popular, add them as hard deps
-
-* Mon Sep 07 2009 Lubomir Rintel <lkundrak at v3.sk> - 0.47-0.16.pre3.20091017svn
-- Move to a later snapshot
-
-* Mon Sep 07 2009 Lubomir Rintel <lkundrak at v3.sk> - 0.47-0.16.pre3.20090925svn
-- Move to a later snapshot
-- Drop debugging compiler flags, enable optimizations again
-- Make it build on everything since EL5 again
-
-* Mon Sep 07 2009 Lubomir Rintel <lkundrak at v3.sk> - 0.47-0.16.pre2.20090907svn
-- Move inkview man page to -view subpackage (#515358)
-- Add license, etc. to main package
-
-* Mon Sep 07 2009 Lubomir Rintel <lkundrak at v3.sk> - 0.47-0.15.pre2.20090907svn
-- Update to a post-pre2 snapshot
-
-* Mon Aug 10 2009 Lubomir Rintel <lkundrak at v3.sk> - 0.47-0.15.pre1.20090629svn
-- Update to a post-pre1 snapshot
-- Drop upstreamed CRC32 fix
-
-* Fri Jul 24 2009 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 0.47-0.14.pre0.20090629svn
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
-
-* Mon Jun 29 2009 Lubomir Rintel <lkundrak at v3.sk> - 0.47-0.13.pre0.20090629svn
-- Update to a newer snapshot
-
-* Tue Jun 16 2009 Lubomir Rintel <lkundrak at v3.sk> - 0.47-0.12.pre0.20090616svn
-- Update to post-pre0 snapshot
-
-* Tue Jun 02 2009 Lubomir Rintel <lkundrak at v3.sk> - 0.47-0.11.20090602svn
-- More recent snapshot
-- Upstream removed rasterized icons again
-
-* Sat May 23 2009 Lubomir Rintel <lkundrak at v3.sk> - 0.47-0.10.20090518svn
-- Rebuild for new poppler
-
-* Mon May 18 2009 Lubomir Rintel <lkundrak at v3.sk> - 0.47-0.9.20090518svn
-- Update past upstream Beta release
-
-* Mon May 18 2009 Lubomir Rintel <lkundrak at v3.sk> - 0.47-0.8.20090508svn
-- Fix ODG export
-
-* Fri May 08 2009 Lubomir Rintel <lkundrak at v3.sk> - 0.47-0.7.20090508svn
-- Update to a post-alpha snapshot
-- Upstream applied our GCC 4.4 patch
-
-* Fri Apr 10 2009 Lubomir Rintel <lkundrak at v3.sk> - 0.47-0.6.20090410svn
-- Update to newer snapshot
-- Fix doc/incview reversed subpackage content
-
-* Wed Mar 04 2009 Lubomir Rintel <lkundrak at v3.sk> - 0.47-0.6.20090301svn
-- Rebuild for new ImageMagick
-
-* Wed Mar 04 2009 Lubomir Rintel <lkundrak at v3.sk> - 0.47-0.5.20090301svn
-- Split documentation and inkview into subpackages
-
-* Mon Mar 02 2009 Lubomir Rintel <lkundrak at v3.sk> - 0.47-0.4.20090301svn
-- Bump to later SVN snapshot to fix inkscape/+bug/331864
-- Fix a startup crash when compiled with GCC 4.4
-- It even runs now! :)
-
-* Fri Feb 27 2009 Lubomir Rintel <lkundrak at v3.sk> - 0.47-0.4.20090227svn
-- Enable the test suite
-
-* Fri Feb 27 2009 Lubomir Rintel <lkundrak at v3.sk> - 0.47-0.3.20090227svn
-- Past midnight! :)
-- More recent snapshot, our gcc44 fixes now upstream
-- One more gcc44 fix, it even compiles now
-- We install icons now, update icon cache
-- Disable inkboard, for it won't currently compile
-
-* Thu Feb 26 2009 Lubomir Rintel <lkundrak at v3.sk> - 0.47-0.3.20090226svn
-- Later snapshot
-- Compile with GCC 4.4
-
-* Tue Jan 06 2009 Lubomir Rintel <lkundrak at v3.sk> - 0.47-0.3.20090105svn
-- Update to newer SVN
-- Drop upstreamed patches
-- Enable WordPerfect Graphics support
-- Enable embedded Perl scripting
-- Enable Imagemagick support
-- Disable OpenSSL due to licensing issues
-
-* Thu Aug 14 2008 Lubomir Rintel <lkundrak at v3.sk> - 0.47-0.3.20080814svn
-- Update to today's SVN snapshot
-- Drop the upstreamed poppler patch
-
-* Wed Aug 13 2008 Lubomir Rintel <lkundrak at v3.sk> - 0.47-0.2.20080705svn
-- Rediff patches for zero fuzz
-- Use uniconvertor to handle CDR and WMF (#458845)
-
-* Wed Jul 09 2008 Lubomir Rintel <lkundrak at v3.sk> - 0.47-0.1.20080705svn
-- Subversion snapshot
-
-* Wed Jul 09 2008 Lubomir Rintel <lkundrak at v3.sk> - 0.46-4
-- Fix compile issues with newer gtk and poppler
-
-* Thu Jun 26 2008 Lubomir Rintel <lkundrak at v3.sk> - 0.46-3
-- Remove useless old hack, that triggered an assert after gtkfilechooser switched to gio
-
 * Fri Apr 11 2008 Lubomir Kundrak <lkundrak at redhat.com> - 0.46-2.1
 - More buildrequires more flexible, so that this builds on RHEL
 
diff --git a/sources b/sources
index 0bf61d9..deb5c8b 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-e92cc0964ccc2c2b190b6c557f8008b3  inkscape.tar.gz
+59997096c3640b2601c2b4afba8a3d75  inkscape-0.46.tar.bz2


More information about the scm-commits mailing list