mosquitto: fix build
[oi-userland.git] / components / web / php / php-8_2-ext-xdebug / Makefile
blob2587acaba9f8cecd7607d72ebba42562954570e7
1 # Copyright 2011 EveryCity Ltd. All rights reserved.
4 # This file and its contents are supplied under the terms of the
5 # Common Development and Distribution License ("CDDL)". You may
6 # only use this file in accordance with the terms of the CDDL.
8 # A full copy of the text of the CDDL should have accompanied this
9 # source. A copy of the CDDL is also available via the Internet at
10 # http://www.illumos.org/license/CDDL.
14 # Copyright (c) 2016 Sergey Avseyev
15 # Copyright (c) 2019 Alexander Pyhalov
16 # Copyright (c) 2023 Friedrich Kink
19 include ../../../../make-rules/shared-macros.mk
21 COMPONENT_NAME= xdebug
22 COMPONENT_VERSION= 3.3.2
23 COMPONENT_PROJECT_URL= https://pecl.php.net/package/$(COMPONENT_NAME)
24 COMPONENT_SUMMARY= Xdebug is a debugging and productivity extension for PHP
25 COMPONENT_FMRI= web/php-82/extension/php-xdebug
26 COMPONENT_SRC= $(COMPONENT_NAME)-$(COMPONENT_VERSION)
27 COMPONENT_ARCHIVE= $(COMPONENT_SRC).tgz
28 COMPONENT_ARCHIVE_HASH= sha256:15545b8311bedb5e7df08fd90d6653d9bf33629791e8119e70350475df932c55
29 COMPONENT_ARCHIVE_URL= https://pecl.php.net/get/$(COMPONENT_SRC).tgz
30 COMPONENT_LICENSE= BSD style
31 COMPONENT_LICENSE_FILE= LICENSE
32 COMPONENT_CLASSIFICATION= Development/PHP
34 TEST_TARGET= $(NO_TESTS)
35 include $(WS_MAKE_RULES)/common.mk
37 CLEAN_PATHS += package.xml
39 PHP_PREFIX= /usr/php/8.2
40 PHP_SYSCONFDIR= /etc/php/8.2
41 PHP_DATADIR= /var/php/8.2
43 # Configure Options
44 CONFIGURE_OPTIONS = --prefix=$(PHP_PREFIX)
45 CONFIGURE_OPTIONS += --bindir=$(PHP_PREFIX)/bin
46 CONFIGURE_OPTIONS += --sbindir=$(PHP_PREFIX)/bin
47 CONFIGURE_OPTIONS += --libdir=$(PHP_PREFIX)/lib/$(MACH64)
48 CONFIGURE_OPTIONS += --libexecdir=$(PHP_PREFIX)/libexec
49 CONFIGURE_OPTIONS += --includedir=$(PHP_PREFIX)/include
50 CONFIGURE_OPTIONS += --sysconfdir=$(PHP_SYSCONFDIR)
51 CONFIGURE_OPTIONS += --datadir=$(PHP_DATADIR)
52 CONFIGURE_OPTIONS += --mandir=$(PHP_PREFIX)/share/man
53 CONFIGURE_OPTIONS += --localstatedir=$(PHP_DATADIR)
55 ifeq ($(strip $(MACH)),i386)
56 CONFIGURE_OPTIONS += --build=x86_64-pc-solaris2.10
57 else
58 CONFIGURE_OPTIONS += --build=sparcv9-sun-solaris$(SOLARIS_VERSION)
59 endif
60 CONFIGURE_OPTIONS += --with-php-config=$(PHP_PREFIX)/bin/php-config
61 CONFIGURE_OPTIONS += CPPFLAGS="$(CPPFLAGS)"
63 CFLAGS += -I$(PHP_PREFIX)/include
64 CPPFLAGS += $(CFLAGS) -DNAME_MAX=1024
65 LDFLAGS += -L$(PHP_PREFIX)/lib/$(MACH64) -R$(PHP_PREFIX)/lib/$(MACH64)
67 CONFIGURE_SCRIPT = $(@D)/configure
69 COMPONENT_PRE_CONFIGURE_ACTION = cp -R $(SOURCE_DIR)/* $(@D) ; cd $(@D) ; $(PHP_PREFIX)/bin/phpize
70 COMPONENT_INSTALL_ARGS += INSTALL_ROOT=$(PROTO_DIR)
72 # manually added dependencies
73 REQUIRED_PACKAGES += web/php-82/php-common
75 # Auto-generated dependencies
76 REQUIRED_PACKAGES += library/zlib
77 REQUIRED_PACKAGES += system/library
78 REQUIRED_PACKAGES += system/library/math