blob: 129a3f7f453fc93c104fc50e17fa04156848d659 (
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
|
# 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.2.ebuild,v 1.7 2007/06/23 09:56:19 hawking Exp $
NEED_PYTHON=2.3
inherit eutils python
MY_P=${P}-final
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="ppc x86"
IUSE=""
DEPEND="app-arch/unzip"
RDEPEND=""
S=${WORKDIR}/${MY_P}
pkg_setup() {
python_tkinter_exists
}
src_unpack() {
unpack ${A}
cd "${S}" || die "Failed to cd ${S}"
epatch "${FILESDIR}"/leoConfig.py.patch
}
src_install() {
python_version
INST_DIR=/usr/lib/python${PYVER}/site-packages/leo
dodoc ${S}/PKG-INFO MANIFEST doc/*
rm -rf PKG-INFO MANIFEST doc/*
dodir ${INST_DIR}
cp -r * "${D}"/${INST_DIR}/ || die "cp failed"
echo "#!/bin/bash" > leo
echo "exec /usr/bin/python ${INST_DIR}/src/leo.py \"\$1\"" >> leo
exeinto /usr/bin
doexe leo || die "doexe failed"
}
|