blob: ef3ac6471fe39c55f46d88f626c5a8094a0ad57b (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/leo/leo-4.6.3.ebuild,v 1.3 2009/10/15 11:38:16 maekke Exp $
EAPI="2"
NEED_PYTHON="2.5"
SUPPORT_PYTHON_ABIS="1"
inherit distutils
MY_P="Leo-${PV//./-}-final"
DESCRIPTION="An outlining editor and literate programming tool."
HOMEPAGE="http://leo.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.zip"
LICENSE="as-is"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE=""
RDEPEND="app-text/silvercity
>=dev-lang/python-2.5[tk]
dev-python/PyQt4[X]"
DEPEND="${RDEPEND}
app-arch/unzip"
RESTRICT_PYTHON_ABIS="2.4 3.*"
S="${WORKDIR}/${MY_P}"
PYTHON_MODNAME="leo"
src_install() {
distutils_src_install
dohtml -r leo/doc/html/* || die "dohtml failed"
dodoc leo/doc/README.TXT || die "dodoc failed"
}
|