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