mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-05-01 05:08:10 -07:00
23 lines
523 B
Bash
23 lines
523 B
Bash
# Copyright 1999-2023 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit php-pear-r2
|
|
|
|
DESCRIPTION="Creating, validating, processing HTML forms methods (PHP5 optimize)"
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
|
|
IUSE="examples"
|
|
|
|
DEPEND=">=dev-lang/php-5.2.0:*"
|
|
RDEPEND="${DEPEND}
|
|
>=dev-php/PEAR-HTML_Common2-2.1.0"
|
|
|
|
src_install() {
|
|
HTML_DOCS=( data/quickform.css data/js )
|
|
use examples && HTML_DOCS+=( docs/examples )
|
|
php-pear-r2_src_install
|
|
}
|