gtk+3: fix dependencies for new gnome/accessibility/at-spi2-core
[oi-userland.git] / components / web / php / php-8_2-ext-mongodb / Makefile
blob9f3503a1c504dca0a9fcbd0f875e891e48643427
2 # This file and its contents are supplied under the terms of the
3 # Common Development and Distribution License ("CDDL)". You may
4 # only use this file in accordance with the terms of the CDDL.
6 # A full copy of the text of the CDDL should have accompanied this
7 # source. A copy of the CDDL is also available via the Internet at
8 # http://www.illumos.org/license/CDDL.
12 # Copyright (c) 2019 Alexander Pyhalov
13 # Copyright (c) 2023 Friedrich Kink
16 OPENSSL_VERSION= 3.1
17 include ../../../../make-rules/shared-macros.mk
19 COMPONENT_NAME= php-8.2-ext-mongodb
20 COMPONENT_VERSION= 1.17.2
21 COMPONENT_SUMMARY= MongoDB driver for PHP
22 COMPONENT_PROJECT_URL= https://pecl.php.net/package/mongodb
23 COMPONENT_SRC= mongodb-$(COMPONENT_VERSION)
24 COMPONENT_ARCHIVE= $(COMPONENT_NAME)-$(COMPONENT_VERSION).tgz
25 COMPONENT_ARCHIVE_HASH= sha256:84081b780d48af884d47f0339800c3666c664c66f0035c66d43a34a10fb67376
26 COMPONENT_ARCHIVE_URL= https://pecl.php.net/get/$(COMPONENT_SRC).tgz
27 COMPONENT_FMRI= web/php-82/extension/php-mongodb
28 COMPONENT_CLASSIFICATION= Development/PHP
29 COMPONENT_LICENSE= Apache v2.0
30 COMPONENT_LICENSE_FILE= LICENSE
32 include $(WS_MAKE_RULES)/common.mk
34 COMPONENT_TEST_TARGETS = test
36 COMPONENT_TEST_ENV += NO_INTERACTION=yes
38 COMPONENT_TEST_TRANSFORMS += \
39 '-e "/^make/d" ' \
40 '-e "/^Time taken/d" ' \
41 '-e "/^TEST RESULT SUMMARY$$/,\$$p" ' \
42 '-e "/.*/d" '
44 CLEAN_PATHS += package.xml package2.xml
46 PHP_PREFIX=/usr/php/8.2
47 PHP_SYSCONFDIR=/etc/php/8.2
48 PHP_DATADIR=/var/php/8.2
50 # Configure Options
51 CONFIGURE_OPTIONS += --prefix=$(PHP_PREFIX)
52 CONFIGURE_OPTIONS += --bindir=$(PHP_PREFIX)/bin
53 CONFIGURE_OPTIONS += --sbindir=$(PHP_PREFIX)/bin
54 CONFIGURE_OPTIONS += --libdir=$(PHP_PREFIX)/lib/$(MACH64)
55 CONFIGURE_OPTIONS += --libexecdir=$(PHP_PREFIX)/libexec
56 CONFIGURE_OPTIONS += --includedir=$(PHP_PREFIX)/include
57 CONFIGURE_OPTIONS += --sysconfdir=$(PHP_SYSCONFDIR)
58 CONFIGURE_OPTIONS += --datadir=$(PHP_DATADIR)
59 CONFIGURE_OPTIONS += --mandir=$(PHP_PREFIX)/share/man
60 CONFIGURE_OPTIONS += --localstatedir=$(PHP_DATADIR)
62 ifeq ($(strip $(MACH)),i386)
63 CONFIGURE_OPTIONS += --build=x86_64-pc-solaris$(SOLARIS_VERSION)
64 else
65 CONFIGURE_OPTIONS += --build=sparcv9-sun-solaris$(SOLARIS_VERSION)
66 endif
68 CONFIGURE_OPTIONS += --with-php-config=$(PHP_PREFIX)/bin/php-config
70 CFLAGS += -I$(PHP_PREFIX)/include -I/usr/include/pcre -D__EXTENSIONS__ -D__SOLARIS__
71 CPPFLAG += $(CFLAGS)
72 LDFLAGS += -L$(PHP_PREFIX)/lib -R$(PHP_PREFIX)/lib
74 CONFIGURE_SCRIPT = $(@D)/configure
76 COMPONENT_PRE_CONFIGURE_ACTION = cp -R $(SOURCE_DIR)/* $(@D) ; cd $(@D) ; $(PHP_PREFIX)/bin/phpize
77 COMPONENT_INSTALL_ARGS += INSTALL_ROOT=$(PROTO_DIR)
79 # manually added dependencies
80 REQUIRED_PACKAGES += web/php-82/php-common
81 REQUIRED_PACKAGES += library/pcre2
83 # Auto-generated dependencies
84 REQUIRED_PACKAGES += compress/zstd
85 REQUIRED_PACKAGES += library/security/openssl-31
86 REQUIRED_PACKAGES += library/zlib
87 REQUIRED_PACKAGES += system/library