45 lines
970 B
Bash
45 lines
970 B
Bash
# Copyright 1999-2015 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI="5"
|
|
inherit eutils webapp
|
|
|
|
DESCRIPTION="dotProject is a PHP web-based project management framework"
|
|
HOMEPAGE="http://www.dotproject.net/"
|
|
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
|
|
|
|
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
|
|
LICENSE="GPL-2"
|
|
IUSE=""
|
|
|
|
DEPEND=""
|
|
RDEPEND="app-text/poppler[utils]
|
|
dev-php/PEAR-Date
|
|
virtual/httpd-php"
|
|
|
|
need_httpd_cgi
|
|
|
|
S=${WORKDIR}/${PN}
|
|
|
|
src_prepare() {
|
|
epatch "${FILESDIR}/${P}-pear-date.patch"
|
|
}
|
|
|
|
src_install () {
|
|
webapp_src_preinst
|
|
|
|
dodoc ChangeLog README
|
|
rm -rf ChangeLog README lib/PEAR/Date.php lib/PEAR/Date
|
|
|
|
mv includes/config{-dist,}.php
|
|
|
|
insinto "${MY_HTDOCSDIR}"
|
|
doins -r .
|
|
|
|
webapp_serverowned "${MY_HTDOCSDIR}"/includes/config.php
|
|
webapp_serverowned "${MY_HTDOCSDIR}"/files{,/temp}
|
|
webapp_serverowned "${MY_HTDOCSDIR}"/locales/en
|
|
|
|
webapp_postinst_txt en "${FILESDIR}"/install-en.txt
|
|
webapp_src_install
|
|
}
|