summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStuart Bouyer <stubear@gentoo.org>2002-07-30 14:54:52 +0000
committerStuart Bouyer <stubear@gentoo.org>2002-07-30 14:54:52 +0000
commitf3d015ff853f942ae436623a4fbb9ac7ee2ce009 (patch)
treea3eda33809c071953a37d7fa4c699f1fbc2443ce
parentfixed 'SOCKSinit' issue (bug #5224) and sandbox violation (diff)
downloadhistorical-f3d015ff853f942ae436623a4fbb9ac7ee2ce009.tar.gz
historical-f3d015ff853f942ae436623a4fbb9ac7ee2ce009.tar.bz2
historical-f3d015ff853f942ae436623a4fbb9ac7ee2ce009.zip
initial ebuild
-rw-r--r--app-i18n/skk-jisyo/ChangeLog9
-rw-r--r--app-i18n/skk-jisyo/files/digest-skk-jisyo-2002073
-rw-r--r--app-i18n/skk-jisyo/skk-jisyo-200207.ebuild36
3 files changed, 48 insertions, 0 deletions
diff --git a/app-i18n/skk-jisyo/ChangeLog b/app-i18n/skk-jisyo/ChangeLog
new file mode 100644
index 000000000000..eb6df19b4215
--- /dev/null
+++ b/app-i18n/skk-jisyo/ChangeLog
@@ -0,0 +1,9 @@
+# ChangeLog for <CATEGORY>/<PACKAGE_NAME>
+# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-i18n/skk-jisyo/ChangeLog,v 1.1 2002/07/30 14:54:52 stubear Exp $
+
+*skk-jisyo-200207 (30 Jul 2002)
+
+ 30 Jul 2002; Stuart Bouyer <stubear@gentoo.org> skk-jisyo-200207.ebuild :
+
+ Initail ebuild submitted by Matsuu Takuto <matsuu@7501.net>
diff --git a/app-i18n/skk-jisyo/files/digest-skk-jisyo-200207 b/app-i18n/skk-jisyo/files/digest-skk-jisyo-200207
new file mode 100644
index 000000000000..977562e2b749
--- /dev/null
+++ b/app-i18n/skk-jisyo/files/digest-skk-jisyo-200207
@@ -0,0 +1,3 @@
+MD5 35776c120eb53141cf023b0ea93c589b SKK-JISYO.L.unannotated.bz2 1007646
+MD5 bd7069ba2f9b851c2742ca3f8ccc0794 SKK-JISYO.M.bz2 62544
+MD5 e90d0e966344fff40a88a4fe23e5e18c SKK-JISYO.S.bz2 25929
diff --git a/app-i18n/skk-jisyo/skk-jisyo-200207.ebuild b/app-i18n/skk-jisyo/skk-jisyo-200207.ebuild
new file mode 100644
index 000000000000..c0d5965a17b1
--- /dev/null
+++ b/app-i18n/skk-jisyo/skk-jisyo-200207.ebuild
@@ -0,0 +1,36 @@
+DESCRIPTION="Jisyo (dictionary) files for the SKK Japanese-input software"
+
+HOMEPAGE="http://www.openlab.jp/skk/"
+
+LICENSE="GPL"
+
+SRC_URI="http://openlab.jp/skk/dic/SKK-JISYO.L.unannotated.bz2
+ http://openlab.jp/skk/dic/SKK-JISYO.M.bz2
+ http://openlab.jp/skk/dic/SKK-JISYO.S.bz2"
+
+KEYWORDS="x86"
+SLOT="0"
+
+DEPEND="virtual/emacs"
+RDEPEND="${DEPEND}"
+
+S=${WORKDIR}/${P}
+
+src_unpack () {
+ mkdir ${S}
+ bzcat ${DISTDIR}/SKK-JISYO.L.unannotated.bz2 > ${WORKDIR}/${P}/SKK-JISYO.L
+ bzcat ${DISTDIR}/SKK-JISYO.M.bz2 > ${WORKDIR}/${P}/SKK-JISYO.M
+ bzcat ${DISTDIR}/SKK-JISYO.S.bz2 > ${WORKDIR}/${P}/SKK-JISYO.S
+}
+
+src_compile () {
+ echo "SKK-JISYO don't need to be compiled! ;)"
+}
+
+src_install () {
+ # install dictionaries
+ insinto /usr/share/skk
+ doins SKK-JISYO.L
+ doins SKK-JISYO.M
+ doins SKK-JISYO.S
+}