blob: c2d5b71f08536197de2ffed6b7d5644c35718e50 (
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-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-apps/mantisbt/mantisbt-1.0.3.ebuild,v 1.2 2006/05/08 19:58:09 dertobi123 Exp $
inherit webapp
IUSE="mysql postgres"
DESCRIPTION="PHP/MySQL/Web based bugtracking system"
HOMEPAGE="http://www.mantisbt.org/"
SRC_URI="mirror://sourceforge/${PN}/mantis-${PV}.tar.gz"
S=${WORKDIR}/mantis-${PV}
KEYWORDS="~amd64 ppc ~x86"
RDEPEND="
mysql? ( >=dev-db/mysql-3.23.32 )
postgres? ( >=dev-db/postgresql-7 )
net-www/apache
virtual/httpd-php
"
LICENSE="GPL-2"
src_install() {
webapp_src_preinst
dodoc doc/*
cp -R . ${D}/${MY_HTDOCSDIR}
rm -rf ${D}/${MY_HTDOCSDIR}/doc
mv ${D}/${MY_HTDOCSDIR}/config_inc.php.sample ${D}/${MY_HTDOCSDIR}/config_inc.php
webapp_configfile ${MY_HTDOCSDIR}/config_inc.php
webapp_postinst_txt en ${FILESDIR}/postinstall-en-1.0.0.txt
webapp_src_install
}
|