summaryrefslogtreecommitdiff
blob: 44f55e64d031aa4084b560a32bccbba632bfaf32 (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
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/leo/leo-4.4.1_beta2.ebuild,v 1.2 2007/06/23 09:56:19 hawking Exp $

NEED_PYTHON=2.3

inherit eutils python

MY_P="${PN}-4-4-1-beta-2"
DESCRIPTION="Leo is an outlining editor and literate programming tool."
HOMEPAGE="http://leo.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.zip"

LICENSE="PYTHON"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""

DEPEND="app-arch/unzip"
RDEPEND=""

S="${WORKDIR}/${MY_P}"

pkg_setup() {
	python_tkinter_exists
}

src_unpack() {
	unpack ${A}
	cd "${S}"
	epatch "${FILESDIR}/leoGlobals-${PV}.patch"
}

src_install() {
	dodir /usr/share/doc/
	mv doc "${D}/usr/share/doc/${PF}"
	rm PKG-INFO MANIFEST install manifest.in uninstall

	python_version
	destdir="/usr/$(get_libdir)/python${PYVER}/site-packages/leo"
	dodir "${destdir}"
	cp -r * "${D}/${destdir}" || die "cp failed"

	echo "#!/bin/bash" > leo
	echo "exec ${python} ${destdir}/src/leo.py \"\$1\"" >> leo
	exeinto /usr/bin
	doexe leo || die "doexe failed"
}