Bad diff (it didn't include the removed files), sorry about that.
so, patch -E


Index: Makefile
===================================================================
RCS file: /cvs/ports/x11/rxvt-unicode/Makefile,v
retrieving revision 1.15
diff -p -u -r1.15 Makefile
--- Makefile    17 Oct 2011 11:45:43 -0000      1.15
+++ Makefile    6 Dec 2011 13:10:00 -0000
@@ -3,12 +3,11 @@
 COMMENT =      clone of rxvt with Unicode and Xft support
 
 DISTNAME =     rxvt-unicode-9.12
-REVISION =     2
+PKGNAME =      rxvt-unicode-9.13b
 CATEGORIES =   x11
 
 EXTRACT_SUFX = .tar.bz2
-MASTER_SITES = http://dist.schmorp.de/rxvt-unicode/ \
-               http://dist.schmorp.de/rxvt-unicode/Attic/
+MASTER_SITES = http://data.plan9.de/
 
 HOMEPAGE =     http://software.schmorp.de/pkg/rxvt-unicode.html
 
Index: distinfo
===================================================================
RCS file: /cvs/ports/x11/rxvt-unicode/distinfo,v
retrieving revision 1.5
diff -p -u -r1.5 distinfo
--- distinfo    5 Jul 2011 15:08:49 -0000       1.5
+++ distinfo    6 Dec 2011 13:10:00 -0000
@@ -1,5 +1,5 @@
-MD5 (rxvt-unicode-9.12.tar.bz2) = lFrzfWYcjEWnysKSFg58cA==
-RMD160 (rxvt-unicode-9.12.tar.bz2) = MvU6V7UHLLyxt2UTfwFh2X/eWZ0=
-SHA1 (rxvt-unicode-9.12.tar.bz2) = TL8FFrgwTfsEG58+WqumYv7kuXk=
-SHA256 (rxvt-unicode-9.12.tar.bz2) = 
HbM0IEv7JksxNOAdnTz0RsWsfUdRSQlDX5FPOQbzfn4=
-SIZE (rxvt-unicode-9.12.tar.bz2) = 886255
+MD5 (rxvt-unicode-9.12.tar.bz2) = xVJy5NlT/PHZ0CAT3kn39Q==
+RMD160 (rxvt-unicode-9.12.tar.bz2) = K10TAl/nEVF0J4N1XgBC4gv2Q5s=
+SHA1 (rxvt-unicode-9.12.tar.bz2) = ab9N8748KQgFWAq2dr16YNaLOZI=
+SHA256 (rxvt-unicode-9.12.tar.bz2) = 
y6PiXhl40nPIN4VeiBfDd6nsO9W4KDNZPFOi4KhxH70=
+SIZE (rxvt-unicode-9.12.tar.bz2) = 894660
Index: patches/patch-libptytty_src_ptytty_h
===================================================================
RCS file: patches/patch-libptytty_src_ptytty_h
diff -N patches/patch-libptytty_src_ptytty_h
--- patches/patch-libptytty_src_ptytty_h        5 Jul 2011 15:08:49 -0000       
1.1
+++ /dev/null   1 Jan 1970 00:00:00 -0000
@@ -1,17 +0,0 @@
-$OpenBSD: patch-libptytty_src_ptytty_h,v 1.1 2011/07/05 15:08:49 dcoppa Exp $
-
-Fix compilation on systems with bsd style utmp and no utmpx, such
-as OpenBSD (upstream cvs revision 1.30 of libptytty)
-
---- libptytty/src/ptytty.h.orig        Tue May 31 08:21:52 2011
-+++ libptytty/src/ptytty.h     Tue Jul  5 13:20:23 2011
-@@ -69,9 +69,7 @@ struct ptytty_unix : ptytty (public)
- #ifdef HAVE_STRUCT_UTMPX
-   struct utmpx utx;
- #endif
--#if (defined(HAVE_STRUCT_UTMP) && defined(HAVE_UTMP_PID)) || 
defined(HAVE_STRUCT_UTMPX)
-   char ut_id[5];
--#endif
- 
-   void logout ();
- #endif
Index: patches/patch-src_main_C
===================================================================
RCS file: patches/patch-src_main_C
diff -N patches/patch-src_main_C
--- patches/patch-src_main_C    5 Jul 2011 15:08:49 -0000       1.5
+++ /dev/null   1 Jan 1970 00:00:00 -0000
@@ -1,17 +0,0 @@
-$OpenBSD: patch-src_main_C,v 1.5 2011/07/05 15:08:49 dcoppa Exp $
-
-Fix a bug causing artifacts at the bottom of the screen when using
-rxvt-unicode without hints
-(From: https://awesome.naquadah.org/wiki/Urxvt_Hints)
-
---- src/main.C.orig    Mon May  2 11:42:28 2011
-+++ src/main.C Mon May 23 16:34:12 2011
-@@ -708,6 +708,8 @@ rxvt_term::window_calc (unsigned int newwidth, unsigne
- 
-   ncol = width  / fwidth;
-   nrow = height / fheight;
-+  width = ncol * fwidth;
-+  height = nrow * fheight;
- }
- 
- /*----------------------------------------------------------------------*/
Index: patches/patch-src_perl_tabbed
===================================================================
RCS file: patches/patch-src_perl_tabbed
diff -N patches/patch-src_perl_tabbed
--- patches/patch-src_perl_tabbed       26 Sep 2011 15:18:37 -0000      1.1
+++ /dev/null   1 Jan 1970 00:00:00 -0000
@@ -1,23 +0,0 @@
-$OpenBSD: patch-src_perl_tabbed,v 1.1 2011/09/26 15:18:37 dcoppa Exp $
-
-Bugfix: pty input was not properly dispatched to the active tabbed
-window when events were sent to the main window.
-(upstream cvs revision 1.26)
-
---- src/perl/tabbed.orig       Mon Feb 21 08:39:52 2011
-+++ src/perl/tabbed    Mon Sep 26 17:13:29 2011
-@@ -170,6 +170,14 @@ sub on_focus_out {
-    ()
- }
- 
-+sub on_tt_write {
-+    my ($self, $octets) = @_;
-+
-+    $self->{cur}->tt_write ($octets);
-+
-+    1
-+}
-+
- sub on_key_press {
-    my ($self, $event) = @_;
- 



Daniel

-- 
LÉVAI Dániel
PGP key ID = 0x83B63A8F
Key fingerprint = DBEC C66B A47A DFA2 792D  650C C69B BE4C 83B6 3A8F

Reply via email to