blob: 3df7c5d7e5d2f96b3bcffb8547ee9c775133c064 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/tinyerp-client/tinyerp-client-4.0.3.ebuild,v 1.3 2007/08/11 14:39:46 beandog Exp $
inherit distutils eutils
DESCRIPTION="Open Source ERP & CRM client"
HOMEPAGE="http://tinyerp.org/"
SRC_URI="http://www.tinyerp.org/download/old/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
DEPEND=">=dev-lang/python-2.3
>=dev-python/pygtk-2.6"
src_unpack() {
unpack ${A}
cd "${S}"
sed -i -e "s/^\(check_modules()\).*/#\1/" \
setup.py
sed -i -e "s@\('path.share':\).*@\1 '/usr/share/tinyerp-client/',@" \
-e "s@\('path.pixmaps':\).*@\1 '/usr/share/tinyerp-client/',@" \
bin/options.py
}
src_install() {
distutils_src_install
keepdir /usr/share/${PN}/themes
}
|