summaryrefslogtreecommitdiff
path: root/dev-php/onphp/onphp-1.0.11_pre20141124.ebuild
blob: 7c375a2146795655589f1f28aa774852985d5f08 (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-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=6

inherit vcs-snapshot

KEYWORDS="~amd64 ~x86"

DESCRIPTION="onPHP is the LGPL'ed multi-purpose object-oriented PHP framework"
HOMEPAGE="https://github.com/onPHP/onphp-framework/"
SRC_URI="https://github.com/onPHP/onphp-framework/archive/706ddd5a2a33bd65a13c4e3ec8c46c5ce700133c.tar.gz -> ${P}.tar.gz
	doc? ( http://onphp.org/download/${PN}-api-1.0.10.tar.bz2 )
"
LICENSE="LGPL-2"
SLOT="0"
IUSE="doc"

DEPEND=""
RDEPEND="dev-lang/php:*"

src_install() {
	rm doc/LICENSE || die
	dodoc $(find doc -maxdepth 1 -type f -print)
	if use doc ; then
		local HTML_DOCS=( "${WORKDIR}/${PN}-api-1.0.10/" )
		einstalldocs
	fi
	insinto "/usr/share/php/${PN}"
	doins global.inc.php.tpl
	doins -r core main meta
}