blob: d9980974f571ae9e6bb58ce9dc07a26efc5b1cea (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
# Copyright 2021-2024 BaldEagleOS Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PHP_EXT_NAME="event"
PHP_EXT_INI="yes"
PHP_EXT_ZENDEXT="no"
DOCS=( README.md )
USE_PHP="php8-1 php8-2 php8-3 php8-4 php8-5"
#Unique to this release
MY_P="${PN/pecl-/}-${PV/_p/r}"
PHP_EXT_PECL_FILENAME="${MY_P}.tgz"
inherit php-ext-pecl-r3
KEYWORDS="~amd64 ~ia64 ~x86"
LICENSE="PHP-3.01"
DESCRIPTION="PHP wrapper for libevent2"
SLOT="0"
DEPEND="
>=dev-libs/libevent-2.0.2
ssl? (
!libressl? ( dev-libs/openssl:0= )
libressl? ( dev-libs/libressl:= )
)
php_targets_php8-1? ( dev-lang/php:8.1[sockets(-)?] )
php_targets_php8-2? ( dev-lang/php:8.2[sockets(-)?] )
php_targets_php8-3? ( dev-lang/php:8.3[sockets(-)?] )
php_targets_php8-4? ( dev-lang/php:8.4[sockets(-)?] )
php_targets_php8-5? ( dev-lang/php:8.5[sockets(-)?] )
"
RDEPEND="
${DEPEND}
!dev-php/pecl-libevent"
IUSE="debug examples +extra libressl +sockets +ssl threads"
#Unique to this release
S="${WORKDIR}/${MY_P}"
PHP_EXT_S="${S}"
src_configure() {
local PHP_EXT_ECONF_ARGS=(
--with-event-core
$(use_enable debug event-debug)
$(use_with extra event-extra)
$(use_with ssl event-openssl)
$(use_with threads event-pthreads)
$(use_enable sockets event-sockets)
)
php-ext-source-r3_src_configure
}
src_test() {
local slot
for slot in $(php_get_slots); do
php_init_slot_env "${slot}"
SKIP_ONLINE_TESTS="yes" NO_INTERACTION="yes" emake test
done
}
|