diff options
author | Peter Volkov <pva@gentoo.org> | 2010-05-11 10:07:44 +0000 |
---|---|---|
committer | Peter Volkov <pva@gentoo.org> | 2010-05-11 10:07:44 +0000 |
commit | ac0a7b0af8d02e498ca4f870fd46c5caf9ac3de3 (patch) | |
tree | c7b4abd9c12b4bfc4ce523880038c7da4dea93cb /www-apps/mantisbt/mantisbt-1.2.1.ebuild | |
parent | Fix parallel make. Bug #316845 (diff) | |
download | gentoo-2-ac0a7b0af8d02e498ca4f870fd46c5caf9ac3de3.tar.gz gentoo-2-ac0a7b0af8d02e498ca4f870fd46c5caf9ac3de3.tar.bz2 gentoo-2-ac0a7b0af8d02e498ca4f870fd46c5caf9ac3de3.zip |
Version bump, bug #311391, thank David Hicks and useful comments on the mailing list.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'www-apps/mantisbt/mantisbt-1.2.1.ebuild')
-rw-r--r-- | www-apps/mantisbt/mantisbt-1.2.1.ebuild | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/www-apps/mantisbt/mantisbt-1.2.1.ebuild b/www-apps/mantisbt/mantisbt-1.2.1.ebuild new file mode 100644 index 000000000000..fd8b862cf2c3 --- /dev/null +++ b/www-apps/mantisbt/mantisbt-1.2.1.ebuild @@ -0,0 +1,65 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-apps/mantisbt/mantisbt-1.2.1.ebuild,v 1.1 2010/05/11 10:07:44 pva Exp $ + +inherit eutils webapp depend.php + +DESCRIPTION="PHP/MySQL/Web based bugtracking system" +HOMEPAGE="http://www.mantisbt.org/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz +mirror://gentoo/${P}-git20100511.patch.bz2" + +LICENSE="GPL-2" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=" + virtual/httpd-php + virtual/httpd-cgi + dev-php5/ezc-Base + dev-php5/ezc-Graph + >=dev-php/adodb-5.10" + +pkg_setup() { + webapp_pkg_setup + has_php + require_php_with_use pcre +} + +src_unpack() { + unpack ${A} + cd "${S}" + + epatch "${WORKDIR}/${P}-git20100511.patch" + # Drop external libraries + rm -r "${S}/library/adodb/" + rm -r "${S}/library/ezc/"{Base,Graph} + sed -e 's:ezc/Base/src/base.php:ezc/Base/base.php:' \ + -i "${S}"/plugins/MantisGraph/{core/graph_api.php,pages/summary_graph_cumulative_bydate2.php} \ + || die + # Fix incorrect filename + sed -e 's:config_default_inc.php:config_defaults_inc.php:' \ + -i "${S}/lang/strings_russian.txt" || die +} + +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 +} + +pkg_postinst() { + webapp_pkg_postinst + elog "Note, that this branch of mantisbt does not work with PostgreSQL." + elog "If really need mantisbt to work with PostgreSQL you'll have to" + elog "install it manually from upstream svn repository:" + elog "https://sourceforge.net/svn/?group_id=14963" +} |