blob: acc9880497dd333d332795fc86be132f47049ef4 (
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/tinyerp-server/tinyerp-server-4.0.3.ebuild,v 1.3 2007/07/23 20:21:13 opfer Exp $
inherit eutils distutils
DESCRIPTION="Open Source ERP & CRM"
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-db/postgresql-7.4
dev-python/pypgsql
dev-python/reportlab
dev-python/pyparsing
media-gfx/pydot
=dev-python/psycopg-1*
dev-libs/libxml2
dev-libs/libxslt
dev-python/pychart"
TINYERP_USER=terp
TINYERP_GROUP=terp
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-setup.patch
}
pkg_setup() {
if ! built_with_use dev-libs/libxslt python ; then
eerror "dev-libs/libxslt must be built with python"
die "${PN} requires dev-libs/libxslt with USE=python"
fi
}
src_install() {
distutils_src_install
newinitd "${FILESDIR}"/tinyerp-init.d tinyerp
newconfd "${FILESDIR}"/tinyerp-conf.d tinyerp
keepdir /var/run/tinyerp
keepdir /var/log/tinyerp
}
pkg_preinst() {
enewgroup ${TINYERP_GROUP}
enewuser ${TINYERP_USER} -1 -1 -1 ${TINYERP_GROUP}
fowners ${TINYERP_USER}:${TINYERP_GROUP} /var/run/tinyerp
fowners ${TINYERP_USER}:${TINYERP_GROUP} /var/log/tinyerp
}
pkg_postinst() {
elog "In order to setup the initial database, run:"
elog " emerge --config =${CATEGORY}/${PF}"
elog "Be sure the database is started before"
}
pquery() {
psql -q -At -U postgres -d template1 -c "$@"
}
pkg_config() {
einfo "In the following, the 'postgres' user will be used."
if ! pquery "SELECT usename FROM pg_user WHERE usename = '${TINYERP_USER}'" | grep -q ${TINYERP_USER}; then
ebegin "Creating database user ${TINYERP_USER}"
createuser --quiet --username=postgres --createdb --no-adduser ${TINYERP_USER}
eend $? || die "Failed to create database user"
fi
}
|