blob: 1a5ff55efc6c6655074478b1f9bb8867a2cedd4b (
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
33
34
35
36
37
38
39
40
41
42
43
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-apps/phpwebsite/phpwebsite-0.9.3_p4.ebuild,v 1.2 2004/08/16 21:16:28 rizzo Exp $
inherit webapp
MY_PV="${PV/_p/-}"
DESCRIPTION="phpWebSite Content Management System"
HOMEPAGE="http://phpwebsite.appstate.edu"
SRC_URI="mirror://sourceforge/${PN}/${PN}-${MY_PV}-full.tar.gz"
LICENSE="LGPL-2.1"
KEYWORDS="~x86 ~ppc ~sparc ~alpha"
IUSE=""
RDEPEND="<=virtual/httpd-php-5
>=dev-db/mysql-3.23.23"
DEPEND="${DEPEND} ${RDEPEND} >=net-www/webapp-config-1.10-r5"
S="${WORKDIR}/${PN}-${MY_PV}-full"
src_install() {
webapp_src_preinst
local docs="docs/CREDITS.txt docs/REQUIREMENTS.txt docs/UNINSTALL.txt docs/THEMES.txt docs/LICENSE.txt docs/README.txt docs/PEARERRORS.txt docs/sample.config.php docs/INSTALL.txt docs/CONVERSION.txt docs/UPGRADE.txt docs/KNOWNISSUES.txt"
dodoc ${docs}
einfo "Installing main files"
cp -r * ${D}${MY_HTDOCSDIR}
#webapp_configfile ${MY_HTDOCSDIR}/conf/config.php
# Files that need to be owned by webserver
webapp_serverowned ${MY_HTDOCSDIR}/conf
webapp_serverowned ${MY_HTDOCSDIR}/files
webapp_serverowned ${MY_HTDOCSDIR}/images
webapp_serverowned ${MY_HTDOCSDIR}/images/mod
webapp_serverowned ${MY_HTDOCSDIR}/images/mod/controlpanel
webapp_serverowned ${MY_HTDOCSDIR}/mod
webapp_postinst_txt en ${FILESDIR}/postinstall-en.txt
webapp_src_install
}
|