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) 2022 Friedrich Kink
17 include ..
/..
/..
/..
/make-rules
/shared-macros.mk
19 COMPONENT_NAME
= php-8.1
-ext-mongodb
20 COMPONENT_VERSION
= 1.12.0
22 COMPONENT_SUMMARY
= MongoDB driver for PHP
23 COMPONENT_PROJECT_URL
= https
://pecl.php.net
/package
/mongodb
24 COMPONENT_SRC
= mongodb-
$(COMPONENT_VERSION
)
25 COMPONENT_ARCHIVE
= $(COMPONENT_NAME
)-$(COMPONENT_VERSION
).tgz
26 COMPONENT_ARCHIVE_HASH
= sha256
:0d9f670b021288bb6c9b060979f191f1da773d729100673166f38b617e24317e
27 COMPONENT_ARCHIVE_URL
= https
://pecl.php.net
/get/$(COMPONENT_SRC
).tgz
28 COMPONENT_FMRI
= web
/php-81
/extension
/php-mongodb
29 COMPONENT_CLASSIFICATION
= Development
/PHP
30 COMPONENT_LICENSE
= Apache v2.0
31 COMPONENT_LICENSE_FILE
= LICENSE
33 TEST_TARGET
= $(NO_TESTS
)
34 include $(WS_MAKE_RULES
)/common.mk
36 CLEAN_PATHS
+= package.xml package2.xml
38 PHP_PREFIX
=/usr
/php
/8.1
39 PHP_SYSCONFDIR
=/etc
/php
/8.1
40 PHP_DATADIR
=/var
/php
/8.1
43 CONFIGURE_OPTIONS
+= --prefix=$(PHP_PREFIX
)
44 CONFIGURE_OPTIONS
+= --bindir=$(PHP_PREFIX
)/bin
45 CONFIGURE_OPTIONS
+= --sbindir
=$(PHP_PREFIX
)/bin
46 CONFIGURE_OPTIONS
+= --libdir=$(PHP_PREFIX
)/lib
/$(MACH64
)
47 CONFIGURE_OPTIONS
+= --libexecdir
=$(PHP_PREFIX
)/libexec
48 CONFIGURE_OPTIONS
+= --includedir=$(PHP_PREFIX
)/include
49 CONFIGURE_OPTIONS
+= --sysconfdir
=$(PHP_SYSCONFDIR
)
50 CONFIGURE_OPTIONS
+= --datadir=$(PHP_DATADIR
)
51 CONFIGURE_OPTIONS
+= --mandir=$(PHP_PREFIX
)/share
/man
52 CONFIGURE_OPTIONS
+= --localstatedir
=$(PHP_DATADIR
)
54 ifeq ($(strip $(MACH
)),i386
)
55 CONFIGURE_OPTIONS
+= --build
=x86_64-pc-solaris
$(SOLARIS_VERSION
)
57 CONFIGURE_OPTIONS
+= --build
=sparcv9-sun-solaris
$(SOLARIS_VERSION
)
60 CONFIGURE_OPTIONS
+= --with-php-config
=$(PHP_PREFIX
)/bin
/php-config
62 CFLAGS
+= -I
$(PHP_PREFIX
)/include -I
/usr
/include/pcre
64 LDFLAGS
+= -L
$(PHP_PREFIX
)/lib
-R
$(PHP_PREFIX
)/lib
66 # Provide paths for OpenSSL 3.1
67 CFLAGS
+= -I
$(OPENSSL_INCDIR
)
68 LDFLAGS
+= -L
$(OPENSSL_LIBDIR
)
70 CONFIGURE_SCRIPT
= $(@D
)/configure
72 COMPONENT_PRE_CONFIGURE_ACTION
= cp
-R
$(SOURCE_DIR
)/* $(@D
) ; cd
$(@D
) ; $(PHP_PREFIX
)/bin
/phpize
73 COMPONENT_INSTALL_ARGS
+= INSTALL_ROOT
=$(PROTO_DIR
)
75 # manually added dependencies
76 REQUIRED_PACKAGES
+= web
/php-81
/php-common
77 REQUIRED_PACKAGES
+= library
/pcre2
79 # Auto-generated dependencies
80 REQUIRED_PACKAGES
+= $(ICU_LIBRARY_PKG
)
81 REQUIRED_PACKAGES
+= $(OPENSSL_PKG
)
82 REQUIRED_PACKAGES
+= compress
/zstd
83 REQUIRED_PACKAGES
+= library
/zlib
84 REQUIRED_PACKAGES
+= system
/library