blob: 12d8e65986f679e43afdac0e61eb0033e92c18f1 (
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
50
51
52
53
54
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/treeline/treeline-0.12.0.ebuild,v 1.2 2005/06/03 19:28:01 mr_bones_ Exp $
inherit eutils python
DESCRIPTION="TreeLine is a structured information storage program."
HOMEPAGE="http://www.bellz.org/treeline/"
SRC_URI="http://www.bellz.org/treeline/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc"
IUSE="spell"
DEPEND="spell? ( || ( app-text/aspell app-text/ispell ) )
|| ( dev-python/pyxml dev-libs/expat )
virtual/python dev-python/PyQt
>=x11-libs/qt-3.3.0-r1"
S=${WORKDIR}/TreeLine
src_compile() {
printf '#!/bin/sh\n\nexec python %s/treeline.py $*\n' \
/usr/lib/treeline > ${T}/treeline
sed -i -e "s#\(helpFilePath = \)None#\1'/usr/lib/treeline'#g" \
-e "s#\(iconPath = \)None#\1'/usr/share/icons/treeline'#g" \
${S}/source/treeline.py || die
}
src_install() {
dodir /usr/lib/treeline /usr/share/icons
insinto /usr/lib/treeline
doins ${S}/source/*.py ${S}/doc/README.html
dodir /usr/share/icons/treeline
insinto /usr/share/icons/treeline
doins ${S}/icons/*.png
dodoc ${S}/doc/LICENSE ${S}/doc/*.trl
dohtml ${S}/doc/README.html
dobin ${T}/treeline
}
pkg_postinst() {
python_mod_optimize /usr/lib/treeline
}
pkg_postrm() {
python_mod_cleanup /usr/lib/treeline
}
|