summaryrefslogtreecommitdiffstats
path: root/x11-servers
diff options
context:
space:
mode:
authoranholt <anholt@FreeBSD.org>2003-08-12 18:35:37 +0000
committeranholt <anholt@FreeBSD.org>2003-08-12 18:35:37 +0000
commit204ee09d2c528d6dfbe89b81abd26a97af4e03ff (patch)
treec08e2159dcec3929f80d14966e06fe6b96d39f9d /x11-servers
parent7cf1a03f3722b46ac20f88373d51cbcdc5076ea6 (diff)
downloadFreeBSD-ports-204ee09d2c528d6dfbe89b81abd26a97af4e03ff.zip
FreeBSD-ports-204ee09d2c528d6dfbe89b81abd26a97af4e03ff.tar.gz
[1] Fix xdmcp queries in the X servers (bug 277)
[2] Fix underlining in the freetype backend (bug 330) PR: [1] ports/52387 [2] ports/55134 Submitted by: [1] Joel Ray Holveck <joelh@piqnet.org> [2] Ariff Abdullah <skywizard@MyBSD.org.my>
Diffstat (limited to 'x11-servers')
-rw-r--r--x11-servers/XFree86-4-NestServer/Makefile2
-rw-r--r--x11-servers/XFree86-4-Server/Makefile4
-rw-r--r--x11-servers/XFree86-4-Server/files/patch-ftfuncs.c16
-rw-r--r--x11-servers/XFree86-4-VirtualFramebufferServer/Makefile2
4 files changed, 20 insertions, 4 deletions
diff --git a/x11-servers/XFree86-4-NestServer/Makefile b/x11-servers/XFree86-4-NestServer/Makefile
index 0f091c2..7128611 100644
--- a/x11-servers/XFree86-4-NestServer/Makefile
+++ b/x11-servers/XFree86-4-NestServer/Makefile
@@ -7,7 +7,7 @@
PORTNAME= NestServer
PORTVERSION= 4.3.0
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= x11-servers
MASTER_SITES= ${MASTER_SITE_XFREE:S/$/:x/} \
${MASTER_SITE_LOCAL:S/$/:local/}
diff --git a/x11-servers/XFree86-4-Server/Makefile b/x11-servers/XFree86-4-Server/Makefile
index 63f9b1c..c156a29 100644
--- a/x11-servers/XFree86-4-Server/Makefile
+++ b/x11-servers/XFree86-4-Server/Makefile
@@ -7,7 +7,7 @@
PORTNAME= Server
PORTVERSION= 4.3.0
-PORTREVISION= 8
+PORTREVISION= 9
CATEGORIES= x11-servers
MASTER_SITES= ${MASTER_SITE_XFREE:S/$/:x/} \
${MASTER_SITE_LOCAL:S/$/:local/}
@@ -35,7 +35,7 @@ COMMENT= XFree86-4 X server and related programs
patch-compiler.h patch-os-support_Imakefile patch-bsd_Imakefile \
patch-freebsdPci.c patch-bus_Imakefile patch-xf86Sbus.h patch-loader.c \
patch-Sbus.c patch-elfloader.c patch-xfree86.cf patch-FreeBSD.cf \
- patch-sunffb_Imakefile patch-xf86sym.c patch-xf86Events.c
+ patch-sunffb_Imakefile patch-xf86sym.c patch-xf86Events.c patch-ftfuncs.c
EXTRA_PATCHES+= ${FILESDIR}/${pf}
.endfor
SCRIPTS_ENV= OSVERSION=${OSVERSION} \
diff --git a/x11-servers/XFree86-4-Server/files/patch-ftfuncs.c b/x11-servers/XFree86-4-Server/files/patch-ftfuncs.c
new file mode 100644
index 0000000..91fa247
--- /dev/null
+++ b/x11-servers/XFree86-4-Server/files/patch-ftfuncs.c
@@ -0,0 +1,16 @@
+--- lib/font/FreeType/ftfuncs.c~ 2003-02-13 06:01:45.000000000 +0300
++++ lib/font/FreeType/ftfuncs.c 2003-03-04 20:27:16.000000000 +0300
+@@ -959,11 +959,11 @@
+ int underlinePosition, underlineThickness;
+
+ if(post) {
+- underlinePosition = TRANSFORM_FUNITS_Y(post->underlinePosition);
++ underlinePosition = TRANSFORM_FUNITS_Y(-post->underlinePosition);
+ underlineThickness = TRANSFORM_FUNITS_Y(post->underlineThickness);
+ } else {
+ underlinePosition =
+- TRANSFORM_FUNITS_Y(t1info->underline_position);
++ TRANSFORM_FUNITS_Y(-t1info->underline_position);
+ underlineThickness =
+ TRANSFORM_FUNITS_Y(t1info->underline_thickness);
+ } \ No newline at end of file
diff --git a/x11-servers/XFree86-4-VirtualFramebufferServer/Makefile b/x11-servers/XFree86-4-VirtualFramebufferServer/Makefile
index 0810fe4..d0f8988 100644
--- a/x11-servers/XFree86-4-VirtualFramebufferServer/Makefile
+++ b/x11-servers/XFree86-4-VirtualFramebufferServer/Makefile
@@ -7,7 +7,7 @@
PORTNAME= VirtualFramebufferServer
PORTVERSION= 4.3.0
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= x11-servers
MASTER_SITES= ${MASTER_SITE_XFREE:S/$/:x/} \
${MASTER_SITE_LOCAL:S/$/:local/}
OpenPOWER on IntegriCloud