diff options
author | Leonardo Boshell <leonardop@gentoo.org> | 2004-03-25 04:39:41 +0000 |
---|---|---|
committer | Leonardo Boshell <leonardop@gentoo.org> | 2004-03-25 04:39:41 +0000 |
commit | bfe295ae1f315213827c024b147a77ec724066f8 (patch) | |
tree | 32585556b6af0c5fdf36b4c0edbebb134e6f16ba /app-accessibility/gnopernicus/files | |
parent | swtaylor is taking over courier for me (diff) | |
download | historical-bfe295ae1f315213827c024b147a77ec724066f8.tar.gz historical-bfe295ae1f315213827c024b147a77ec724066f8.tar.bz2 historical-bfe295ae1f315213827c024b147a77ec724066f8.zip |
New release. Implements the brltty USE flag.
Diffstat (limited to 'app-accessibility/gnopernicus/files')
-rw-r--r-- | app-accessibility/gnopernicus/files/digest-gnopernicus-0.8.1 | 1 | ||||
-rw-r--r-- | app-accessibility/gnopernicus/files/gnopernicus-0.8.1-brltty_fix.patch | 16 |
2 files changed, 17 insertions, 0 deletions
diff --git a/app-accessibility/gnopernicus/files/digest-gnopernicus-0.8.1 b/app-accessibility/gnopernicus/files/digest-gnopernicus-0.8.1 new file mode 100644 index 000000000000..cf85a7f5c253 --- /dev/null +++ b/app-accessibility/gnopernicus/files/digest-gnopernicus-0.8.1 @@ -0,0 +1 @@ +MD5 ede9ad4871b4f0ed9991855b74aa7782 gnopernicus-0.8.1.tar.bz2 1456530 diff --git a/app-accessibility/gnopernicus/files/gnopernicus-0.8.1-brltty_fix.patch b/app-accessibility/gnopernicus/files/gnopernicus-0.8.1-brltty_fix.patch new file mode 100644 index 000000000000..e03fcdce5708 --- /dev/null +++ b/app-accessibility/gnopernicus/files/gnopernicus-0.8.1-brltty_fix.patch @@ -0,0 +1,16 @@ +diff -NurB gnopernicus-0.8.1-orig/braille/libbrl/ttybrl.c gnopernicus-0.8.1/braille/libbrl/ttybrl.c +--- gnopernicus-0.8.1-orig/braille/libbrl/ttybrl.c 2004-03-24 22:58:23.000000000 -0500 ++++ gnopernicus-0.8.1/braille/libbrl/ttybrl.c 2004-03-24 22:58:43.000000000 -0500 +@@ -127,7 +127,11 @@ + while (brlapi_readCommand (0, &keypress) == 1) + { + /* TODO: Find a better way to map brltty commands to gnopernicus keys. */ +- switch (keypress & ~VAL_TOGGLE_MASK) ++#ifdef VAL_TOGGLE_MASK ++ switch (keypress & ~VAL_TOGGLE_MASK) ++#else ++ switch (keypress & ~VAL_SWITCHMASK) ++#endif + { + case CMD_LNUP: + sprintf(&dd.key_codes[0], "DK00"); |