summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkinori Hattori <hattya@gentoo.org>2010-11-25 12:30:07 +0000
committerAkinori Hattori <hattya@gentoo.org>2010-11-25 12:30:07 +0000
commit58eab4425f836f98897019f6b258ea839ae9d290 (patch)
tree76b00f906abac6f0e5d42c3dc4c420e675b043d4 /app-i18n
parentClean up old revision. (diff)
downloadgentoo-2-58eab4425f836f98897019f6b258ea839ae9d290.tar.gz
gentoo-2-58eab4425f836f98897019f6b258ea839ae9d290.tar.bz2
gentoo-2-58eab4425f836f98897019f6b258ea839ae9d290.zip
remove unused files. fixes bug #342499.
(Portage version: 2.1.8.3/cvs/Linux i686)
Diffstat (limited to 'app-i18n')
-rw-r--r--app-i18n/anthy/ChangeLog7
-rw-r--r--app-i18n/anthy/files/anthy-7500b-asneeded.patch9
-rw-r--r--app-i18n/anthy/files/anthy-7900-asneeded.diff11
-rw-r--r--app-i18n/anthy/files/anthy-mkdic-gcc34.patch22
4 files changed, 6 insertions, 43 deletions
diff --git a/app-i18n/anthy/ChangeLog b/app-i18n/anthy/ChangeLog
index a3a22c3af492..22660c48fcc3 100644
--- a/app-i18n/anthy/ChangeLog
+++ b/app-i18n/anthy/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-i18n/anthy
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-i18n/anthy/ChangeLog,v 1.130 2010/01/23 07:45:28 matsuu Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-i18n/anthy/ChangeLog,v 1.131 2010/11/25 12:30:06 hattya Exp $
+
+ 25 Nov 2010; Akinori Hattori <hattya@gentoo.org>
+ -files/anthy-7500b-asneeded.patch, -files/anthy-mkdic-gcc34.patch,
+ -files/anthy-7900-asneeded.diff:
+ remove unused files. fixes bug #342499.
23 Jan 2010; MATSUU Takuto <matsuu@gentoo.org> -anthy-9100d.ebuild:
Removed old version.
diff --git a/app-i18n/anthy/files/anthy-7500b-asneeded.patch b/app-i18n/anthy/files/anthy-7500b-asneeded.patch
deleted file mode 100644
index 5b53f8f99c28..000000000000
--- a/app-i18n/anthy/files/anthy-7500b-asneeded.patch
+++ /dev/null
@@ -1,9 +0,0 @@
-Index: anthy-7500b/src-splitter/Makefile.am
-===================================================================
---- anthy-7500b.orig/src-splitter/Makefile.am
-+++ anthy-7500b/src-splitter/Makefile.am
-@@ -8,3 +8,4 @@ noinst_LTLIBRARIES = libsplit.la
- libsplit_la_SOURCES = wordlist.c metaword.c depgraph.c\
- splitter.c evalborder.c compose.c\
- wordborder.h hmm.c segclass.c transition.h
-+libsplit_la_LIBADD = ../src-worddic/libanthydic.la
diff --git a/app-i18n/anthy/files/anthy-7900-asneeded.diff b/app-i18n/anthy/files/anthy-7900-asneeded.diff
deleted file mode 100644
index 30bf92fc5597..000000000000
--- a/app-i18n/anthy/files/anthy-7900-asneeded.diff
+++ /dev/null
@@ -1,11 +0,0 @@
---- src-main/Makefile.am.old 2006-05-13 11:29:05.000000000 +0200
-+++ src-main/Makefile.am 2006-09-01 09:52:04.000000000 +0200
-@@ -4,7 +4,7 @@
-
- lib_LTLIBRARIES = libanthy.la
-
--libanthy_la_LIBADD = ../src-splitter/libsplit.la ../src-ordering/libordering.la -lm
-+libanthy_la_LIBADD = ../src-splitter/libsplit.la ../src-ordering/libordering.la ../src-diclib/libdiclib.la ../src-worddic/libanthydic.la -lm
- libanthy_la_LDFLAGS = -version-info 1:0:1
-
- libanthy_la_SOURCES = \
diff --git a/app-i18n/anthy/files/anthy-mkdic-gcc34.patch b/app-i18n/anthy/files/anthy-mkdic-gcc34.patch
deleted file mode 100644
index b18c86893a94..000000000000
--- a/app-i18n/anthy/files/anthy-mkdic-gcc34.patch
+++ /dev/null
@@ -1,22 +0,0 @@
---- mkanthydic/mkdic.c.orig 2004-08-29 04:54:48.000000000 +0900
-+++ mkanthydic/mkdic.c 2004-11-27 01:06:54.930846856 +0900
-@@ -455,7 +455,8 @@
- (strcmp(ye->entries[i-1].word, we->word) ||
- strcmp(ye->entries[i-1].wt, we->wt) ||
- ye->entries[i-1].freq != we->freq)) {
-- count += fprintf(yomi_entry_out, "%s", we->wt);
-+ fprintf(yomi_entry_out, "%s", we->wt);
-+ count += strlen(we->wt);
- if (we->freq > 1) {
- count += fprintf(yomi_entry_out, "*%d", we->freq);
- }
-@@ -464,7 +465,8 @@
- /* 単語を出力する場所がこの単語のid */
- we->offset = count + ye->offset;
- /* 単語を出力する */
-- count += fprintf(yomi_entry_out, "%s", we->word);
-+ fprintf(yomi_entry_out, "%s", we->word);
-+ count += strlen(we->word);
- }
-
- fputc(0, yomi_entry_out); \ No newline at end of file