summaryrefslogtreecommitdiff
blob: db87f383c39d1e94b895777f2b9862718fac75ff (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-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

inherit webapp depend.php

MY_P="${PN}-${PV/_p/.r}"
DESCRIPTION="a component-based and event-driven web programming framework"
HOMEPAGE="http://www.pradosoft.com/"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.zip"

LICENSE="BSD" # http://www.pradosoft.com/license/
KEYWORDS="~amd64 ~x86"
IUSE="doc"

DEPEND="app-arch/unzip"
RDEPEND="virtual/httpd-cgi"

S=${WORKDIR}/${MY_P}

need_php5

src_install() {
	webapp_src_preinst

	dohtml -r docs/manual

	cp -r framework/* "${D}${MY_HTDOCSDIR}"
	cp framework/.htaccess "${D}${MY_HTDOCSDIR}"

	webapp_src_install
}