blob: 5be3e854a712b3a55c9127fa57a5ede031a3b03c (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-apps/moregroupware/moregroupware-0.7.2.ebuild,v 1.5 2005/08/22 20:46:47 rl03 Exp $
inherit webapp
S=${WORKDIR}/${PN}
DESCRIPTION="more.groupware is another web based groupware"
HOMEPAGE="http://moregroupware.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${PN}-core-${PV}.tar.gz"
LICENSE="X11 GPL-2"
KEYWORDS="~x86 ppc"
IUSE=""
RDEPEND="virtual/php
>=dev-db/mysql-3.23
net-www/apache"
src_compile() {
:;
}
src_install() {
webapp_src_preinst
rm -f docs/LICENSE
dodoc docs/*
rm -rf docs
cp -R . ${D}/${MY_HTDOCSDIR}
webapp_postinst_txt en ${FILESDIR}/postinstall-en.txt
webapp_hook_script ${FILESDIR}/reconfig
webapp_src_install
}
|