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.12.ebuild ChangeLog
Date: Wed, 06 Mar 2013 04:24:20
Message-Id: 20130306042415.7ABE42171D@flycatcher.gentoo.org
1 patrick 13/03/06 04:24:15
2
3 Modified: ChangeLog
4 Added: mantisbt-1.2.12.ebuild
5 Log:
6 Bump for #443106
7
8 (Portage version: 2.2.0_alpha166/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.120 www-apps/mantisbt/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/mantisbt/ChangeLog?rev=1.120&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/mantisbt/ChangeLog?rev=1.120&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/mantisbt/ChangeLog?r1=1.119&r2=1.120
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/www-apps/mantisbt/ChangeLog,v
20 retrieving revision 1.119
21 retrieving revision 1.120
22 diff -u -r1.119 -r1.120
23 --- ChangeLog 16 Feb 2013 13:05:56 -0000 1.119
24 +++ ChangeLog 6 Mar 2013 04:24:15 -0000 1.120
25 @@ -1,6 +1,11 @@
26 # ChangeLog for www-apps/mantisbt
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/www-apps/mantisbt/ChangeLog,v 1.119 2013/02/16 13:05:56 pacho Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/www-apps/mantisbt/ChangeLog,v 1.120 2013/03/06 04:24:15 patrick Exp $
30 +
31 +*mantisbt-1.2.12 (06 Mar 2013)
32 +
33 + 06 Mar 2013; Patrick Lauer <patrick@g.o> +mantisbt-1.2.12.ebuild:
34 + Bump for #443106
35
36 16 Feb 2013; Pacho Ramos <pacho@g.o> metadata.xml:
37 Cleanup due bug #96436
38
39
40
41 1.1 www-apps/mantisbt/mantisbt-1.2.12.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/mantisbt/mantisbt-1.2.12.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/mantisbt/mantisbt-1.2.12.ebuild?rev=1.1&content-type=text/plain
45
46 Index: mantisbt-1.2.12.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/www-apps/mantisbt/mantisbt-1.2.12.ebuild,v 1.1 2013/03/06 04:24:15 patrick Exp $
51
52 EAPI="2"
53
54 inherit eutils webapp depend.php
55
56 DESCRIPTION="PHP/MySQL/Web based bugtracking system"
57 HOMEPAGE="http://www.mantisbt.org/"
58 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
59
60 LICENSE="GPL-2"
61 KEYWORDS="~amd64 ~x86"
62 IUSE=""
63
64 RDEPEND="
65 virtual/httpd-php
66 virtual/httpd-cgi
67 || ( <dev-lang/php-5.3[pcre] >=dev-lang/php-5.3 )
68 >=dev-php/ezc-Base-1.8
69 >=dev-php/ezc-Graph-1.5
70 >=dev-php/adodb-5.10"
71
72 src_prepare() {
73 # Drop external libraries
74 rm -r "${S}/library/adodb/"
75 rm -r "${S}/library/ezc/"{Base,Graph}
76 sed -e 's:ezc/Base/src/base.php:ezc/Base/base.php:' \
77 -i "${S}"/plugins/MantisGraph/{core/graph_api.php,pages/summary_graph_cumulative_bydate2.php} \
78 || die
79 # Fix incorrect filename
80 sed -e 's:config_default_inc.php:config_defaults_inc.php:' \
81 -i "${S}/lang/strings_russian.txt" || die
82 }
83
84 src_install() {
85 webapp_src_preinst
86 rm doc/{LICENSE,INSTALL}
87 dodoc doc/{CREDITS,CUSTOMIZATION,RELEASE} doc/en/*
88
89 rm -rf doc packages
90 mv config_inc.php.sample config_inc.php
91 cp -R . "${D}/${MY_HTDOCSDIR}"
92
93 webapp_configfile "${MY_HTDOCSDIR}/config_inc.php"
94 webapp_postinst_txt en "${FILESDIR}/postinstall-en-1.0.0.txt"
95 webapp_src_install
96 }