Gentoo Archives: gentoo-commits

From: "Peter Volkov (pva)" <pva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in www-apps/mantisbt: ChangeLog mantisbt-1.1.7.ebuild mantisbt-1.1.4-r2.ebuild mantisbt-1.1.5.ebuild
Date: Wed, 22 Apr 2009 17:02:23
Message-Id: E1Lwfq1-0001VK-Ap@stork.gentoo.org
1 pva 09/04/22 17:02:21
2
3 Modified: ChangeLog
4 Added: mantisbt-1.1.7.ebuild
5 Removed: mantisbt-1.1.4-r2.ebuild mantisbt-1.1.5.ebuild
6 Log:
7 Version bump, remove old.
8 (Portage version: 2.2_rc31/cvs/Linux i686)
9
10 Revision Changes Path
11 1.80 www-apps/mantisbt/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apps/mantisbt/ChangeLog?rev=1.80&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apps/mantisbt/ChangeLog?rev=1.80&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apps/mantisbt/ChangeLog?r1=1.79&r2=1.80
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/www-apps/mantisbt/ChangeLog,v
20 retrieving revision 1.79
21 retrieving revision 1.80
22 diff -u -r1.79 -r1.80
23 --- ChangeLog 4 Jan 2009 17:31:32 -0000 1.79
24 +++ ChangeLog 22 Apr 2009 17:02:21 -0000 1.80
25 @@ -1,6 +1,15 @@
26 # ChangeLog for www-apps/mantisbt
27 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/www-apps/mantisbt/ChangeLog,v 1.79 2009/01/04 17:31:32 maekke Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/www-apps/mantisbt/ChangeLog,v 1.80 2009/04/22 17:02:21 pva Exp $
30 +
31 +*mantisbt-1.1.7 (22 Apr 2009)
32 +
33 + 22 Apr 2009; Peter Volkov <pva@g.o>
34 + -files/mantisbt-1.1.4-r5687:5688.patch,
35 + -files/mantisbt-1.1.5-caching.patch,
36 + -files/mantisbt-1.1.5-extensions.patch, -mantisbt-1.1.4-r2.ebuild,
37 + -mantisbt-1.1.5.ebuild, +mantisbt-1.1.7.ebuild:
38 + Version bump, remove old.
39
40 04 Jan 2009; Markus Meier <maekke@g.o> mantisbt-1.1.6.ebuild:
41 amd64/x86 stable, bug #252659
42
43
44
45 1.1 www-apps/mantisbt/mantisbt-1.1.7.ebuild
46
47 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apps/mantisbt/mantisbt-1.1.7.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apps/mantisbt/mantisbt-1.1.7.ebuild?rev=1.1&content-type=text/plain
49
50 Index: mantisbt-1.1.7.ebuild
51 ===================================================================
52 # Copyright 1999-2009 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/www-apps/mantisbt/mantisbt-1.1.7.ebuild,v 1.1 2009/04/22 17:02:21 pva Exp $
55
56 inherit eutils webapp depend.php
57
58 DESCRIPTION="PHP/MySQL/Web based bugtracking system"
59 HOMEPAGE="http://www.mantisbt.org/"
60 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
61
62 LICENSE="GPL-2"
63 KEYWORDS="~amd64 ~ppc ~x86"
64 IUSE=""
65
66 RDEPEND="
67 virtual/httpd-php
68 virtual/httpd-cgi
69 dev-php/adodb"
70
71 pkg_setup() {
72 webapp_pkg_setup
73 has_php
74 require_php_with_use pcre
75 }
76
77 src_unpack() {
78 unpack ${A}
79 cd "${S}"
80 rm -r "${S}/core/adodb/" # We use external adodb
81 }
82
83 src_install() {
84 webapp_src_preinst
85 rm doc/{LICENSE,INSTALL}
86 dodoc doc/*
87
88 rm -rf doc packages
89 mv config_inc.php.sample config_inc.php
90 cp -R . "${D}/${MY_HTDOCSDIR}"
91
92 webapp_configfile "${MY_HTDOCSDIR}/config_inc.php"
93 webapp_postinst_txt en "${FILESDIR}/postinstall-en-1.0.0.txt"
94 webapp_src_install
95 }
96
97 pkg_postinst() {
98 webapp_pkg_postinst
99 elog "Note, that this branch of mantisbt does not work with PostgreSQL."
100 elog "If really need mantisbt to work with PostgreSQL you'll have to"
101 elog "install it manually from upstream svn repository:"
102 elog "https://sourceforge.net/svn/?group_id=14963"
103 }