diff options
author | Masatomo Nakano <nakano@gentoo.org> | 2003-06-04 20:07:25 +0000 |
---|---|---|
committer | Masatomo Nakano <nakano@gentoo.org> | 2003-06-04 20:07:25 +0000 |
commit | 714fdeb053c3e887cc66bb111df8c4decf8c54ec (patch) | |
tree | d3ab432a6bbe65e86242d4bc30c490746bd4cf93 /app-dicts/gjiten | |
parent | Initial import as unstable. #14649 (diff) | |
download | gentoo-2-714fdeb053c3e887cc66bb111df8c4decf8c54ec.tar.gz gentoo-2-714fdeb053c3e887cc66bb111df8c4decf8c54ec.tar.bz2 gentoo-2-714fdeb053c3e887cc66bb111df8c4decf8c54ec.zip |
Initial import as unstable. #14649
Diffstat (limited to 'app-dicts/gjiten')
-rw-r--r-- | app-dicts/gjiten/ChangeLog | 9 | ||||
-rw-r--r-- | app-dicts/gjiten/Manifest | 3 | ||||
-rw-r--r-- | app-dicts/gjiten/files/digest-gjiten-2.1 | 1 | ||||
-rw-r--r-- | app-dicts/gjiten/gjiten-2.1.ebuild | 48 |
4 files changed, 60 insertions, 1 deletions
diff --git a/app-dicts/gjiten/ChangeLog b/app-dicts/gjiten/ChangeLog new file mode 100644 index 000000000000..5e82a430ec21 --- /dev/null +++ b/app-dicts/gjiten/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for app-dicts/gjiten +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-dicts/gjiten/ChangeLog,v 1.1 2003/06/04 20:07:17 nakano Exp $ + +*gjiten-2.1 (04 Jun 2003) + + 04 Jun 2003; Masatomo Nakano <nakano@gentoo.org> gjiten-2.1.ebuild: + Initial import as unstable + diff --git a/app-dicts/gjiten/Manifest b/app-dicts/gjiten/Manifest index 0c4c808f553b..12631c4b9909 100644 --- a/app-dicts/gjiten/Manifest +++ b/app-dicts/gjiten/Manifest @@ -1,2 +1,3 @@ -MD5 717df847c1788acb935da973809ef119 gjiten-2.1.ebuild 1291 +MD5 79baf5b8c3e50e816a7c1c4d24c09ef7 gjiten-2.1.ebuild 1305 +MD5 816f19a91a9faf93e5c771d614f9174b ChangeLog 341 MD5 c1203dae16baccbae3b5a5bc51cee64f files/digest-gjiten-2.1 62 diff --git a/app-dicts/gjiten/files/digest-gjiten-2.1 b/app-dicts/gjiten/files/digest-gjiten-2.1 new file mode 100644 index 000000000000..1dcbe086288c --- /dev/null +++ b/app-dicts/gjiten/files/digest-gjiten-2.1 @@ -0,0 +1 @@ +MD5 6fe7b05ddd1670582f6fc4cbbeef92fa gjiten-2.1.tar.gz 631652 diff --git a/app-dicts/gjiten/gjiten-2.1.ebuild b/app-dicts/gjiten/gjiten-2.1.ebuild new file mode 100644 index 000000000000..dbe432374e90 --- /dev/null +++ b/app-dicts/gjiten/gjiten-2.1.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 + + +DESCRIPTION="A Japanese dictionary program for Gnome" +SRC_URI="http://gjiten.sourceforge.net/${P}.tar.gz" +HOMEPAGE="http://gjiten.sourceforge.net/" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86" +IUSE="" + +DEPEND=">=gnome-base/libgnome-2.2 + >=gnome-base/libgnomeui-2.2 + >=x11-libs/gtk+-2" + +RDEPEND="gnome-base/libgnome + x11-libs/gtk+" + +src_compile() { + econf || die + emake || die +} + +src_install() { + einstall || die + dodoc ABOUT-NLS AUTHORS Changelog COPYING INSTALL NEWS README THANKS TODO + dohtml index.html gjiten.xml legal.xml gjiten-doc.ja.html +} +pkg_postinst() { + einfo + einfo "Dictionary files are necessary in order for" + einfo "Gjiten to function." + einfo + einfo "Download dictionary files from:" + einfo "http://ftp.cc.monash.edu.au/pub/nihongo/00INDEX.html#dic_fil" + einfo "You need kanjidic and edict at a minimum. Dictionary files" + einfo "must be converted to UTF-8 format - check the Gjiten help" + einfo "and README files for details." + einfo + einfo "A shell script is available from " + einfo "the Gjiten homepage(${HOMEPAGE}) to" + einfo "download and convert the dictionary files, but you need" + einfo "to put the files in /usr/share/gjiten after running the script." + einfo +} + |