Gentoo Archives: gentoo-commits

From: "Alex Legler (a3li)" <a3li@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in www-apps/phpBB: phpBB-3.0.7_p1.ebuild ChangeLog phpBB-3.0.4.ebuild
Date: Sat, 21 Aug 2010 10:48:54
Message-Id: 20100821104849.BD2872004C@flycatcher.gentoo.org
1 a3li 10/08/21 10:48:49
2
3 Modified: ChangeLog
4 Added: phpBB-3.0.7_p1.ebuild
5 Removed: phpBB-3.0.4.ebuild
6 Log:
7 Non-maintainer commit: Version bump for security bug 320977. Also closes bump request 272311, thanks to all the people there who submitted ebuilds. Removing vulnerable ebuild.
8 (Portage version: 2.2_rc67/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.34 www-apps/phpBB/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/phpBB/ChangeLog?rev=1.34&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/phpBB/ChangeLog?rev=1.34&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/phpBB/ChangeLog?r1=1.33&r2=1.34
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/www-apps/phpBB/ChangeLog,v
20 retrieving revision 1.33
21 retrieving revision 1.34
22 diff -u -r1.33 -r1.34
23 --- ChangeLog 28 Dec 2008 21:12:39 -0000 1.33
24 +++ ChangeLog 21 Aug 2010 10:48:49 -0000 1.34
25 @@ -1,6 +1,14 @@
26 # ChangeLog for www-apps/phpBB
27 -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/www-apps/phpBB/ChangeLog,v 1.33 2008/12/28 21:12:39 wrobel Exp $
29 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/www-apps/phpBB/ChangeLog,v 1.34 2010/08/21 10:48:49 a3li Exp $
31 +
32 +*phpBB-3.0.7_p1 (21 Aug 2010)
33 +
34 + 21 Aug 2010; Alex Legler <a3li@g.o> -phpBB-3.0.4.ebuild,
35 + +phpBB-3.0.7_p1.ebuild:
36 + Non-maintainer commit: Version bump for security bug 320977. Also closes
37 + bump request 272311, thanks to all the people there who submitted ebuilds.
38 + Removing vulnerable ebuild.
39
40 *phpBB-3.0.4 (28 Dec 2008)
41
42
43
44
45 1.1 www-apps/phpBB/phpBB-3.0.7_p1.ebuild
46
47 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/phpBB/phpBB-3.0.7_p1.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/phpBB/phpBB-3.0.7_p1.ebuild?rev=1.1&content-type=text/plain
49
50 Index: phpBB-3.0.7_p1.ebuild
51 ===================================================================
52 # Copyright 1999-2010 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/www-apps/phpBB/phpBB-3.0.7_p1.ebuild,v 1.1 2010/08/21 10:48:49 a3li Exp $
55
56 inherit webapp depend.php
57
58 MY_PV=${PV/_p/-PL}
59
60 DESCRIPTION="phpBB is an open-source bulletin board package."
61 HOMEPAGE="http://www.phpbb.com/"
62 SRC_URI="mirror://sourceforge/phpbb/${PN}-${MY_PV}.tar.bz2"
63
64 LICENSE="GPL-2"
65 KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
66
67 need_httpd_cgi
68 need_php_httpd
69
70 S="${WORKDIR}"/${PN}3
71
72 src_install() {
73 webapp_src_preinst
74
75 dodoc docs/*
76 rm -rf docs
77
78 insinto "${MY_HTDOCSDIR}"
79 doins -r .
80
81 webapp_serverowned "${MY_HTDOCSDIR}"/cache
82 webapp_serverowned "${MY_HTDOCSDIR}"/files
83 webapp_serverowned "${MY_HTDOCSDIR}"/images/avatars/upload
84 webapp_serverowned "${MY_HTDOCSDIR}"/store
85 webapp_serverowned "${MY_HTDOCSDIR}"/config.php
86 webapp_configfile "${MY_HTDOCSDIR}"/config.php
87
88 webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt
89 webapp_src_install
90 }