From 5efd8d42eb832e853934328c8f4620762c642059 Mon Sep 17 00:00:00 2001 From: Joe Marcus Clarke Date: Mon, 22 Mar 2004 19:08:28 +0000 Subject: Update to 2.1.6 with the official freetype2-2.1.7 fix. --- x11-fonts/libXft/Makefile | 3 +- x11-fonts/libXft/distinfo | 4 +-- x11-fonts/libXft/files/patch-xftfreetype.c | 57 ------------------------------ 3 files changed, 3 insertions(+), 61 deletions(-) delete mode 100644 x11-fonts/libXft/files/patch-xftfreetype.c (limited to 'x11-fonts/libXft') diff --git a/x11-fonts/libXft/Makefile b/x11-fonts/libXft/Makefile index 26dc17fb1400..fc6f7d7f079c 100644 --- a/x11-fonts/libXft/Makefile +++ b/x11-fonts/libXft/Makefile @@ -6,8 +6,7 @@ # PORTNAME= libXft -PORTVERSION= 2.1.5 -PORTREVISION= 1 +PORTVERSION= 2.1.6 CATEGORIES= x11-fonts MASTER_SITES= http://pdx.freedesktop.org/~xlibs/release/ diff --git a/x11-fonts/libXft/distinfo b/x11-fonts/libXft/distinfo index f0b9e8d55b72..304108d7020b 100644 --- a/x11-fonts/libXft/distinfo +++ b/x11-fonts/libXft/distinfo @@ -1,2 +1,2 @@ -MD5 (libXft-2.1.5.tar.gz) = 47ecb0cba11ce7e92545a358ff3dbfc2 -SIZE (libXft-2.1.5.tar.gz) = 334536 +MD5 (libXft-2.1.6.tar.gz) = 1ba6d9b1aec9a237b508663c46d8a979 +SIZE (libXft-2.1.6.tar.gz) = 334803 diff --git a/x11-fonts/libXft/files/patch-xftfreetype.c b/x11-fonts/libXft/files/patch-xftfreetype.c deleted file mode 100644 index a3e878fd01b3..000000000000 --- a/x11-fonts/libXft/files/patch-xftfreetype.c +++ /dev/null @@ -1,57 +0,0 @@ ---- xftfreetype.c.orig Fri Mar 19 04:11:09 2004 -+++ xftfreetype.c Fri Mar 19 04:11:30 2004 -@@ -192,53 +192,9 @@ - if (XftDebug() & XFT_DBG_GLYPH) - printf ("Set face size to %dx%d (%dx%d)\n", - (int) (xsize >> 6), (int) (ysize >> 6), (int) xsize, (int) ysize); -- /* -- * Bitmap only faces must match exactly, so find the closest -- * one (height dominant search) -- */ -- if (!(face->face_flags & FT_FACE_FLAG_SCALABLE)) -- { -- FT_Short width = xsize >> 6; -- FT_Short height = ysize >> 6; -- int i, best = -1; -- --#define xft_abs(a) ((a) < 0 ? -(a) : (a)) --#define dist(a,b) (xft_abs((a)-(b))) -- --#if !HAVE_FT_BITMAP_SIZE_Y_PPEM --#define y_ppem height --#define x_ppem width --#endif -- for (i = 0; i < face->num_fixed_sizes; i++) -- { -- if (best == -1 || -- dist (height, face->available_sizes[i].y_ppem >> 6) < -- dist (height, face->available_sizes[best].y_ppem >> 6) || -- (dist (height, face->available_sizes[i].y_ppem >> 6) == -- dist (height, face->available_sizes[best].y_ppem >> 6) && -- dist (width, face->available_sizes[i].x_ppem >> 6) < -- dist (width, face->available_sizes[best].x_ppem >> 6))) -- { -- best = i; -- } -- } -- if (FT_Set_Char_Size (face, face->available_sizes[best].x_ppem, -- face->available_sizes[best].y_ppem, 0, 0) != 0) -- { -- return False; -- } --#if !HAVE_FT_BITMAP_SIZE_Y_PPEM --#undef y_ppem --#undef x_ppem --#endif -- } -- else -- { - if (FT_Set_Char_Size (face, xsize, ysize, 0, 0)) -- { - return False; -- } -- } -+ - f->xsize = xsize; - f->ysize = ysize; - } -- cgit v1.2.3