summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@gentoo.org>2006-06-26 10:14:59 +0000
committerDiego Elio Pettenò <flameeyes@gentoo.org>2006-06-26 10:14:59 +0000
commitbc7cb3c1f221f9bd56f08d0ef910223108ce438e (patch)
tree0976f30d4406bc1c612f73332f46c1422ba78fa4 /app-dicts/kasumi
parentAdded support for using external-driver-ebuild usbirboy. Degraded keywords to... (diff)
downloadgentoo-2-bc7cb3c1f221f9bd56f08d0ef910223108ce438e.tar.gz
gentoo-2-bc7cb3c1f221f9bd56f08d0ef910223108ce438e.tar.bz2
gentoo-2-bc7cb3c1f221f9bd56f08d0ef910223108ce438e.zip
Forgot to refresh the fbsd patch before copying and committing, now fixed.
(Portage version: 2.1.1_pre1-r2)
Diffstat (limited to 'app-dicts/kasumi')
-rw-r--r--app-dicts/kasumi/ChangeLog6
-rw-r--r--app-dicts/kasumi/files/kasumi-2.0-fbsd.patch4
2 files changed, 7 insertions, 3 deletions
diff --git a/app-dicts/kasumi/ChangeLog b/app-dicts/kasumi/ChangeLog
index a67b1a85be81..52b1f62726b1 100644
--- a/app-dicts/kasumi/ChangeLog
+++ b/app-dicts/kasumi/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-dicts/kasumi
# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-dicts/kasumi/ChangeLog,v 1.21 2006/06/25 20:49:55 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-dicts/kasumi/ChangeLog,v 1.22 2006/06/26 10:14:59 flameeyes Exp $
+
+ 26 Jun 2006; Diego Pettenò <flameeyes@gentoo.org>
+ files/kasumi-2.0-fbsd.patch:
+ Forgot to refresh the fbsd patch before copying and committing, now fixed.
25 Jun 2006; Diego Pettenò <flameeyes@gentoo.org>
+files/kasumi-2.0-fbsd.patch, +files/kasumi-2.0-format.patch,
diff --git a/app-dicts/kasumi/files/kasumi-2.0-fbsd.patch b/app-dicts/kasumi/files/kasumi-2.0-fbsd.patch
index 762570a93f09..bb458a110eeb 100644
--- a/app-dicts/kasumi/files/kasumi-2.0-fbsd.patch
+++ b/app-dicts/kasumi/files/kasumi-2.0-fbsd.patch
@@ -36,7 +36,7 @@ Index: kasumi-2.0/KasumiWord.cxx
char *eucjp = eucjp_buf;
- iconv(IconvUTF8_To_EUCJP, &utf8, &len, &eucjp_buf, &len_eucjp);
-+ iconv(IconvUTF8_To_EUCJP, const_cast<const char**>(&utf8), &len, &eucjp_buf, &len_eucjp);
++ iconv(IconvUTF8_To_EUCJP, const_cast<ICONV_CONST char**>(&utf8), &len, &eucjp_buf, &len_eucjp);
return string(eucjp);
}
@@ -45,7 +45,7 @@ Index: kasumi-2.0/KasumiWord.cxx
char *utf8 = utf8_buf;
- iconv(IconvEUCJP_To_UTF8, &eucjp, &len, &utf8_buf, &len_utf8);
-+ iconv(IconvEUCJP_To_UTF8, const_cast<const char**>(&eucjp), &len, &utf8_buf, &len_utf8);
++ iconv(IconvEUCJP_To_UTF8, const_cast<ICONV_CONST char**>(&eucjp), &len, &utf8_buf, &len_utf8);
return string(utf8);
}