summaryrefslogtreecommitdiff
path: root/chinese
diff options
context:
space:
mode:
authorVanilla I. Shu <vanilla@FreeBSD.org>2002-07-20 11:08:11 +0000
committerVanilla I. Shu <vanilla@FreeBSD.org>2002-07-20 11:08:11 +0000
commit5903422ee3d4459662b3558592444bb919be4462 (patch)
tree81c78cc09f7e1e9f1657c989b4c11f40daa922f5 /chinese
parentUse USE_GNOMENG. (diff)
Add a patch for handle cedict.
PR: ports/40738 Submitted by: Kuang-che Wu <kcwu@kcwu.dyndns.org> Approved by: maintainer.
Notes
Notes: svn path=/head/; revision=63266
Diffstat (limited to 'chinese')
-rw-r--r--chinese/dictd-database/Makefile1
-rw-r--r--chinese/dictd-database/files/patch-aa14
-rw-r--r--chinese/dictd-database/files/patch-make-rawdata.pl26
3 files changed, 39 insertions, 2 deletions
diff --git a/chinese/dictd-database/Makefile b/chinese/dictd-database/Makefile
index cd7feba7e923..767fcc844618 100644
--- a/chinese/dictd-database/Makefile
+++ b/chinese/dictd-database/Makefile
@@ -7,6 +7,7 @@
PORTNAME= dictd-database
PORTVERSION= 1.2.1
+PORTREVISION= 1
CATEGORIES= chinese textproc
MASTER_SITES= ftp://freebsd.sinica.edu.tw/pub/statue/dictd-database/
DISTNAME= dict-zh-${PORTVERSION}
diff --git a/chinese/dictd-database/files/patch-aa b/chinese/dictd-database/files/patch-aa
index c2de74ef7c25..89edb7dcaffe 100644
--- a/chinese/dictd-database/files/patch-aa
+++ b/chinese/dictd-database/files/patch-aa
@@ -1,5 +1,5 @@
---- Makefile.in.orig Sun Apr 2 00:43:40 2000
-+++ Makefile.in Sun Oct 14 10:52:13 2001
+--- Makefile.in.orig Wed Nov 28 02:53:55 2001
++++ Makefile.in Fri Jul 19 02:15:58 2002
@@ -75,7 +75,7 @@
(cd $$subdir && $(MAKE)) || exit 1; \
done
@@ -8,3 +8,13 @@
+all:: $(EXES) db
db :: rawdata $(DATABASES)
+
+@@ -110,6 +110,8 @@
+ ./dictfmt -p -u http://www.mandarintools.com/cedict.html \
+ -s "Chinese to English dictionary" \
+ cedict < data/cedict.txt ; \
++ env LANG=C sort cedict.index > cedict.index.tmp ; \
++ mv cedict.index.tmp cedict.index; \
+ if [ "$(DICTZIP)" != "cat" ]; then \
+ dictzip cedict.dict; \
+ fi
diff --git a/chinese/dictd-database/files/patch-make-rawdata.pl b/chinese/dictd-database/files/patch-make-rawdata.pl
new file mode 100644
index 000000000000..6678cd00aea0
--- /dev/null
+++ b/chinese/dictd-database/files/patch-make-rawdata.pl
@@ -0,0 +1,26 @@
+--- make-rawdata.pl.orig Fri Jul 19 02:04:15 2002
++++ make-rawdata.pl Fri Jul 19 02:04:50 2002
+@@ -111,7 +111,7 @@
+
+ sub cedict {
+
+- open ( FILE, "data/cedict.utf8") ;
++ open ( FILE, "data/cedict.b5") ;
+ @RawData = <FILE> ;
+ close (FILE) ;
+
+@@ -121,12 +121,12 @@
+ print TXT <<__END ;
+ %h 00-database-info
+ %d
+-English to Chinese Dictionary º~­^¦r¨å
++Chinese to English Dictionary º~­^¦r¨å
+ CEDICT January 17, 2001; Copyright 2000-01
+ __END
+
+ foreach $data (@RawData) {
+- $data =~ s/(.*) \[(.*)\] \/(.*)\//%h $1\n%d\n$3\n/g ;
++ $data =~ s/(.*) \[(.*)\] \/(.*)\//%h $1\n%d\n[$2]\n$3\n/g ;
+ $data =~ s/\//\n/g ;
+ print TXT $data ;
+ }