summaryrefslogtreecommitdiff
path: root/x11/gnome-mag
diff options
context:
space:
mode:
authorjmmv <jmmv@pkgsrc.org>2006-01-20 13:46:46 +0000
committerjmmv <jmmv@pkgsrc.org>2006-01-20 13:46:46 +0000
commit1c7b1830f992b207b8b56da8b41a36d47075e018 (patch)
treea03c313babbb474fd075584ec37ca011645b439d /x11/gnome-mag
parent6abf92a1f4f5963f3d69b040732fb9d748735cd5 (diff)
downloadpkgsrc-1c7b1830f992b207b8b56da8b41a36d47075e018.tar.gz
Update to 0.12.2:
* Fix for serious update bug which made high magnification factors work poorly. * Fix for #167705, which improves our tracking of cursor changes.
Diffstat (limited to 'x11/gnome-mag')
-rw-r--r--x11/gnome-mag/Makefile4
-rw-r--r--x11/gnome-mag/PLIST3
-rw-r--r--x11/gnome-mag/distinfo9
-rw-r--r--x11/gnome-mag/patches/patch-ab16
4 files changed, 8 insertions, 24 deletions
diff --git a/x11/gnome-mag/Makefile b/x11/gnome-mag/Makefile
index 3c23b50bb0a..b6c89ed793f 100644
--- a/x11/gnome-mag/Makefile
+++ b/x11/gnome-mag/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.26 2005/08/21 11:33:05 jmmv Exp $
+# $NetBSD: Makefile,v 1.27 2006/01/20 13:46:46 jmmv Exp $
#
-DISTNAME= gnome-mag-0.12.1
+DISTNAME= gnome-mag-0.12.2
CATEGORIES= x11 gnome
MASTER_SITES= ${MASTER_SITE_GNOME:=sources/gnome-mag/0.12/}
EXTRACT_SUFX= .tar.bz2
diff --git a/x11/gnome-mag/PLIST b/x11/gnome-mag/PLIST
index 3e44ae54ad9..0cc5365b827 100644
--- a/x11/gnome-mag/PLIST
+++ b/x11/gnome-mag/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.11 2005/08/21 11:33:05 jmmv Exp $
+@comment $NetBSD: PLIST,v 1.12 2006/01/20 13:46:46 jmmv Exp $
bin/magnifier
include/gnome-mag-1.0/magnifier/GNOME_Magnifier.h
lib/bonobo/servers/GNOME_Magnifier.server
@@ -48,6 +48,7 @@ ${PKGLOCALEDIR}/locale/fa/LC_MESSAGES/gnome-mag.mo
${PKGLOCALEDIR}/locale/fi/LC_MESSAGES/gnome-mag.mo
${PKGLOCALEDIR}/locale/fr/LC_MESSAGES/gnome-mag.mo
${PKGLOCALEDIR}/locale/ga/LC_MESSAGES/gnome-mag.mo
+${PKGLOCALEDIR}/locale/gl/LC_MESSAGES/gnome-mag.mo
${PKGLOCALEDIR}/locale/gu/LC_MESSAGES/gnome-mag.mo
${PKGLOCALEDIR}/locale/he/LC_MESSAGES/gnome-mag.mo
${PKGLOCALEDIR}/locale/hi/LC_MESSAGES/gnome-mag.mo
diff --git a/x11/gnome-mag/distinfo b/x11/gnome-mag/distinfo
index 6d79cf1b2fd..9540abc5781 100644
--- a/x11/gnome-mag/distinfo
+++ b/x11/gnome-mag/distinfo
@@ -1,7 +1,6 @@
-$NetBSD: distinfo,v 1.14 2005/08/21 11:33:05 jmmv Exp $
+$NetBSD: distinfo,v 1.15 2006/01/20 13:46:46 jmmv Exp $
-SHA1 (gnome-mag-0.12.1.tar.bz2) = 6026d6114fc9dbe0a1ca14567064aaadf80146ad
-RMD160 (gnome-mag-0.12.1.tar.bz2) = 2e45b4c97bbd6755da9246d007fcc46499d3b36d
-Size (gnome-mag-0.12.1.tar.bz2) = 332086 bytes
+SHA1 (gnome-mag-0.12.2.tar.bz2) = 53f0963df8523954a54304edb35b2c293275cd44
+RMD160 (gnome-mag-0.12.2.tar.bz2) = 0a055de640905e0c86a80f4c86ea0a66fc70fd46
+Size (gnome-mag-0.12.2.tar.bz2) = 333911 bytes
SHA1 (patch-aa) = 20ad89bfabb3f0804a5d18ad0d2004d27202e277
-SHA1 (patch-ab) = a228bbc32eadbed51a84961874c56ae2c23ffd86
diff --git a/x11/gnome-mag/patches/patch-ab b/x11/gnome-mag/patches/patch-ab
deleted file mode 100644
index 18e0de80e5e..00000000000
--- a/x11/gnome-mag/patches/patch-ab
+++ /dev/null
@@ -1,16 +0,0 @@
-$NetBSD: patch-ab,v 1.1 2005/04/12 00:52:49 rillig Exp $
-
-Needed for gcc-2.95.
-
---- magnifier/magnifier.c.orig Fri Feb 4 19:15:59 2005
-+++ magnifier/magnifier.c Mon Apr 11 01:33:34 2005
-@@ -675,8 +675,8 @@ magnifier_get_display_rect_bounds (Magni
- static void magnifier_adjust_source_size (Magnifier *magnifier)
- {
- GNOME_Magnifier_RectBounds rect_bounds;
-- magnifier_get_display_rect_bounds (magnifier, &rect_bounds, FALSE);
- gdouble vfract, hfract;
-+ magnifier_get_display_rect_bounds (magnifier, &rect_bounds, FALSE);
- hfract = (double) (magnifier->target_bounds.x2 - magnifier->target_bounds.x1) / (double) (rect_bounds.x2 - rect_bounds.x1);
- vfract = (double) (magnifier->target_bounds.y2 - magnifier->target_bounds.y1) / (double) (rect_bounds.y2 - rect_bounds.y1);
- if (vfract > hfract) /* vertical splitpane, approximately */