diff options
author | Roy Marples <uberlord@gentoo.org> | 2006-08-24 13:57:25 +0000 |
---|---|---|
committer | Roy Marples <uberlord@gentoo.org> | 2006-08-24 13:57:25 +0000 |
commit | 983911d179bb16584c8db295ab156d584b81c9d7 (patch) | |
tree | 90dfc0ee17ec95bc5308c55f0373bee8ece655ce /sys-apps/kbd/files | |
parent | Change the docs cleaning rm to use rather than the name of the package. (diff) | |
download | gentoo-2-983911d179bb16584c8db295ab156d584b81c9d7.tar.gz gentoo-2-983911d179bb16584c8db295ab156d584b81c9d7.tar.bz2 gentoo-2-983911d179bb16584c8db295ab156d584b81c9d7.zip |
Fix the Debian patch mangling the unimaps directory.
(Portage version: 2.1.1_pre5-r3)
Diffstat (limited to 'sys-apps/kbd/files')
-rw-r--r-- | sys-apps/kbd/files/digest-kbd-1.12-r8 | 6 | ||||
-rw-r--r-- | sys-apps/kbd/files/kbd-1.12-unimap.patch | 16 |
2 files changed, 22 insertions, 0 deletions
diff --git a/sys-apps/kbd/files/digest-kbd-1.12-r8 b/sys-apps/kbd/files/digest-kbd-1.12-r8 new file mode 100644 index 000000000000..7bbb85a86bcb --- /dev/null +++ b/sys-apps/kbd/files/digest-kbd-1.12-r8 @@ -0,0 +1,6 @@ +MD5 7892c7010512a9bc6697a295c921da25 kbd-1.12.tar.gz 884827 +RMD160 260ed9b79b5a679730fc16f1d3ce9360f4ad63fd kbd-1.12.tar.gz 884827 +SHA256 f3bc6747dba7d1a35cd125ca0bd4649f88704be211cf7e47d36b43c7f44ce803 kbd-1.12.tar.gz 884827 +MD5 c3bc810b784880c9bb5a6fe80d95a696 svorakln.tar.gz 3030 +RMD160 4ee5d1bdab312eb33cbde9195e6d4cdf28eb9a6e svorakln.tar.gz 3030 +SHA256 7c4015dcd1f4310ba1b872c9a9e57c43d45da822330853ae465e628d3bca8ee3 svorakln.tar.gz 3030 diff --git a/sys-apps/kbd/files/kbd-1.12-unimap.patch b/sys-apps/kbd/files/kbd-1.12-unimap.patch new file mode 100644 index 000000000000..c7ea73cca656 --- /dev/null +++ b/sys-apps/kbd/files/kbd-1.12-unimap.patch @@ -0,0 +1,16 @@ +That silly Debian patch changes the default dir to TRANSDIR. +This patch corrects that oversight so both work if we ever +use console-data, also by Debian. + +--- kbd-1.12/src/loadunimap.c.orig 2006-08-24 13:48:11.000000000 +0100 ++++ kbd-1.12/src/loadunimap.c 2006-08-24 13:49:07.000000000 +0100 +@@ -28,7 +28,7 @@ + extern char *progname; + extern int force; + +-static char *unidirpath[] = { "", DATADIR "/" TRANSDIR "/", 0 }; +-static char *unisuffixes[] = { "", ".sfm", ".uni", 0 }; ++static char *unidirpath[] = { "", DATADIR "/" UNIMAPDIR "/", DATADIR "/" TRANSDIR "/", 0 }; ++static char *unisuffixes[] = { "", ".uni", ".sfm", 0 }; + + #ifdef MAIN |