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.0.ebuild
Date: Thu, 10 Jan 2008 22:01:39
Message-Id: E1JD5Sy-0006i2-FB@stork.gentoo.org
1 pva 08/01/10 22:01:36
2
3 Modified: ChangeLog
4 Added: mantisbt-1.1.0.ebuild
5 Log:
6 Version bump. Thank all people, who notified me about this release.
7 (Portage version: 2.1.3.19)
8
9 Revision Changes Path
10 1.52 www-apps/mantisbt/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apps/mantisbt/ChangeLog?rev=1.52&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apps/mantisbt/ChangeLog?rev=1.52&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apps/mantisbt/ChangeLog?r1=1.51&r2=1.52
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/www-apps/mantisbt/ChangeLog,v
19 retrieving revision 1.51
20 retrieving revision 1.52
21 diff -u -r1.51 -r1.52
22 --- ChangeLog 6 Jan 2008 18:28:56 -0000 1.51
23 +++ ChangeLog 10 Jan 2008 22:01:35 -0000 1.52
24 @@ -1,6 +1,11 @@
25 # ChangeLog for www-apps/mantisbt
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/www-apps/mantisbt/ChangeLog,v 1.51 2008/01/06 18:28:56 dertobi123 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/www-apps/mantisbt/ChangeLog,v 1.52 2008/01/10 22:01:35 pva Exp $
29 +
30 +*mantisbt-1.1.0 (10 Jan 2008)
31 +
32 + 10 Jan 2008; <pva@g.o> +mantisbt-1.1.0.ebuild:
33 + Version bump. Thank all people, who notified me about this release.
34
35 06 Jan 2008; Tobias Scherbaum <dertobi123@g.o>
36 mantisbt-1.0.8-r1.ebuild:
37
38
39
40 1.1 www-apps/mantisbt/mantisbt-1.1.0.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apps/mantisbt/mantisbt-1.1.0.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apps/mantisbt/mantisbt-1.1.0.ebuild?rev=1.1&content-type=text/plain
44
45 Index: mantisbt-1.1.0.ebuild
46 ===================================================================
47 # Copyright 1999-2008 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.0.ebuild,v 1.1 2008/01/10 22:01:35 pva Exp $
50
51 inherit eutils webapp depend.php
52
53 IUSE="bundled-adodb"
54 MY_P=mantis-${PV}
55
56 DESCRIPTION="PHP/MySQL/Web based bugtracking system"
57 HOMEPAGE="http://www.mantisbt.org/"
58 SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz
59 mirror://gentoo/mantisbt-1.1.0-current-svn-fixes.patch.gz"
60
61 S=${WORKDIR}/${MY_P}
62
63 KEYWORDS="~amd64 ~ppc ~x86"
64
65 RDEPEND="
66 virtual/httpd-php
67 virtual/httpd-cgi
68 !bundled-adodb? ( dev-php/adodb )
69 "
70
71 LICENSE="GPL-2"
72
73 pkg_setup() {
74 webapp_pkg_setup
75 has_php
76 require_php_with_use pcre
77 }
78
79 src_unpack() {
80 unpack ${A}
81 cd "${S}"
82
83 if ! use bundled-adodb ; then
84 sed -i -e \
85 "s:require_once( 'adodb/adodb.inc.php' );:require_once( \$t_core_dir . 'adodb/adodb.inc.php' );:" \
86 "${S}"/core/database_api.php
87 else
88 rm -r "${S}"/core/adodb/
89 fi
90 epatch "${WORKDIR}"/${P}-current-svn-fixes.patch
91 }
92
93 src_install() {
94 webapp_src_preinst
95 rm doc/{LICENSE,INSTALL}
96 dodoc doc/* packages/mantis-httpd.conf
97
98 rm -rf doc packages
99 mv config_inc.php.sample config_inc.php
100 cp -R . "${D}"/${MY_HTDOCSDIR}
101
102 webapp_configfile ${MY_HTDOCSDIR}/config_inc.php
103 webapp_postinst_txt en "${FILESDIR}"/postinstall-en-1.0.0.txt
104 webapp_src_install
105 }
106
107
108
109 --
110 gentoo-commits@l.g.o mailing list