Accepting request 32204 from GNOME:Apps
Copy from GNOME:Apps/dia based on submit request 32204 from user vuntz OBS-URL: https://build.opensuse.org/request/show/32204 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/dia?expand=0&rev=17
This commit is contained in:
parent
bb4b1d7b29
commit
79e95930c2
3
dia-0.97.1.tar.bz2
Normal file
3
dia-0.97.1.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:8dfe8b2c9d87baf29834c8de5e3ec91497c2b17f2b77fb1b867afddf5c429142
|
||||||
|
size 6836081
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:9083382bd5435b6d6324fc601f359a7c759504e48adbcece0a7d5c45a76ccf5a
|
|
||||||
size 6736670
|
|
@ -1,29 +0,0 @@
|
|||||||
Index: dia-0.97/bindings/dia-properties.cpp
|
|
||||||
===================================================================
|
|
||||||
--- dia-0.97.orig/bindings/dia-properties.cpp
|
|
||||||
+++ dia-0.97/bindings/dia-properties.cpp
|
|
||||||
@@ -140,7 +140,7 @@ dia::Property< ::Property* >::get (const
|
|
||||||
::ArrayProperty *prop = (::ArrayProperty *)self;
|
|
||||||
|
|
||||||
// now build with new values
|
|
||||||
- int num_props = num_props = prop->ex_props->len;
|
|
||||||
+ int num_props = prop->ex_props->len;
|
|
||||||
for (int i = 0; i < prop->records->len; ++i) {
|
|
||||||
::Property* p = 0;
|
|
||||||
vec.push_back (new dia::Property <Property*> (0));
|
|
||||||
Index: dia-0.97/plug-ins/drs/dia-render-script-import.c
|
|
||||||
===================================================================
|
|
||||||
--- dia-0.97.orig/plug-ins/drs/dia-render-script-import.c
|
|
||||||
+++ dia-0.97/plug-ins/drs/dia-render-script-import.c
|
|
||||||
@@ -164,10 +164,9 @@ gboolean
|
|
||||||
import_drs (const gchar *filename, DiagramData *dia, void* user_data)
|
|
||||||
{
|
|
||||||
GList *item, *items;
|
|
||||||
- xmlNodePtr root;
|
|
||||||
xmlDocPtr doc = xmlParseFile(filename);
|
|
||||||
|
|
||||||
- items = read_items (root->xmlChildrenNode);
|
|
||||||
+ items = read_items (doc->xmlChildrenNode);
|
|
||||||
for (item = items; item != NULL; item = g_list_next (item)) {
|
|
||||||
DiaObject *obj = (DiaObject *)item->data;
|
|
||||||
layer_add_object(dia->active_layer, obj);
|
|
@ -1,29 +0,0 @@
|
|||||||
Index: dia-0.97/lib/dialib.c
|
|
||||||
===================================================================
|
|
||||||
--- dia-0.97.orig/lib/dialib.c
|
|
||||||
+++ dia-0.97/lib/dialib.c
|
|
||||||
@@ -27,6 +27,7 @@
|
|
||||||
#include <libxml/xmlerror.h>
|
|
||||||
|
|
||||||
#include "dialib.h"
|
|
||||||
+#include "dia_dirs.h"
|
|
||||||
#include "message.h"
|
|
||||||
#include "utils.h"
|
|
||||||
#include "dia_image.h"
|
|
||||||
@@ -104,12 +105,15 @@ libdia_init (guint flags)
|
|
||||||
stdprops_init();
|
|
||||||
|
|
||||||
if (flags & DIA_INTERACTIVE) {
|
|
||||||
+ char *diagtkrc;
|
|
||||||
|
|
||||||
dia_image_init();
|
|
||||||
|
|
||||||
gdk_rgb_init();
|
|
||||||
|
|
||||||
- gtk_rc_parse("diagtkrc");
|
|
||||||
+ diagtkrc = dia_config_filename("diagtkrc");
|
|
||||||
+ gtk_rc_parse(diagtkrc);
|
|
||||||
+ g_free(diagtkrc);
|
|
||||||
|
|
||||||
color_init();
|
|
||||||
}
|
|
@ -1,22 +0,0 @@
|
|||||||
Index: dia-0.97/app/commands.c
|
|
||||||
===================================================================
|
|
||||||
--- dia-0.97.orig/app/commands.c
|
|
||||||
+++ dia-0.97/app/commands.c
|
|
||||||
@@ -690,7 +690,7 @@ help_manual_callback (GtkAction *action)
|
|
||||||
ShellExecuteA (0, "open", helpindex, NULL, helpdir, SW_SHOWNORMAL);
|
|
||||||
#else
|
|
||||||
command = getenv("BROWSER");
|
|
||||||
- command = g_strdup_printf("%s 'file://%s' &", command ? command : "gnome-open", helpindex);
|
|
||||||
+ command = g_strdup_printf("%s 'file://%s' &", command ? command : "xdg-open", helpindex);
|
|
||||||
system(command);
|
|
||||||
g_free(command);
|
|
||||||
#endif
|
|
||||||
@@ -708,7 +708,7 @@ activate_url (GtkAboutDialog *about,
|
|
||||||
ShellExecuteA (0, "open", link, NULL, NULL, SW_SHOWNORMAL);
|
|
||||||
#else
|
|
||||||
gchar *command = getenv("BROWSER");
|
|
||||||
- command = g_strdup_printf("%s '%s' &", command ? command : "gnome-open", link);
|
|
||||||
+ command = g_strdup_printf("%s '%s' &", command ? command : "xdg-open", link);
|
|
||||||
system(command);
|
|
||||||
g_free(command);
|
|
||||||
#endif
|
|
46
dia.changes
46
dia.changes
@ -1,3 +1,49 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Jan 24 21:02:39 CET 2010 - vuntz@opensuse.org
|
||||||
|
|
||||||
|
- Update to version 0.97.1:
|
||||||
|
+ The full list of fixed bugs can be browsed at:
|
||||||
|
http://bugzilla.gnome.org/buglist.cgi?product=dia&target_milestone=0.97.1
|
||||||
|
+ Cannot open or save files or paths with localized characters
|
||||||
|
+ CVE-2008-5984: Untrusted search path vulnerability in the
|
||||||
|
Python plugin
|
||||||
|
+ Broken documentation XML file
|
||||||
|
+ Consumes more and more memory over time
|
||||||
|
+ Tools short cuts (e.g. F2, M) don't work after exiting text
|
||||||
|
edit mode by pressing Esc
|
||||||
|
+ Use xdg-open instead of gnome-open
|
||||||
|
+ Use diagtkrc from the config dir instead of current dir
|
||||||
|
+ Fix build warnings
|
||||||
|
+ Building of cairo plug-in fails with DEBUG_CAIRO defined in
|
||||||
|
diacairo.h
|
||||||
|
+ Cairo PNG export doesn't paint the background correctly
|
||||||
|
+ Wrongly translated string exit dialog
|
||||||
|
+ Selection Inverse, Remove, Union... (all broken)
|
||||||
|
+ Integrated UI Crash - with zero zoom
|
||||||
|
+ Crash with help menu entries
|
||||||
|
+ Shape export crashes with missing symbol
|
||||||
|
gtk_signal_disconnect_by_data
|
||||||
|
+ Crash upon canseling(closing) object editing
|
||||||
|
+ Parenting information not exposed to the python API
|
||||||
|
+ Crash when closing database table object after adding an
|
||||||
|
attribute (win32)
|
||||||
|
+ Dia entering an endless loop with cairo print/display
|
||||||
|
rendering/png export
|
||||||
|
+ Export and Printing shows none-existing lines
|
||||||
|
+ Make libemf support properly optional
|
||||||
|
+ Bashisms in configure
|
||||||
|
+ SVG color codes are incorrect
|
||||||
|
+ Call to text_set_cursor will cause Segmentation Fault
|
||||||
|
+ Memory leak
|
||||||
|
+ Shape export icon creation fails without libart renderer
|
||||||
|
+ '&' character disappears during SVG and Dia Shape export
|
||||||
|
+ Exporting a document to png without --size crashes dia
|
||||||
|
+ Outline blanking issue with e.g. Hash symbol
|
||||||
|
+ Updated translations.
|
||||||
|
- Drop dia-xdg-open.patch: fixed upstream.
|
||||||
|
- Drop dia-diagtkrc.patch: fixed upstream.
|
||||||
|
- Drop dia-build-errors.patch: fixed upstream.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon May 25 02:18:10 CEST 2009 - vuntz@novell.com
|
Mon May 25 02:18:10 CEST 2009 - vuntz@novell.com
|
||||||
|
|
||||||
|
347
dia.spec
347
dia.spec
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package dia (Version 0.97)
|
# spec file for package dia (Version 0.97.1)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -36,29 +36,23 @@ BuildRequires: sgml-skel
|
|||||||
BuildRequires: swig
|
BuildRequires: swig
|
||||||
BuildRequires: translation-update-upstream
|
BuildRequires: translation-update-upstream
|
||||||
BuildRequires: update-desktop-files
|
BuildRequires: update-desktop-files
|
||||||
License: GPL v2 or later
|
License: GPLv2+
|
||||||
Group: Productivity/Graphics/Other
|
Group: Productivity/Graphics/Other
|
||||||
Requires: ghostscript-fonts-std
|
Requires: ghostscript-fonts-std
|
||||||
Requires: python-gtk
|
Requires: python-gtk
|
||||||
# for xdg-open
|
# for xdg-open
|
||||||
Requires: xdg-utils
|
Requires: xdg-utils
|
||||||
Summary: A Diagram Creation Program
|
Summary: A Diagram Creation Program
|
||||||
Version: 0.97
|
Version: 0.97.1
|
||||||
Release: 2
|
Release: 1
|
||||||
Source: ftp://ftp.gnome.org/pub/GNOME/stable/sources/dia/%{name}-%{version}.tar.bz2
|
Source: ftp://ftp.gnome.org/pub/GNOME/stable/sources/dia/%{name}-%{version}.tar.bz2
|
||||||
Source1: font-test-japanese.dia
|
Source1: font-test-japanese.dia
|
||||||
Source2: font-test-czech.dia
|
Source2: font-test-czech.dia
|
||||||
Source3: font-test-german-euro.dia
|
Source3: font-test-german-euro.dia
|
||||||
# PATCH-FIX-UPSTREAM bgo581529 dia-xdg-open.patch -- Use xdg-open instead of gnome-open
|
|
||||||
Patch: dia-xdg-open.patch
|
|
||||||
# PATCH-FIX-OPENSUSE dia-0.92.2-no-strict-aliasing.patch
|
# PATCH-FIX-OPENSUSE dia-0.92.2-no-strict-aliasing.patch
|
||||||
Patch3: dia-0.92.2-no-strict-aliasing.patch
|
Patch3: dia-0.92.2-no-strict-aliasing.patch
|
||||||
# PATCH-FIX-UPSTREAM bgo581531 dia-diagtkrc.patch vuntz@novell.com -- Use diagtkrc from config dir
|
|
||||||
Patch5: dia-diagtkrc.patch
|
|
||||||
# PATCH-FIX-UPSTREAM bgo581533 dia-python-acinclude.patch
|
# PATCH-FIX-UPSTREAM bgo581533 dia-python-acinclude.patch
|
||||||
Patch14: dia-python-acinclude.patch
|
Patch14: dia-python-acinclude.patch
|
||||||
# PATCH-FIX-UPSTREAM bgo581542 dia-build-errors.patch vuntz@novell.com -- Fix compilation warnings
|
|
||||||
Patch15: dia-build-errors.patch
|
|
||||||
# PATCH-FIX-OPENSUSE dia-remove-datetime.patch vuntz@novell.com -- Do not put date/time in the compiled binary (needed for build-compare)
|
# PATCH-FIX-OPENSUSE dia-remove-datetime.patch vuntz@novell.com -- Do not put date/time in the compiled binary (needed for build-compare)
|
||||||
Patch17: dia-remove-datetime.patch
|
Patch17: dia-remove-datetime.patch
|
||||||
Url: http://live.gnome.org/Dia
|
Url: http://live.gnome.org/Dia
|
||||||
@ -78,22 +72,12 @@ default to save space), can export diagrams to EPS, PNG, CGM, or SVG
|
|||||||
formats, and can print diagrams (including ones that span multiple
|
formats, and can print diagrams (including ones that span multiple
|
||||||
pages).
|
pages).
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Authors:
|
|
||||||
--------
|
|
||||||
James Henstridge <james@daa.com.au>
|
|
||||||
Alexander Larsson <alla@lysator.liu.se>
|
|
||||||
|
|
||||||
%lang_package
|
%lang_package
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
translation-update-upstream
|
translation-update-upstream
|
||||||
%patch -p1
|
|
||||||
%patch3
|
%patch3
|
||||||
%patch5 -p1
|
|
||||||
%patch14
|
%patch14
|
||||||
%patch15 -p1
|
|
||||||
%patch17 -p1
|
%patch17 -p1
|
||||||
cp $RPM_SOURCE_DIR/font-test*dia .
|
cp $RPM_SOURCE_DIR/font-test*dia .
|
||||||
|
|
||||||
@ -143,324 +127,3 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%files lang -f %{name}.lang
|
%files lang -f %{name}.lang
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Mon May 25 2009 vuntz@novell.com
|
|
||||||
- Keep samples subdirectory for the documentation.
|
|
||||||
* Wed May 06 2009 vuntz@novell.com
|
|
||||||
- Update to version 0.97:
|
|
||||||
+ Many build fixes.
|
|
||||||
+ Updated translations.
|
|
||||||
+ Improved rendering with cairo (PS, PDF, SVG, PNG, EMF) and also
|
|
||||||
default print through Gtk+/cairo support.
|
|
||||||
+ Simple Find & Replace for diagram objects names
|
|
||||||
+ Dedicated text editing mode finally allows to use 'Del' while
|
|
||||||
editing text and/or for whole object removal
|
|
||||||
+ Custom lines plug-in
|
|
||||||
+ Shapes can now have sub-shapes that can be scaled or not when
|
|
||||||
the main shape is scaled. Also, it is now possible to specify
|
|
||||||
that shapes are created with their stated sizes.
|
|
||||||
+ Much decreased start-up time and memory usage by delay loading
|
|
||||||
custom shapes.
|
|
||||||
+ Rotated text by "Standard - Outline" object (based on cairo)
|
|
||||||
+ Overhaul of the DXF plug-in (import and export)
|
|
||||||
+ With the help of libEMF dia now can write EMF on Linux(x86),
|
|
||||||
too.
|
|
||||||
+ New database table relation shapes
|
|
||||||
+ A huge step forward regarding properties of grouped objects
|
|
||||||
bgo#60331
|
|
||||||
+ Antialiased rendering done with cairo if the plug-in is loaded
|
|
||||||
+ Improvements on arrow bounding box calculations
|
|
||||||
+ The "UML - Class" dialog fits again 800x600 screen again
|
|
||||||
+ There is an optional 'integrated' UI for people otherwise
|
|
||||||
loosing their toolbox ;)
|
|
||||||
+ Experimental stand-alone bindings with the help of SWIG/C++
|
|
||||||
- Rename dia-0.92.2-callbrowser.patch to dia-xdg-open.patch, and
|
|
||||||
update the patch to use xdg-open.
|
|
||||||
- Respin dia-0.92.2-no-strict-aliasing.patch.
|
|
||||||
- Replace dia-create-user-files.patch with dia-diagtkrc.patch. This
|
|
||||||
last one is simpler and doesn't do things we don't want it to do.
|
|
||||||
- Drop dia-group-props-size.patch: doesn't seem to be needed
|
|
||||||
anymore.
|
|
||||||
- Drop dia-64bit-clean.patch: fixed upstream.
|
|
||||||
- Drop dia-help.patch: the use of --enable-gnome is enough for
|
|
||||||
this.
|
|
||||||
- Drop dia-0.96-pre3-docs.patch: fixed upstream.
|
|
||||||
- Add dia-build-errors.patch to fix compilation warnings.
|
|
||||||
- Remove unneeded BuildRequires: docbook-toys, libgnomeprint-devel
|
|
||||||
- Add BuildRequires: libEMF-devel (only for ix86), swig.
|
|
||||||
- Remove workaround for bnc#186174: I don't see how it could still
|
|
||||||
be needed.
|
|
||||||
- Remove --with-gnomeprint from configure: this doesn't exist
|
|
||||||
anymore.
|
|
||||||
- Pass --with-swig to configure.
|
|
||||||
- Pass --disable-static to configure and remove .la files.
|
|
||||||
- Do not add the GNOME category to the desktop file: it's already
|
|
||||||
there.
|
|
||||||
- Add a workaround for bgo#581537: rename the en help to C.
|
|
||||||
- Reorganize file list a bit.
|
|
||||||
* Fri May 01 2009 vuntz@novell.com
|
|
||||||
- Remove AutoReqProv: it's default now.
|
|
||||||
- Remove checks for old versions of openSUSE.
|
|
||||||
* Fri Apr 03 2009 vuntz@novell.com
|
|
||||||
- Remove python-numeric Requires: there's no reference to it
|
|
||||||
anywhere in the code, so it wasn't needed.
|
|
||||||
* Sat Mar 28 2009 vuntz@novell.com
|
|
||||||
- Add dia-remove-datetime.patch to be more build-compare friendly.
|
|
||||||
* Mon Feb 16 2009 sbrabec@suse.cz
|
|
||||||
- Added support for translation-update-upstream (FATE#301344).
|
|
||||||
* Sat Jan 31 2009 vuntz@novell.com
|
|
||||||
- Use sr@latin instead of sr@Latn.
|
|
||||||
* Thu Mar 06 2008 maw@suse.de
|
|
||||||
- Fix the build when against newer versions of intltool.
|
|
||||||
* Fri Feb 29 2008 rodrigo@suse.de
|
|
||||||
- Upstream, tag and rename (where appropriate) patches
|
|
||||||
* Thu Nov 01 2007 btimothy@suse.de
|
|
||||||
- Force xmldocs.make and doc/Makefile.am to use GNOME
|
|
||||||
configuration for help files (BNC #157798).
|
|
||||||
- Fix en language help file XML parsing (BGO #404535).
|
|
||||||
* Thu Aug 16 2007 jpr@suse.de
|
|
||||||
- Update to 0.96.1
|
|
||||||
* Empty initial lines in shapes crashes Dia (BGO #421250).
|
|
||||||
* several Python fixes, including a Doxygen import filter.
|
|
||||||
* Text-line rendering in SVG export.
|
|
||||||
* Keyboard shortcuts for tools now use shift-alt.
|
|
||||||
* Improvement in autogaps for some objects.
|
|
||||||
* .desktop file now has current version.
|
|
||||||
* Change in zoom levels in menus.
|
|
||||||
* Check that windows are within bounds before opening.
|
|
||||||
* Various compilation-time improvements.
|
|
||||||
* UML class improvements on comment and wrapped underlined names.
|
|
||||||
* Text rendering is now based on the TextLine objects
|
|
||||||
* Visio VXD files can now be imported and exported
|
|
||||||
* Renderer API change: Added function draw_text_line.
|
|
||||||
* Object API change: can_parent replaced by flags field.
|
|
||||||
* Dia menus now based on GtkAction framework.
|
|
||||||
* A number of new keyboard shortcuts.
|
|
||||||
* Layer visibility is now undoable.
|
|
||||||
* New sheets for Business Process Modelling
|
|
||||||
* The initial diagram will now be filled with opened diagram if
|
|
||||||
unchanged, like Gnumeric.
|
|
||||||
* Pasted objects now no longer land on top of each other.
|
|
||||||
* Fix of bug BGO #339562 (page margins restriction), BGO #338336
|
|
||||||
("query" in umloperation_offsets), and BGO #334771 (ungroup
|
|
||||||
crashes)
|
|
||||||
- Improved SVG export (#283773)
|
|
||||||
- Remove upstreamed patches
|
|
||||||
* Thu Aug 09 2007 maw@suse.de
|
|
||||||
- Fix the -lang subpackage.
|
|
||||||
* Tue Aug 07 2007 mauro@suse.de
|
|
||||||
- Split out a -lang subpackage
|
|
||||||
* Fri Jul 27 2007 maw@suse.de
|
|
||||||
- Add %%fdupes stuff
|
|
||||||
* Mon Jan 22 2007 sbrabec@suse.cz
|
|
||||||
- Prefix changed to /usr.
|
|
||||||
- Spec file cleanup.
|
|
||||||
- Enabled GNOME print support.
|
|
||||||
* Tue Nov 14 2006 sbrabec@suse.cz
|
|
||||||
- Re-enabled use of gnome-patch-translation.
|
|
||||||
* Sun Nov 12 2006 stbinner@suse.de
|
|
||||||
- don't duplicate GenericName content within Name in .desktop file
|
|
||||||
* Fri Nov 03 2006 sbrabec@suse.cz
|
|
||||||
- Fixed python 2.5 related crash (#217495, backport Andreas Hanke).
|
|
||||||
* Fri Oct 13 2006 danw@suse.de
|
|
||||||
- Remove dead patches
|
|
||||||
* Sat Sep 30 2006 aj@suse.de
|
|
||||||
- Cleanup BuildRequires.
|
|
||||||
- Build C++ with RPM_OPT_FLAGS.
|
|
||||||
* Fri Sep 29 2006 jhargadon@suse.de
|
|
||||||
- update to version 0.95
|
|
||||||
- Update of Gane/Sarson sheets
|
|
||||||
- Fix of configure check for xgettext
|
|
||||||
- Fix of font placement in xfig import
|
|
||||||
- Three security holes in the XFig importer fixed after review
|
|
||||||
- Made children of objects not be magnetic to their parents.
|
|
||||||
- new or improved plugins written in Python
|
|
||||||
- many bug fixes
|
|
||||||
* Wed Aug 16 2006 cthiel@suse.de
|
|
||||||
- buildrequire python-gtk-devel instead of python-gtk
|
|
||||||
* Fri Aug 11 2006 cthiel@suse.de
|
|
||||||
- remove dia-0.94-pygtk-hack.patch, since python-gtk has been fixed in the
|
|
||||||
meanwhile
|
|
||||||
* Sun Aug 06 2006 cthiel@suse.de
|
|
||||||
- fixed build by adding dia-0.94-pygtk-hack.patch to hack around an
|
|
||||||
unfavorable configure check
|
|
||||||
* Mon Jun 19 2006 sbrabec@suse.cz
|
|
||||||
- Worked around failing msgmerge (#186174).
|
|
||||||
* Tue May 23 2006 sbrabec@suse.cz
|
|
||||||
- Fixed more format string vulnerabilities (CVE-2006-2453,
|
|
||||||
[#173867]).
|
|
||||||
* Wed May 17 2006 sbrabec@suse.cz
|
|
||||||
- Fixed message format string vulnerability (CVE-2006-2480,
|
|
||||||
[#173867]).
|
|
||||||
* Thu Mar 30 2006 sbrabec@suse.cz
|
|
||||||
- Fixed XFig import buffer overflows (#162074).
|
|
||||||
http://mail.gnome.org/archives/dia-list/2006-March/msg00149.html
|
|
||||||
* Fri Feb 24 2006 sbrabec@suse.cz
|
|
||||||
- Improved Categories.
|
|
||||||
* Wed Feb 15 2006 stbinner@suse.de
|
|
||||||
- fix %%suse_update_desktop and add .desktop file GenericName entry
|
|
||||||
* Wed Feb 01 2006 sbrabec@suse.cz
|
|
||||||
- Use translation compendium gnome-patch-translation.
|
|
||||||
* Wed Jan 25 2006 mls@suse.de
|
|
||||||
- converted neededforbuild to BuildRequires
|
|
||||||
* Wed Jan 11 2006 sbrabec@suse.cz
|
|
||||||
- Removed libpixman from neededforbuild.
|
|
||||||
* Tue Dec 20 2005 ro@suse.de
|
|
||||||
- add /opt/gnome/share/gnome/help/dia/C to filelist
|
|
||||||
* Tue Oct 04 2005 sbrabec@suse.cz
|
|
||||||
- Fixed SVG import arbitary python code execution
|
|
||||||
(#120091, CAN-2005-2966).
|
|
||||||
* Thu Aug 18 2005 sreeves@suse.de
|
|
||||||
- Patch to fix bugzilla.novell.com defect#6341 - "popup of group
|
|
||||||
properties is too small"
|
|
||||||
* Fri Jun 10 2005 sbrabec@suse.cz
|
|
||||||
- Updated cairo patch from Hans Breuer.
|
|
||||||
http://bugzilla.gnome.org/show_bug.cgi?id=307144
|
|
||||||
* Fri Jun 03 2005 ro@suse.de
|
|
||||||
- fix build with new cairo using cairo-api-update script
|
|
||||||
* Wed May 11 2005 uli@suse.de
|
|
||||||
- fixed to build (glitz* missing in neededforbuild)
|
|
||||||
* Fri Apr 08 2005 sbrabec@suse.cz
|
|
||||||
- Fixed GCC 4 related problems.
|
|
||||||
* Mon Feb 21 2005 sbrabec@suse.cz
|
|
||||||
- Updated to version 0.94.
|
|
||||||
* Wed Oct 27 2004 mmj@suse.de
|
|
||||||
- locale rename no to nb
|
|
||||||
* Mon Aug 23 2004 ro@suse.de
|
|
||||||
- adapt filelist (help is installed below pkgdatadir)
|
|
||||||
* Fri Aug 20 2004 shprasad@suse.de
|
|
||||||
- Fixes bug #60814
|
|
||||||
Remove the default gnome-menu style. It will display
|
|
||||||
'Help -> Manual' and clicking on it will bring the help
|
|
||||||
window.
|
|
||||||
* Thu Jul 22 2004 kimmidi@suse.de
|
|
||||||
- Fixes bugs #60003 and #61815 on ximian bugzilla.
|
|
||||||
* Fri Jul 16 2004 kimmidi@suse.de
|
|
||||||
- Correct the -p option for patch6 and patch7 in dia.spec
|
|
||||||
* Thu Jul 15 2004 kimmidi@suse.de
|
|
||||||
- Fixes bugs #60814 and #60816 on ximian bugzilla.
|
|
||||||
* Mon Jun 28 2004 kimmidi@suse.de
|
|
||||||
- Fixes bugs #59101, #59230, #59097 and #59548 on ximian bugzilla.
|
|
||||||
* Mon May 31 2004 sbrabec@suse.cz
|
|
||||||
- Fixed crash on IA64 (#41339).
|
|
||||||
http://bugzilla.gnome.org/show_bug.cgi?id=143448
|
|
||||||
* Fri May 14 2004 ro@suse.de
|
|
||||||
- use -fno-strict-aliasing
|
|
||||||
* Mon Feb 23 2004 adrian@suse.de
|
|
||||||
- fix multiple menu entries
|
|
||||||
* Thu Jan 08 2004 ro@suse.de
|
|
||||||
- fix build with current freetype
|
|
||||||
- fix build with lib64
|
|
||||||
* Sun Nov 09 2003 mmj@suse.de
|
|
||||||
- Update to dia-0.92.2
|
|
||||||
* Mon Oct 27 2003 sbrabec@suse.cz
|
|
||||||
- Updated to version 0.92.
|
|
||||||
- Enabled python, xslt and GNOME support.
|
|
||||||
* Thu Oct 16 2003 mmj@suse.de
|
|
||||||
- Don't build as root
|
|
||||||
* Wed Sep 10 2003 mmj@suse.de
|
|
||||||
- Bug [#30080] brought to my attention we don't package the docu-
|
|
||||||
mentation.
|
|
||||||
- Use call-browser instead of netscape [#30080]
|
|
||||||
* Mon Sep 01 2003 mmj@suse.de
|
|
||||||
- Disable buggy xslt plugin [#29690]
|
|
||||||
* Sat Aug 16 2003 adrian@suse.de
|
|
||||||
- add Categories
|
|
||||||
* Thu Jul 24 2003 hhetter@suse.de
|
|
||||||
- %%_lib fixes
|
|
||||||
* Tue Jul 22 2003 hhetter@suse.de
|
|
||||||
- prefix to /opt/gnome
|
|
||||||
- remove former prefix clash fixes
|
|
||||||
- use gnome-filesystem
|
|
||||||
* Wed Jun 18 2003 sbrabec@suse.cz
|
|
||||||
- Desktop file prefix clash fix.
|
|
||||||
* Wed Mar 26 2003 mmj@suse.de
|
|
||||||
- Update to 0.91, which switches to GNOME2
|
|
||||||
* Fri Mar 07 2003 mmj@suse.de
|
|
||||||
- Add patch to avoid strlen(0); [#24620]
|
|
||||||
* Wed Jan 08 2003 ro@suse.de
|
|
||||||
- fixed configure
|
|
||||||
* Wed Nov 06 2002 uli@suse.de
|
|
||||||
- fixed segfault on x86-64 and other 64 bit systems
|
|
||||||
* Thu Oct 24 2002 hhetter@suse.de
|
|
||||||
- applied patch from CVS (no longer translate font
|
|
||||||
strings) (Bug Id #20676)
|
|
||||||
* Fri Sep 27 2002 ro@suse.de
|
|
||||||
- Added alsa alsa-devel to neededforbuild (esound)
|
|
||||||
* Thu Aug 08 2002 mfabian@suse.de
|
|
||||||
- update to 0.90
|
|
||||||
- add configure option --enable-freetype
|
|
||||||
using this option, fonts will be embedded in the PostScript
|
|
||||||
ouput and all scalable fonts installed can be used.
|
|
||||||
This works nicely for most European languages.
|
|
||||||
Unfortunately it doesn't work for CJK. Japanese can be displayed
|
|
||||||
on screen but printing doesn't work (but Japanese printing
|
|
||||||
stopped working without "--enable-freetype" as well).
|
|
||||||
* Tue Jul 02 2002 meissner@suse.de
|
|
||||||
- auto* rerun, some automake related fixes.
|
|
||||||
* Thu Mar 21 2002 mfabian@suse.de
|
|
||||||
- fix for bugzilla #15026 (dia crashes for LANG=de_DE@euro)
|
|
||||||
use fallback fonts which certainly work with gdk_fontset_load
|
|
||||||
if some fonts cannot be found to avoid crashing.
|
|
||||||
(I made iso8859-15 fonts usable with 'dia' available in the
|
|
||||||
ghostscript-fonts-std package, i.e. 'dia' will not crash anymore
|
|
||||||
for de_DE@euro even without this fallback font fix. Nevertheless
|
|
||||||
it is a safer to have valid fallback fonts as well).
|
|
||||||
- include test file for de_DE@euro font-test-german-euro.dia
|
|
||||||
* Sat Mar 02 2002 mfabian@suse.de
|
|
||||||
- fix for bugzilla #13267 and #14015
|
|
||||||
(International fonts are broken (can't write in czech)):
|
|
||||||
- use the URW Type1 fonts as the preferred fonts for display on X11
|
|
||||||
as these are very similar to the fonts used for printing
|
|
||||||
(identical when our Ghostscript is used). Leaving in the bitmap
|
|
||||||
fonts as fallbacks doesn't hurt.
|
|
||||||
- add Requires: ghostscript-fonts-std
|
|
||||||
- use gdk_fontset_load instead of gdk_font_load always *exept*
|
|
||||||
for the "fontspecific" fonts (i.e. "Symbol" and "Dingbats").
|
|
||||||
- Add support for the Japanese fonts
|
|
||||||
Ryumin-Light-EUC-H and GothicBBB-Medium-EUC-H
|
|
||||||
- don't reencode the "Dingbats" font and the Japanese fonts either
|
|
||||||
when generating .eps
|
|
||||||
* Thu Feb 21 2002 hhetter@suse.de
|
|
||||||
- dia-fonts.dif: Dia maintains a static font list with
|
|
||||||
nearly only Bitmap-Fonts. It does internal AA via libart
|
|
||||||
and requests the fonts in sizes that our X-Server doesn't
|
|
||||||
provide because the :unscaled flag is set on bitmap fonts.
|
|
||||||
The patch reorganizes Dia's font list to actually scaleable
|
|
||||||
ones and fonts where scaling makes sense.
|
|
||||||
* Fri Feb 01 2002 ro@suse.de
|
|
||||||
- changed neededforbuild <libpng> to <libpng-devel-packages>
|
|
||||||
* Thu Jun 14 2001 egger@suse.de
|
|
||||||
- Updated to version 0.88.1.
|
|
||||||
- General specfile cleanup.
|
|
||||||
* Tue May 08 2001 mfabian@suse.de
|
|
||||||
- bzip2 sources
|
|
||||||
* Wed Mar 21 2001 ro@suse.de
|
|
||||||
- added esound-devel
|
|
||||||
* Sun Feb 25 2001 egger@suse.de
|
|
||||||
- Remove unnecessary dependencies from #neededforbuild,
|
|
||||||
especially imlib-config.
|
|
||||||
* Wed Jan 31 2001 ro@suse.de
|
|
||||||
- changed neededforbuild <imlibcfe> to <imlib-config>
|
|
||||||
* Wed Nov 01 2000 egger@suse.de
|
|
||||||
- Updated specfile to new long packagenames.
|
|
||||||
- Reworked specfile.
|
|
||||||
- Probably needs some more work; I'm taking care of that.
|
|
||||||
* Tue Aug 08 2000 grimmer@suse.de
|
|
||||||
- update to 0.86
|
|
||||||
- moved man page to %%{_mandir}/man1
|
|
||||||
- added some more docu (doc/*)
|
|
||||||
* Wed May 24 2000 egger@suse.de
|
|
||||||
- update to 0.85
|
|
||||||
* Tue Feb 29 2000 grimmer@suse.de
|
|
||||||
- update to 0.84
|
|
||||||
- use BUILD_ROOT and strip binary during installation
|
|
||||||
* Wed Jan 26 2000 grimmer@suse.de
|
|
||||||
- update to 0.83
|
|
||||||
- use version macro in spec file
|
|
||||||
* Tue Jan 04 2000 grimmer@suse.de
|
|
||||||
- update to 0.82
|
|
||||||
- reworked package descriptions
|
|
||||||
- added NLS support
|
|
||||||
- added missing files to file list
|
|
||||||
* Thu Nov 11 1999 ray@suse.de
|
|
||||||
- new package dia version 0.81
|
|
||||||
|
Loading…
Reference in New Issue
Block a user