blob: c440dcf2862eb62e1caa275035c44a2101dc6007 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-apps/phpBB/phpBB-2.0.15.ebuild,v 1.2 2005/05/12 19:21:01 pylon Exp $
inherit webapp
DESCRIPTION="phpBB is an open-source bulletin board package."
HOMEPAGE="http://www.phpbb.com/"
SRC_URI="mirror://sourceforge/phpbb/${P}.tar.bz2"
LICENSE="GPL-2"
KEYWORDS="~x86 ppc ~sparc ~alpha ~amd64"
RDEPEND="virtual/php"
S=${WORKDIR}/${PN}2
src_install() {
webapp_src_preinst
dodoc ${S}/docs/*
rm -rf ${S}/docs/
cp -a * "${D}/${MY_HTDOCSDIR}"
echo "<?php trigger_error('Please use install/install.php to configure phpBB for your system!', E_USER_ERROR); ?>" > "${D}/${MY_HTDOCSDIR}/config.php"
webapp_serverowned "${MY_HTDOCSDIR}/config.php"
webapp_postinst_txt en ${FILESDIR}/2.0.10-postinstall-en.txt
webapp_src_install
}
|