diff options
author | Benedikt Boehm <hollow@gentoo.org> | 2008-04-25 12:02:59 +0000 |
---|---|---|
committer | Benedikt Boehm <hollow@gentoo.org> | 2008-04-25 12:02:59 +0000 |
commit | eafe6c43988fc25314784c26c63845926348982d (patch) | |
tree | 9856df2ddc5d0c4c664bf57a84dbb922b622cc0b /www-apps/phpBB | |
parent | version bump wrt security #218752 (diff) | |
download | historical-eafe6c43988fc25314784c26c63845926348982d.tar.gz historical-eafe6c43988fc25314784c26c63845926348982d.tar.bz2 historical-eafe6c43988fc25314784c26c63845926348982d.zip |
version bump wrt security #217224
Package-Manager: portage-2.1.5_rc6
Diffstat (limited to 'www-apps/phpBB')
-rw-r--r-- | www-apps/phpBB/ChangeLog | 7 | ||||
-rw-r--r-- | www-apps/phpBB/phpBB-3.0.1.ebuild | 38 |
2 files changed, 44 insertions, 1 deletions
diff --git a/www-apps/phpBB/ChangeLog b/www-apps/phpBB/ChangeLog index 8a5abd3562f6..c97ed4f1674f 100644 --- a/www-apps/phpBB/ChangeLog +++ b/www-apps/phpBB/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for www-apps/phpBB # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-apps/phpBB/ChangeLog,v 1.28 2008/03/07 12:33:54 hollow Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-apps/phpBB/ChangeLog,v 1.29 2008/04/25 12:02:59 hollow Exp $ + +*phpBB-3.0.1 (25 Apr 2008) + + 25 Apr 2008; Benedikt Böhm <hollow@gentoo.org> +phpBB-3.0.1.ebuild: + version bump wrt security #217224 *phpBB-2.0.23 (07 Mar 2008) diff --git a/www-apps/phpBB/phpBB-3.0.1.ebuild b/www-apps/phpBB/phpBB-3.0.1.ebuild new file mode 100644 index 000000000000..0c196532f3ac --- /dev/null +++ b/www-apps/phpBB/phpBB-3.0.1.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-apps/phpBB/phpBB-3.0.1.ebuild,v 1.1 2008/04/25 12:02:59 hollow Exp $ + +inherit webapp depend.php + +DESCRIPTION="phpBB is an open-source bulletin board package." +HOMEPAGE="http://www.phpbb.com/" +SRC_URI="http://www.phpbb.com/files/releases/${P}.tar.bz2 + mirror://sourceforge/phpbb/${P}.tar.bz2" + +LICENSE="GPL-2" +KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86" + +need_httpd_cgi +need_php_httpd + +S="${WORKDIR}"/${PN}3 + +src_install() { + webapp_src_preinst + + dodoc docs/* + rm -rf docs + + insinto "${MY_HTDOCSDIR}" + doins -r . + + webapp_serverowned "${MY_HTDOCSDIR}"/cache + webapp_serverowned "${MY_HTDOCSDIR}"/files + webapp_serverowned "${MY_HTDOCSDIR}"/images/avatars/upload + webapp_serverowned "${MY_HTDOCSDIR}"/store + webapp_serverowned "${MY_HTDOCSDIR}"/config.php + webapp_configfile "${MY_HTDOCSDIR}"/config.php + + webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt + webapp_src_install +} |