Note: Due to technical difficulties, the Archives are currently not up to date.
GMANE provides an alternative service for most mailing lists. c.f. bug 424647
List Archive: gentoo-commits
pva 08/10/15 17:07:41
Modified: ChangeLog
Added: mantisbt-1.1.3-r1.ebuild
Removed: mantisbt-1.1.3.ebuild
Log:
Fixed inability to report issues in mantis, reported in bug #241940 by Marek Królikowski.
(Portage version: 2.2_rc11/cvs/Linux 2.6.26-openvz.git-777e816 i686)
Revision Changes Path
1.66 www-apps/mantisbt/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apps/mantisbt/ChangeLog?rev=1.66&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apps/mantisbt/ChangeLog?rev=1.66&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apps/mantisbt/ChangeLog?r1=1.65&r2=1.66
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-apps/mantisbt/ChangeLog,v
retrieving revision 1.65
retrieving revision 1.66
diff -u -r1.65 -r1.66
--- ChangeLog 14 Oct 2008 11:55:08 -0000 1.65
+++ ChangeLog 15 Oct 2008 17:07:41 -0000 1.66
@@ -1,6 +1,14 @@
# ChangeLog for www-apps/mantisbt
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-apps/mantisbt/ChangeLog,v 1.65 2008/10/14 11:55:08 pva Exp $
+# $Header: /var/cvsroot/gentoo-x86/www-apps/mantisbt/ChangeLog,v 1.66 2008/10/15 17:07:41 pva Exp $
+
+*mantisbt-1.1.3-r1 (15 Oct 2008)
+
+ 15 Oct 2008; Peter Volkov <pva@g.o>
+ +files/mantisbt-1.1.3-up-to-r5674.patch, -mantisbt-1.1.3.ebuild,
+ +mantisbt-1.1.3-r1.ebuild:
+ Fixed inability to report issues in mantis, reported in bug #241940 by
+ Marek Królikowski.
*mantisbt-1.1.3 (14 Oct 2008)
1.1 www-apps/mantisbt/mantisbt-1.1.3-r1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apps/mantisbt/mantisbt-1.1.3-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apps/mantisbt/mantisbt-1.1.3-r1.ebuild?rev=1.1&content-type=text/plain
Index: mantisbt-1.1.3-r1.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-apps/mantisbt/mantisbt-1.1.3-r1.ebuild,v 1.1 2008/10/15 17:07:41 pva Exp $
inherit eutils webapp depend.php
MY_P=mantis-${PV}
DESCRIPTION="PHP/MySQL/Web based bugtracking system"
HOMEPAGE="http://www.mantisbt.org/"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
RDEPEND="
virtual/httpd-php
virtual/httpd-cgi
dev-php/adodb"
S=${WORKDIR}/${MY_P}
pkg_setup() {
webapp_pkg_setup
has_php
require_php_with_use pcre
}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${P}-up-to-r5674.patch"
rm -r "${S}"/core/adodb/ # We use external adodb
}
src_install() {
webapp_src_preinst
rm doc/{LICENSE,INSTALL}
dodoc doc/*
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"
}
|
|