summaryrefslogtreecommitdiff
path: root/dev-php/pecl-rrd/pecl-rrd-2.0.3.ebuild
blob: 0348115524357bd07462c3dba379f4c6e32175a3 (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
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI="7"

USE_PHP="php7-3 php7-4 php8-0"

inherit php-ext-pecl-r3

DESCRIPTION="RRDtool bindings for PHP"
LICENSE="BSD"
SLOT="7"
KEYWORDS="~amd64 ~x86"

DEPEND="net-analyzer/rrdtool[graph(-)]"
RDEPEND="${DEPEND}"

#PATCHES=( "${FILESDIR}/${PV}" )
PHP_EXT_ECONF_ARGS=()

src_test() {
	local slot
	for slot in $(php_get_slots); do
		php_init_slot_env "${slot}"
		# Prepare test data
		emake -C tests/data all
		NO_INTERACTION="yes" emake test
	done
}