summaryrefslogtreecommitdiff
blob: db3be2b6691f0bddd0d17a6bec546414af7b5658 (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
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=6

inherit php-pear-r2

DESCRIPTION="Provides methods for creating, validating, processing HTML forms"
LICENSE="PHP-3.01"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="examples"

RDEPEND=">=dev-php/PEAR-HTML_Common-1.2.1-r1"

src_install() {
	local HTML_DOCS
	insinto /usr/share/php/HTML
	doins -r QuickForm.php QuickForm
	php-pear-r2_install_packagexml
	if use examples; then
		HTML_DOCS=( docs/rules-custom.php docs/rules-builtin.php docs/groups.php
			docs/formrule.php docs/filters.php docs/elements.php docs/renderers )
	fi
	einstalldocs
}