git: 81bebc0831d1 - 2025Q1 - lang/php84: Update version 8.4.3=>8.4.4

From: Torsten Zuehlsdorff <tz_at_FreeBSD.org>
Date: Sat, 22 Mar 2025 09:06:53 UTC
The branch 2025Q1 has been updated by tz:

URL: https://cgit.FreeBSD.org/ports/commit/?id=81bebc0831d1cc533acd88f3efb0dea16fdfb30f

commit 81bebc0831d1cc533acd88f3efb0dea16fdfb30f
Author:     Muhammad Moinur Rahman <bofh@FreeBSD.org>
AuthorDate: 2025-02-14 14:13:47 +0000
Commit:     Torsten Zuehlsdorff <tz@FreeBSD.org>
CommitDate: 2025-03-22 09:05:42 +0000

    lang/php84: Update version 8.4.3=>8.4.4
    
    - Make rc script prefix safe for profiles [1]
    
    Changelog: https://www.php.net/ChangeLog-8.php#8.4.4
    
    PR:             284468 [1]
    Reported by:    andrew@neptune-one.net [1]
    
    (cherry picked from commit bcd490923e01256b14c1f1f2a7bf627ba722951f)
---
 lang/php84/Makefile         | 2 +-
 lang/php84/distinfo         | 6 +++---
 lang/php84/files/php_fpm.in | 2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/lang/php84/Makefile b/lang/php84/Makefile
index 8418c4b27752..f87b538be573 100644
--- a/lang/php84/Makefile
+++ b/lang/php84/Makefile
@@ -1,5 +1,5 @@
 PORTNAME=	php84
-DISTVERSION=	8.4.2
+DISTVERSION=	8.4.4
 PORTREVISION?=	0
 CATEGORIES?=	lang devel www
 MASTER_SITES=	PHP/distributions
diff --git a/lang/php84/distinfo b/lang/php84/distinfo
index 528f351c4b06..3b362c36b7eb 100644
--- a/lang/php84/distinfo
+++ b/lang/php84/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1734729078
-SHA256 (php-8.4.2.tar.xz) = 92636453210f7f2174d6ee6df17a5811368f556a6c2c2cbcf019321e36456e01
-SIZE (php-8.4.2.tar.xz) = 13559320
+TIMESTAMP = 1739516564
+SHA256 (php-8.4.4.tar.xz) = 05a6c9a2cc894dd8be719ecab221b311886d5e0c02cb6fac648dd9b3459681ac
+SIZE (php-8.4.4.tar.xz) = 13588560
diff --git a/lang/php84/files/php_fpm.in b/lang/php84/files/php_fpm.in
index 12253b537b2e..104dcf10261a 100644
--- a/lang/php84/files/php_fpm.in
+++ b/lang/php84/files/php_fpm.in
@@ -53,7 +53,7 @@ else
         if [ "x${php_fpm_profiles}" != "x" -a "x$1" != "x" ]; then
                 for profile in ${php_fpm_profiles}; do
                         echo "===> php_fpm profile: ${profile}"
-                        /usr/local/etc/rc.d/php-fpm $1 ${profile}
+                        %%PREFIX%%/etc/rc.d/php-fpm $1 ${profile}
                         retcode="$?"
                         if [ "0${retcode}" -ne 0 ]; then
                                 failed="${profile} (${retcode}) ${failed:-}"