summaryrefslogtreecommitdiff
blob: 645caafc21d2ea0443d971bc9b1ee91d04262886 (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-www/phpwebsite/phpwebsite-0.9.3_p2-r1.ebuild,v 1.5 2004/06/25 01:09:35 agriffis Exp $

inherit webapp-apache

IUSE="apache2"
MY_PV="${PV/_p/-}"
S="${WORKDIR}/${PN}-${MY_PV}-full"
DESCRIPTION="phpWebSite provides a complete web site content management system. Web-based administration allows for easy maintenance of interactive, community-driven web sites."
HOMEPAGE="http://phpwebsite.appstate.edu"
SRC_URI="mirror://sourceforge/phpwebsite/${PN}-${MY_PV}-full.tar.gz
		http://phpwsbb.sourceforge.net/Database0932.zip"

SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ~ppc ~sparc alpha"

DEPEND=">=sys-devel/patch-2.5.9"
RDEPEND="virtual/php
		 dev-db/mysql"


pkg_setup() {
	webapp-detect || NO_WEBSERVER=1
	webapp-pkg_setup "${NO_WEBSERVER}"
	einfo "Installing for ${WEBAPP_SERVER}"
}

src_unpack() {
	unpack ${PN}-${MY_PV}-full.tar.gz
	cd ${S}/core/
	unpack Database0932.zip
}

src_install() {
	webapp-mkdirs

	dodir "${HTTPD_ROOT}/phpwebsite"
	cp -a * "${D}/${HTTPD_ROOT}/phpwebsite"
	dodoc ${S}/docs/*.txt
	dodoc ${S}/docs/*.php
	dodoc ${S}/docs/developers/*.txt
	dodoc ${S}/docs/developers/*.php

	#cd "${D}/${HTTPD_ROOT}"
	chown -R "${HTTPD_USER}:${HTTPD_GROUP}" "${D}/${HTTPD_ROOT}/phpwebsite"
	chmod 0775 "${D}/${HTTPD_ROOT}/phpwebsite"
	find "${D}/${HTTPD_ROOT}/phpwebsite/" -type d | xargs chmod 2775
	find "${D}/${HTTPD_ROOT}/phpwebsite/" -type f | xargs chmod 0664
	chmod 0555 "${D}/${HTTPD_ROOT}/phpwebsite/setup/*.sh"
}

pkg_postinst() {
	einfo
	einfo "You will need to create a database for phpWebSite"
	einfo "on your own before starting setup."
	einfo
	#einfo "cd ${HTTPD_ROOT}/phpwebsite/setup"
	#einfo "./secure_setup.sh setup"
	#einfo
	einfo "Once you have a database ready proceed to"
	einfo "http://$HOSTNAME/phpwebsite to continue installation."
	einfo
	einfo "Once you are done with installation you need to run"
	einfo
	einfo "cd ${HTTPD_ROOT}/phpwebsite/setup"
	einfo "./secure_phpws.sh run apache users"
	einfo
}