blob: 2ca31ab3827756a3f73f977b19a88e932a0ab9df [file] [log] [blame]
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit eutils webapp
DESCRIPTION="PHP/MySQL/Web based bugtracking system"
HOMEPAGE="http://www.mantisbt.org/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="amd64 x86"
IUSE=""
RDEPEND="
virtual/httpd-php
virtual/httpd-cgi
>=dev-php/adodb-5.10"
src_prepare() {
# Drop external libraries
rm -r "${S}/library/adodb/"
epatch "${FILESDIR}/${PN}-1.2.15-cve20134460.patch"
}
src_install() {
webapp_src_preinst
rm doc/{LICENSE,INSTALL}
dodoc doc/{CREDITS,CUSTOMIZATION,RELEASE} doc/en/*
rm -rf doc packages
mv config_inc.php.sample config_inc.php
cp -R . "${D}/${MY_HTDOCSDIR}"
webapp_configfile "${MY_HTDOCSDIR}/config_inc.php"
webapp_postinst_txt en "${FILESDIR}/postinstall-en-1.0.0.txt"
webapp_src_install
}