diff options
author | Leonardo Boshell <leonardop@gentoo.org> | 2005-07-20 21:51:45 +0000 |
---|---|---|
committer | Leonardo Boshell <leonardop@gentoo.org> | 2005-07-20 21:51:45 +0000 |
commit | ecee13c1b46a8daaf53e0cb9d2ccace02be0373d (patch) | |
tree | 2187415ef4bbde9eef066b6457451029eb44b98a /x11-libs/vte/files | |
parent | version bump for security bug #99680 (diff) | |
download | historical-ecee13c1b46a8daaf53e0cb9d2ccace02be0373d.tar.gz historical-ecee13c1b46a8daaf53e0cb9d2ccace02be0373d.tar.bz2 historical-ecee13c1b46a8daaf53e0cb9d2ccace02be0373d.zip |
New revision, including a patch for bug #91617 (no lazy bindings for a setgid binary). Cleaning old ebuilds/patches.
Package-Manager: portage-2.0.51.22-r2
Diffstat (limited to 'x11-libs/vte/files')
-rw-r--r-- | x11-libs/vte/files/digest-vte-0.11.11-r3 | 1 | ||||
-rw-r--r-- | x11-libs/vte/files/digest-vte-0.11.13-r1 | 1 | ||||
-rw-r--r-- | x11-libs/vte/files/digest-vte-0.11.13-r2 (renamed from x11-libs/vte/files/digest-vte-0.11.13) | 0 | ||||
-rw-r--r-- | x11-libs/vte/files/vte-0.11.11-row_fix.patch | 24 | ||||
-rw-r--r-- | x11-libs/vte/files/vte-no_lazy_bindings.patch | 12 |
5 files changed, 12 insertions, 26 deletions
diff --git a/x11-libs/vte/files/digest-vte-0.11.11-r3 b/x11-libs/vte/files/digest-vte-0.11.11-r3 deleted file mode 100644 index d80d9702c408..000000000000 --- a/x11-libs/vte/files/digest-vte-0.11.11-r3 +++ /dev/null @@ -1 +0,0 @@ -MD5 4d7a3674df5b8be7f1adffa981c1fc3d vte-0.11.11.tar.bz2 888405 diff --git a/x11-libs/vte/files/digest-vte-0.11.13-r1 b/x11-libs/vte/files/digest-vte-0.11.13-r1 deleted file mode 100644 index ab46fcf06fb0..000000000000 --- a/x11-libs/vte/files/digest-vte-0.11.13-r1 +++ /dev/null @@ -1 +0,0 @@ -MD5 5eb73c7de433fb6e53ac4378df9d23b5 vte-0.11.13.tar.bz2 952108 diff --git a/x11-libs/vte/files/digest-vte-0.11.13 b/x11-libs/vte/files/digest-vte-0.11.13-r2 index ab46fcf06fb0..ab46fcf06fb0 100644 --- a/x11-libs/vte/files/digest-vte-0.11.13 +++ b/x11-libs/vte/files/digest-vte-0.11.13-r2 diff --git a/x11-libs/vte/files/vte-0.11.11-row_fix.patch b/x11-libs/vte/files/vte-0.11.11-row_fix.patch deleted file mode 100644 index cf89ff195b0b..000000000000 --- a/x11-libs/vte/files/vte-0.11.11-row_fix.patch +++ /dev/null @@ -1,24 +0,0 @@ -? .vte.c.swp -? diff -? diff2 -Index: vte.c -=================================================================== -RCS file: /cvs/gnome/vte/src/vte.c,v -retrieving revision 1.404 -diff -u -3 -p -r1.404 vte.c ---- vte.c 2 May 2004 06:43:01 -0000 1.404 -+++ vte.c 17 Aug 2004 21:08:50 -0000 -@@ -705,11 +705,11 @@ vte_terminal_scroll_region(VteTerminal * - if (delta > 0) { - vte_invalidate_cells(terminal, - 0, terminal->column_count, -- 0, delta); -+ row, delta); - } else { - vte_invalidate_cells(terminal, - 0, terminal->column_count, -- terminal->row_count + delta, -+ row + terminal->row_count + delta, - -delta); - } - repaint = FALSE; diff --git a/x11-libs/vte/files/vte-no_lazy_bindings.patch b/x11-libs/vte/files/vte-no_lazy_bindings.patch new file mode 100644 index 000000000000..a93480c9d04f --- /dev/null +++ b/x11-libs/vte/files/vte-no_lazy_bindings.patch @@ -0,0 +1,12 @@ +--- vte-0.11.12/gnome-pty-helper/Makefile.am.orig 2005-05-05 17:14:21.000000000 -0400 ++++ vte-0.11.12/gnome-pty-helper/Makefile.am 2005-05-05 17:14:42.000000000 -0400 +@@ -1,7 +1,8 @@ + libexec_PROGRAMS = gnome-pty-helper + + AM_CFLAGS = @CFLAGS@ @GLIB_CFLAGS@ +-AM_LDFLAGS = @LDFLAGS@ @GLIB_LIBS@ ++LAZYLDFLAGS = -Wl,-z,now ++AM_LDFLAGS = @LDFLAGS@ @GLIB_LIBS@ $(LAZYLDFLAGS) + + gnome_pty_helper_SOURCES = \ + gnome-pty.h \ |