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) 2016 Sergey Avseyev
13 # Copyright (c) 2019 Alexander Pyhalov
14 # Copyright (c) 2022 Friedrich Kink
18 include ..
/..
/..
/..
/make-rules
/shared-macros.mk
20 COMPONENT_NAME
= php-8.1
-ext-memcached
21 COMPONENT_REAL_NAME
= memcached
22 COMPONENT_VERSION
= 3.1.5
24 COMPONENT_FMRI
= web
/php-81
/extension
/php-memcached
25 COMPONENT_SUMMARY
= PHP extension for interfacing with memcached via libmemcached library
26 COMPONENT_PROJECT_URL
= https
://pecl.php.net
/package
/$(COMPONENT_REAL_NAME
)
27 COMPONENT_SRC
= $(COMPONENT_REAL_NAME
)-$(COMPONENT_VERSION
)
28 COMPONENT_ARCHIVE
= $(COMPONENT_NAME
)-$(COMPONENT_VERSION
).tgz
29 COMPONENT_ARCHIVE_HASH
= sha256
:b288e45f839593e16c4d8508b241de51a86df4f7322153e6becb9e1c819021fd
30 COMPONENT_ARCHIVE_URL
= https
://pecl.php.net
/get/$(COMPONENT_SRC
).tgz
31 COMPONENT_SUMMARY
= PHP extension for interfacing with memcached via libmemcached library
32 COMPONENT_LICENSE
= PHP3.01
33 COMPONENT_LICENSE_FILE
= LICENSE
34 COMPONENT_CLASSIFICATION
= Development
/PHP
36 TEST_TARGET
= $(NO_TESTS
)
38 include $(WS_MAKE_RULES
)/common.mk
40 CLEAN_PATHS
+= package.xml
42 PHP_PREFIX
=/usr
/php
/8.1
43 PHP_SYSCONFDIR
=/etc
/php
/8.1
44 PHP_DATADIR
=/var
/php
/8.1
46 COMPONENT_PRE_CONFIGURE_ACTION
= cp
-R
$(SOURCE_DIR
)/* $(@D
) ; cd
$(@D
) ; $(PHP_PREFIX
)/bin
/phpize
47 CONFIGURE_SCRIPT
= $(@D
)/configure
48 COMPONENT_INSTALL_ARGS
+= INSTALL_ROOT
=$(PROTO_DIR
)
50 CONFIGURE_OPTIONS
= --prefix=$(PHP_PREFIX
)
51 CONFIGURE_OPTIONS
+= --bindir=$(PHP_PREFIX
)/bin
52 CONFIGURE_OPTIONS
+= --sbindir
=$(PHP_PREFIX
)/bin
53 CONFIGURE_OPTIONS
+= --libdir=$(PHP_PREFIX
)/lib
/$(MACH64
)
54 CONFIGURE_OPTIONS
+= --libexecdir
=$(PHP_PREFIX
)/libexec
55 CONFIGURE_OPTIONS
+= --includedir=$(PHP_PREFIX
)/include
56 CONFIGURE_OPTIONS
+= --sysconfdir
=$(PHP_SYSCONFDIR
)
57 CONFIGURE_OPTIONS
+= --datadir=$(PHP_DATADIR
)
58 CONFIGURE_OPTIONS
+= --mandir=$(PHP_PREFIX
)/share
/man
59 CONFIGURE_OPTIONS
+= --localstatedir
=$(PHP_DATADIR
)
60 CONFIGURE_OPTIONS
+= --disable-memcached-sasl
62 ifeq ($(strip $(MACH
)),i386
)
63 CONFIGURE_OPTIONS
+= --build
=x86_64-pc-solaris
$(SOLARIS_VERSION
)
65 CONFIGURE_OPTIONS
.64+= --build
=sparcv9-sun-solaris
$(SOLARIS_VERSION
)
68 CONFIGURE_OPTIONS
+= --with-php-config
=$(PHP_PREFIX
)/bin
/php-config
70 CFLAGS
+= -I
/usr
/include -I
$(PHP_PREFIX
)/include
72 LDFLAGS
+= -L
$(PHP_PREFIX
)/lib
/$(MACH64
) -R
$(PHP_PREFIX
)/lib
/$(MACH64
)
74 # manually added dependencies
75 REQUIRED_PACKAGES
+= web
/php-81
/php-common
76 REQUIRED_PACKAGES
+= web
/php-81
/extension
/php-memcache
78 # Auto-generated dependencies
79 REQUIRED_PACKAGES
+= library
/libmemcached
80 REQUIRED_PACKAGES
+= library
/zlib
81 REQUIRED_PACKAGES
+= system
/library