summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2016-06-24 22:46:13 +0200
committerPacho Ramos <pacho@gentoo.org>2016-06-25 14:19:00 +0200
commit9c05948185d2ba38103173465ba016f76a20c041 (patch)
treec5525f50aef498cd1008c14c9c1205f9d61fcf5c /app-office/dia/files
parentx11-misc/treeline: Migrate from LINGUAS to L10N. (diff)
downloadgentoo-9c05948185d2ba38103173465ba016f76a20c041.tar.gz
gentoo-9c05948185d2ba38103173465ba016f76a20c041.tar.bz2
gentoo-9c05948185d2ba38103173465ba016f76a20c041.zip
app-office/dia: Drop old
Package-Manager: portage-2.3.0_rc1
Diffstat (limited to 'app-office/dia/files')
-rw-r--r--app-office/dia/files/dia-0.97.2-disable-cairo.patch19
-rw-r--r--app-office/dia/files/dia-0.97.2-png-crash.patch33
2 files changed, 0 insertions, 52 deletions
diff --git a/app-office/dia/files/dia-0.97.2-disable-cairo.patch b/app-office/dia/files/dia-0.97.2-disable-cairo.patch
deleted file mode 100644
index da07337825e9..000000000000
--- a/app-office/dia/files/dia-0.97.2-disable-cairo.patch
+++ /dev/null
@@ -1,19 +0,0 @@
---- plug-ins/cairo/Makefile.am.orig 2014-05-06 14:09:36.080876942 -0400
-+++ plug-ins/cairo/Makefile.am 2014-05-06 14:11:21.043041750 -0400
-@@ -1,11 +1,14 @@
--
-+if WITH_CAIRO
- plugin_sources = \
- diacairo.c \
- diacairo.h \
- diacairo-interactive.c \
- diacairo-renderer.c \
- diacairo-print.c \
-- diacairo-print.h
-+ diacairo-print.h
-+else
-+plugin_sources =
-+endif
-
- pkglib_LTLIBRARIES = libcairo_filter.la
-
diff --git a/app-office/dia/files/dia-0.97.2-png-crash.patch b/app-office/dia/files/dia-0.97.2-png-crash.patch
deleted file mode 100644
index 1dfc072c1c5f..000000000000
--- a/app-office/dia/files/dia-0.97.2-png-crash.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-From 8b8ae09fcc16cc0522679099728f779e291d959c Mon Sep 17 00:00:00 2001
-From: Hans Breuer <hans@breuer.org>
-Date: Fri, 18 Apr 2014 13:28:45 +0200
-Subject: Bug 728405 - back-port some bounding box calculation fixes from
- master
-
-... so that the unit test works without complaints.
-
-diff --git a/lib/boundingbox.c b/lib/boundingbox.c
-index fd50da7..46adbfa 100644
---- a/lib/boundingbox.c
-+++ b/lib/boundingbox.c
-@@ -494,7 +494,7 @@ polybezier_bbox(const BezPoint *pts, int numpoints,
- account with the "pointy corners" X (and PS) add when LINEJOIN_MITER mode is
- in force. */
-
-- if ((!start) && (!end)) { /* We have a non-extremity vertex. */
-+ if (!end) { /* only the last segment might not produce overshoot. */
- Point vpx,vxn;
- real co,alpha;
-
-@@ -515,7 +515,7 @@ polybezier_bbox(const BezPoint *pts, int numpoints,
- real overshoot;
- Point vovs,pto;
-
-- if (finite(alpha))
-+ if (alpha > 0.0 && alpha < M_PI)
- overshoot = extra->middle_trans / sin(alpha/2.0);
- else /* prependicular? */
- overshoot = extra->middle_trans;
---
-cgit v0.10.1
-