summaryrefslogtreecommitdiff
path: root/x11
diff options
context:
space:
mode:
authorThierry Thomas <thierry@FreeBSD.org>2004-08-25 20:23:55 +0000
committerThierry Thomas <thierry@FreeBSD.org>2004-08-25 20:23:55 +0000
commit883d95f0669d1ef236351405fd067cd24be31b4b (patch)
tree6084736a9ac191ef491bfdf15d3ca56ca09b9e6a /x11
parentUpdate to 2.4.9. This is just a quick fix release that pretty (diff)
Upgrade to 3.9.
Notes
Notes: svn path=/head/; revision=117275
Diffstat (limited to 'x11')
-rw-r--r--x11/rxvt-unicode/Makefile14
-rw-r--r--x11/rxvt-unicode/distinfo4
-rw-r--r--x11/rxvt-unicode/files/patch-src::command.C12
3 files changed, 11 insertions, 19 deletions
diff --git a/x11/rxvt-unicode/Makefile b/x11/rxvt-unicode/Makefile
index 5a48fe433acb..f2e00d0bff79 100644
--- a/x11/rxvt-unicode/Makefile
+++ b/x11/rxvt-unicode/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME= rxvt-unicode
-PORTVERSION= 3.7
+PORTVERSION= 3.9
CATEGORIES= x11
MASTER_SITES= http://dist.schmorp.de/rxvt-unicode/
MASTER_SITE_SUBDIR= . Attic
@@ -21,7 +21,7 @@ USE_PERL5_BUILD= yes
USE_X_PREFIX= yes
USE_XPM= yes
USE_LIBTOOL_VER= 15
-CONFIGURE_ARGS= --enable-shared --enable-everything
+CONFIGURE_ARGS= --enable-shared --enable-everything --with-term=rxvt
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
INSTALLS_SHLIB= yes
USE_BZIP2= yes
@@ -31,7 +31,7 @@ CONFLICTS= rxvt-devel-2*
MAN1= urxvt.1 urxvtc.1 urxvtd.1
MAN7= urxvt.7
-PORTDOCS1= README.unicode Changes
+PORTDOCS1= Changes
PORTDOCS= README.menu ${PORTDOCS1}
EXAMPLES= example.menu jedmenu.sl menu rxvt.menu rxvt.zh-menu terminal.menu
@@ -109,13 +109,6 @@ CONFIGURE_ARGS+= --disable-smart-resize
CONFIGURE_ARGS+= --enable-smart-resize
.endif
-# add support for 256 colours rather than the base 16 colours
-.if defined(WITHOUT_256_COLORS)
-CONFIGURE_ARGS+= --disable-256-color
-.else
-CONFIGURE_ARGS+= --enable-256-color
-.endif
-
CONFIGURE_ENV+= LIBS="-lutil"
.include <bsd.port.pre.mk>
@@ -164,7 +157,6 @@ pre-everything::
@${ECHO_MSG} "WITHOUT_LINESPACE disable support for line-spacing"
@${ECHO_MSG} "WITHOUT_MOUSEWHEEL disable support for scrolling via mouse wheel"
@${ECHO_MSG} "WITHOUT_SMART_RESIZE disable smart growth/shrink behaviour"
- @${ECHO_MSG} "WITHOUT_256_COLORS disable smart growth/shrink behaviour"
@${ECHO_MSG}
.ifndef(WITH_ENCODING)
@${ECHO_MSG} "==> You can compile in support for additional codeset groups by setting the WITH_ENCODING variable"
diff --git a/x11/rxvt-unicode/distinfo b/x11/rxvt-unicode/distinfo
index ad6d36949c5b..c78e158b0560 100644
--- a/x11/rxvt-unicode/distinfo
+++ b/x11/rxvt-unicode/distinfo
@@ -1,2 +1,2 @@
-MD5 (rxvt-unicode-3.7.tar.bz2) = 96869b0f76def0227b2469aa04386076
-SIZE (rxvt-unicode-3.7.tar.bz2) = 795500
+MD5 (rxvt-unicode-3.9.tar.bz2) = 1388e1b14ee4ba8f6cd0cde06a06cc6d
+SIZE (rxvt-unicode-3.9.tar.bz2) = 810191
diff --git a/x11/rxvt-unicode/files/patch-src::command.C b/x11/rxvt-unicode/files/patch-src::command.C
index 98008058103b..2e8a0e73712c 100644
--- a/x11/rxvt-unicode/files/patch-src::command.C
+++ b/x11/rxvt-unicode/files/patch-src::command.C
@@ -1,5 +1,5 @@
---- src/command.C.orig Mon Aug 16 09:13:25 2004
-+++ src/command.C Tue Aug 17 23:49:02 2004
+--- src/command.C.orig Wed Aug 25 05:45:20 2004
++++ src/command.C Wed Aug 25 19:28:03 2004
@@ -51,6 +51,8 @@
#include "command.h"
@@ -9,7 +9,7 @@
/*----------------------------------------------------------------------*/
-@@ -4250,7 +4252,7 @@
+@@ -4287,7 +4289,7 @@
{
if (v_buflen == 0)
{
@@ -18,12 +18,12 @@
if ((unsigned int)written == len)
return;
-@@ -4268,7 +4270,7 @@
+@@ -4305,7 +4307,7 @@
for (;;)
{
-- int written = write (pty.pty, v_buffer, min (MAX_PTY_WRITE, v_buflen));
-+ int written = write (pty.pty, v_buffer, min ((unsigned int) MAX_PTY_WRITE, v_buflen));
+- int written = write (pty.pty, v_buffer, min (v_buflen, MAX_PTY_WRITE));
++ int written = write (pty.pty, v_buffer, min (v_buflen, (unsigned int) MAX_PTY_WRITE));
if (written > 0)
{