Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in www-apps/mantisbt: mantisbt-1.2.11.ebuild ChangeLog
Date: Tue, 31 Jul 2012 09:40:31
Message-Id: 20120731094021.B91B62004B@flycatcher.gentoo.org
1 patrick 12/07/31 09:40:21
2
3 Modified: ChangeLog
4 Added: mantisbt-1.2.11.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.0_alpha120/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.116 www-apps/mantisbt/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/mantisbt/ChangeLog?rev=1.116&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/mantisbt/ChangeLog?rev=1.116&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/mantisbt/ChangeLog?r1=1.115&r2=1.116
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/www-apps/mantisbt/ChangeLog,v
20 retrieving revision 1.115
21 retrieving revision 1.116
22 diff -u -r1.115 -r1.116
23 --- ChangeLog 14 Dec 2011 22:53:05 -0000 1.115
24 +++ ChangeLog 31 Jul 2012 09:40:21 -0000 1.116
25 @@ -1,6 +1,11 @@
26 # ChangeLog for www-apps/mantisbt
27 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/www-apps/mantisbt/ChangeLog,v 1.115 2011/12/14 22:53:05 mabi Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/www-apps/mantisbt/ChangeLog,v 1.116 2012/07/31 09:40:21 patrick Exp $
31 +
32 +*mantisbt-1.2.11 (31 Jul 2012)
33 +
34 + 31 Jul 2012; Patrick Lauer <patrick@g.o> +mantisbt-1.2.11.ebuild:
35 + Bump
36
37 14 Dec 2011; Matti Bickel <mabi@g.o> mantisbt-1.2.8.ebuild:
38 Merging categories dev-php5 and dev-php (bug #324665)
39 @@ -530,4 +535,3 @@
40 +files/postinstall-en.txt, +mantisbt-0.18.3.ebuild:
41 Initial ebuild (by swegener, really). Thanks to blubber, Jacob Smullyan
42 <smulloni@××××××××.org>, and swegener for their work. Closes #27161.
43 -
44
45
46
47 1.1 www-apps/mantisbt/mantisbt-1.2.11.ebuild
48
49 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/mantisbt/mantisbt-1.2.11.ebuild?rev=1.1&view=markup
50 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/mantisbt/mantisbt-1.2.11.ebuild?rev=1.1&content-type=text/plain
51
52 Index: mantisbt-1.2.11.ebuild
53 ===================================================================
54 # Copyright 1999-2012 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 # $Header: /var/cvsroot/gentoo-x86/www-apps/mantisbt/mantisbt-1.2.11.ebuild,v 1.1 2012/07/31 09:40:21 patrick Exp $
57
58 EAPI="2"
59
60 inherit eutils webapp depend.php
61
62 DESCRIPTION="PHP/MySQL/Web based bugtracking system"
63 HOMEPAGE="http://www.mantisbt.org/"
64 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
65
66 LICENSE="GPL-2"
67 KEYWORDS="~amd64 ~x86"
68 IUSE=""
69
70 RDEPEND="
71 virtual/httpd-php
72 virtual/httpd-cgi
73 || ( <dev-lang/php-5.3[pcre] >=dev-lang/php-5.3 )
74 >=dev-php/ezc-Base-1.8
75 >=dev-php/ezc-Graph-1.5
76 >=dev-php/adodb-5.10"
77
78 src_prepare() {
79 # Drop external libraries
80 rm -r "${S}/library/adodb/"
81 rm -r "${S}/library/ezc/"{Base,Graph}
82 sed -e 's:ezc/Base/src/base.php:ezc/Base/base.php:' \
83 -i "${S}"/plugins/MantisGraph/{core/graph_api.php,pages/summary_graph_cumulative_bydate2.php} \
84 || die
85 # Fix incorrect filename
86 sed -e 's:config_default_inc.php:config_defaults_inc.php:' \
87 -i "${S}/lang/strings_russian.txt" || die
88 }
89
90 src_install() {
91 webapp_src_preinst
92 rm doc/{LICENSE,INSTALL}
93 dodoc doc/{CREDITS,CUSTOMIZATION,RELEASE} doc/en/*
94
95 rm -rf doc packages
96 mv config_inc.php.sample config_inc.php
97 cp -R . "${D}/${MY_HTDOCSDIR}"
98
99 webapp_configfile "${MY_HTDOCSDIR}/config_inc.php"
100 webapp_postinst_txt en "${FILESDIR}/postinstall-en-1.0.0.txt"
101 webapp_src_install
102 }