gtk+3: fix dependencies for new gnome/accessibility/at-spi2-core
[oi-userland.git] / components / web / php / php-8_3-ext-oauth / Makefile
blob337ff0d1385320f73a4f74705a43f772b731fb34
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) 2024 Friedrich Kink
15 include ../../../../make-rules/shared-macros.mk
17 COMPONENT_NAME= php-8.3-ext-oauth
18 COMPONENT_REAL_NAME= oauth
19 COMPONENT_VERSION= 2.0.9
20 COMPONENT_FMRI= web/php-83/extension/php-oauth
21 COMPONENT_SUMMARY= oauth consumer extension
22 COMPONENT_DESCRIPTION= OAuth is an authorization protocol built on top of HTTP which \
23 allows applications to securely access data without having to \
24 store usernames and passwords.
25 COMPONENT_PROJECT_URL= https://pecl.php.net/package/$(COMPONENT_REAL_NAME)
26 COMPONENT_SRC= $(COMPONENT_REAL_NAME)-$(COMPONENT_VERSION)
27 COMPONENT_ARCHIVE= $(COMPONENT_NAME)-$(COMPONENT_VERSION).tgz
28 COMPONENT_ARCHIVE_HASH= sha256:05fe20322256db62e7bcb5a45693ebc59829eae264f855d5b1438003ab34efe1
29 COMPONENT_ARCHIVE_URL= https://pecl.php.net/get/$(COMPONENT_SRC).tgz
30 COMPONENT_LICENSE= BSD
31 COMPONENT_LICENSE_FILE= LICENSE
32 COMPONENT_CLASSIFICATION= Development/PHP
34 include $(WS_MAKE_RULES)/common.mk
36 COMPONENT_TEST_TARGETS = test
38 COMPONENT_TEST_ENV += NO_INTERACTION=yes
40 COMPONENT_TEST_TRANSFORMS += \
41 '-e "/^make/d" ' \
42 '-e "/^Time taken/d" ' \
43 '-e "/^TEST RESULT SUMMARY$$/,\$$p" ' \
44 '-e "/.*/d" '
46 CLEAN_PATHS += package.xml
48 PHP_PREFIX=/usr/php/8.3
49 PHP_SYSCONFDIR=/etc/php/8.3
50 PHP_DATADIR=/var/php/8.3
52 COMPONENT_PRE_CONFIGURE_ACTION = cp -R $(SOURCE_DIR)/* $(@D) ; cd $(@D) ; $(PHP_PREFIX)/bin/phpize
53 CONFIGURE_SCRIPT = $(@D)/configure
54 COMPONENT_INSTALL_ARGS += INSTALL_ROOT=$(PROTO_DIR)
56 CONFIGURE_OPTIONS = --prefix=$(PHP_PREFIX)
57 CONFIGURE_OPTIONS += --bindir=$(PHP_PREFIX)/bin
58 CONFIGURE_OPTIONS += --sbindir=$(PHP_PREFIX)/bin
59 CONFIGURE_OPTIONS += --libdir=$(PHP_PREFIX)/lib/$(MACH64)
60 CONFIGURE_OPTIONS += --libexecdir=$(PHP_PREFIX)/libexec
61 CONFIGURE_OPTIONS += --includedir=$(PHP_PREFIX)/include
62 CONFIGURE_OPTIONS += --sysconfdir=$(PHP_SYSCONFDIR)
63 CONFIGURE_OPTIONS += --datadir=$(PHP_DATADIR)
64 CONFIGURE_OPTIONS += --mandir=$(PHP_PREFIX)/share/man
65 CONFIGURE_OPTIONS += --localstatedir=$(PHP_DATADIR)
66 CONFIGURE_OPTIONS += --enable-oauth
68 ifeq ($(strip $(MACH)),i386)
69 CONFIGURE_OPTIONS += --build=x86_64-pc-solaris$(SOLARIS_VERSION)
70 else
71 CONFIGURE_OPTIONS += --build=sparcv9-sun-solaris$(SOLARIS_VERSION)
72 endif
73 CONFIGURE_OPTIONS += --with-php-config=$(PHP_PREFIX)/bin/php-config
75 CFLAGS += -I/usr/include/pcre -I$(PHP_PREFIX)/include
76 CPPFLAGS += $(CFLAGS)
77 LDFLAGS += -L$(PHP_PREFIX)/lib/$(MACH64) -R$(PHP_PREFIX)/lib/$(MACH64)
79 # manually added dependencies
80 REQUIRED_PACKAGES += web/php-83/php-common
82 # Auto-generated dependencies
83 REQUIRED_PACKAGES += system/library
84 REQUIRED_PACKAGES += web/curl