python/rapidfuzz: update to 3.11.0
[oi-userland.git] / components / web / php / php-8_2-ext-igbinary / Makefile
blobc310641503bbb10960aa32864f3a1ee9b69f0e7c
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) 2023 Friedrich Kink
15 include ../../../../make-rules/shared-macros.mk
17 COMPONENT_NAME= igbinary
18 COMPONENT_VERSION= 3.2.15
19 COMPONENT_SRC= $(COMPONENT_NAME)-$(COMPONENT_VERSION)
20 COMPONENT_PROJECT_URL= https://pecl.php.net/package/$(COMPONENT_NAME)
21 COMPONENT_ARCHIVE= $(COMPONENT_NAME)-$(COMPONENT_VERSION).tgz
22 COMPONENT_ARCHIVE_HASH= sha256:eff099b0343b45fbe9765d4b3d441064ddefbbf9cfb7198487de9bda6b8f4907
23 COMPONENT_ARCHIVE_URL= https://pecl.php.net/get/$(COMPONENT_ARCHIVE)
24 COMPONENT_SUMMARY= php igbinary extension
25 COMPONENT_FMRI= web/php-82/extension/php-igbinary
26 COMPONENT_LICENSE= PHP3.01
27 COMPONENT_LICENSE_FILE= COPYING
28 COMPONENT_CLASSIFICATION= Development/PHP
30 include $(WS_MAKE_RULES)/common.mk
32 COMPONENT_TEST_TARGETS = test
34 COMPONENT_TEST_ENV += NO_INTERACTION=yes
36 COMPONENT_TEST_TRANSFORMS += \
37 '-e "/^make/d" ' \
38 '-e "/^Time taken/d" ' \
39 '-e "/^TEST RESULT SUMMARY$$/,\$$p" ' \
40 '-e "/.*/d" '
42 CLEAN_PATHS += package.xml
44 PHP_PREFIX=/usr/php/8.2
45 PHP_SYSCONFDIR=/etc/php/8.2
46 PHP_DATADIR=/var/php/8.2
48 CONFIGURE_SCRIPT = $(BUILD_DIR)/$(MACH64)/configure
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.64+= --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
71 CPPFLAGS += $(CFLAGS)
72 LDFLAGS += -L$(PHP_PREFIX)/lib/$(MACH64) -R$(PHP_PREFIX)/lib/$(MACH64)
74 CONFIGURE_OPTIONS += CC="$(CC)" CXX="$(CXX)" CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)"
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
82 # Auto-generated dependencies
83 REQUIRED_PACKAGES += system/library