diff options
Diffstat (limited to 'trunk/app-text/voikko/voikko-1.7.ebuild')
-rw-r--r-- | trunk/app-text/voikko/voikko-1.7.ebuild | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/trunk/app-text/voikko/voikko-1.7.ebuild b/trunk/app-text/voikko/voikko-1.7.ebuild new file mode 100644 index 0000000..80ed0af --- /dev/null +++ b/trunk/app-text/voikko/voikko-1.7.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +MY_P=lib${P/_rc/rc} + +DESCRIPTION="Free Finnish spellchecking and hyphenation library" +HOMEPAGE="http://www.lemi.fi/voikko/" +#SRC_URI="http://www.puimula.org/htp/testing/${MY_P}.tar.gz" +SRC_URI="mirror://sourceforge/voikko/${MY_P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +DEPEND="sci-misc/malaga + >=sci-misc/suomi-malaga-1.0 + virtual/libiconv" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${MY_P/rc?/}" + +src_compile() { + econf --with-dictionary-path="/usr/lib/suomi-malaga/" \ + || die "econf failed" + emake || die "emake failed" +} + + +src_install() { + emake DESTDIR="${D}" install || die "install failed" + dodoc README || die "docs missing" +} |