diff options
Diffstat (limited to 'app-dicts/words-bin/words-bin-1.97-r1.ebuild')
-rw-r--r-- | app-dicts/words-bin/words-bin-1.97-r1.ebuild | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/app-dicts/words-bin/words-bin-1.97-r1.ebuild b/app-dicts/words-bin/words-bin-1.97-r1.ebuild new file mode 100644 index 0000000..782e65e --- /dev/null +++ b/app-dicts/words-bin/words-bin-1.97-r1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI="5" + +inherit eutils + +MY_P="${P/-bin}Ed" + +DESCRIPTION="Latin--English dictionary." +HOMEPAGE="http://users.erols.com/whitaker/words.htm" +SRC_URI="http://atrey.karlin.mff.cuni.cz/~sanda/mirror/${MY_P}-linux.tar.gz" + +SLOT="0" +LICENSE="words" +KEYWORDS="~amd64 ~x86" + +IUSE="" +DEPEND="" +RDEPEND="" + +S="${WORKDIR}/${MY_P}" + +src_prepare(){ + epatch "${FILESDIR}"/words_dir.patch +} + +src_install() { + insinto /opt/${MY_P} + dodoc wordsdoc* + rm wordsdoc* + doins * + dosym /opt/${MY_P}/latin /usr/bin/latin + fperms 755 /opt/${MY_P}/{latin,words} +} + +pkg_postinst() { + elog "Dictionary is launched through 'latin' command" +} |