blob: 88d6db6f8ae5c5fbef03862985e1eed28f32581e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/queequeg/queequeg-0.91.ebuild,v 1.6 2006/07/14 13:18:39 hattya Exp $
inherit distutils multilib
IUSE=""
DESCRIPTION="A checker for English grammars, for people who are not English natives."
HOMEPAGE="http://queequeg.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
RESTRICT="nomirror"
LICENSE="GPL-2"
KEYWORDS="~x86"
SLOT="0"
DEPEND=">=dev-lang/python-2.3
app-dicts/wordnet"
src_compile() {
local dictdir=/usr/dict
if has_version =app-dicts/wordnet-2.0; then
dictdir=/usr/share/wordnet/dict
fi
emake dict WORDNETDICT=${dictdir} || die
}
src_install() {
python_version
local prefix=/usr/$(get_libdir)/python${PYVER}/site-packages/${PN}
insinto ${prefix}
doins *.py
[ -f "dict.txt" ] && doins dict.txt || doins dict.cdb
exeinto ${prefix}
doexe qq
dosym ${prefix}/qq /usr/bin/qq
dodoc README TODO
dohtml htdocs/*
}
|