* Apply a patch in vte to fix the cursor being invisible in xfce's

terminal application.

svn path=/nixpkgs/trunk/; revision=23037
This commit is contained in:
Eelco Dolstra 2010-08-08 14:27:43 +00:00
parent 87cbef96ca
commit 4b6b9f8256
2 changed files with 42 additions and 2 deletions

View file

@ -0,0 +1,33 @@
Fix invisible cursor in xfce's terminal.
http://bugzilla.xfce.org/show_bug.cgi?id=6423
http://svn.mandriva.com/cgi-bin/viewvc.cgi/packages/cooker/vte/current/SOURCES/vte-0.25.1-cursor.patch?view=markup&pathrev=565638
diff -p -up vte-0.25.1/src/vte.c.cursor vte-0.25.1/src/vte.c
--- vte-0.25.1/src/vte.c.cursor 2010-05-03 05:28:46.000000000 -0300
+++ vte-0.25.1/src/vte.c 2010-08-03 14:06:29.000000000 -0300
@@ -8752,6 +8752,10 @@ vte_terminal_determine_colors(VteTermina
if (highlight && !cursor && terminal->pvt->highlight_color_set) {
*fore = cell ? cell->attr.fore : VTE_DEF_FG;
*back = VTE_DEF_HL;
+ } else
+ if (reverse ^ ((cell != NULL) && (cell->attr.reverse))) {
+ *fore = cell ? cell->attr.back : VTE_DEF_BG;
+ *back = cell ? cell->attr.fore : VTE_DEF_FG;
} else {
*fore = cell ? cell->attr.fore : VTE_DEF_FG;
*back = cell ? cell->attr.back : VTE_DEF_BG;
@@ -8782,13 +8786,6 @@ vte_terminal_determine_colors(VteTermina
}
}
- if (reverse ^ ((cell != NULL) && (cell->attr.reverse))) {
- int tmp;
- tmp = *fore;
- *fore = *back;
- *back = tmp;
- }
-
if (!cursor && cell && cell->attr.invisible) {
*fore = *back;
}

View file

@ -1,16 +1,23 @@
{ stdenv, fetchurl, intltool, pkgconfig, glib, gtk, ncurses,
pythonSupport ? false, python}:
{ stdenv, fetchurl, intltool, pkgconfig, glib, gtk, ncurses
, pythonSupport ? false, python}:
stdenv.mkDerivation rec {
name = "vte-0.25.1";
src = fetchurl {
url = "http://ftp.gnome.org/pub/gnome/sources/vte/0.25/${name}.tar.bz2";
sha256 = "105f5ifyg09nh5p6fw2w7c0n9wd8vw9cvwlh6zg49ibsar893qi5";
};
patches = [ ./cursor.patch ];
buildInputs = [ intltool pkgconfig glib gtk ncurses ] ++
stdenv.lib.optional pythonSupport python;
configureFlags = ''
${if pythonSupport then "--enable-python" else "--disable-python"}
'';
meta = {
homepage = http://www.gnome.org/;
description = "A library implementing a terminal emulator widget for GTK+";