pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

electron32: fix platform.mk PKGBASE defined after including bsd.pkg.mk, so first .if statement of PKG_FAIL_REASON check was always true, and cause build fail for electron32



Module Name:	pkgsrc-wip
Committed By:	kikadf <kikadf.01%gmail.com@localhost>
Pushed By:	kikadf
Date:		Mon Mar 24 09:42:21 2025 +0100
Changeset:	0cadc0c734bc8487ccfb2eec87e0d7e16181f0e3

Modified Files:
	electron32/platform.mk

Log Message:
electron32: fix platform.mk
PKGBASE defined after including bsd.pkg.mk,
so first .if statement of PKG_FAIL_REASON check
was always true, and cause build fail for electron32

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=0cadc0c734bc8487ccfb2eec87e0d7e16181f0e3

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 electron32/platform.mk | 15 +++++++++------
 1 file changed, 9 insertions(+), 6 deletions(-)

diffs:
diff --git a/electron32/platform.mk b/electron32/platform.mk
index bf74fc491e..8e0e6cd6a2 100644
--- a/electron32/platform.mk
+++ b/electron32/platform.mk
@@ -15,10 +15,15 @@ ELECTRON=		electron${ELECTRON_MAJOR}
 # - "dependency" if the package uses electron as dependency
 USE_ELECTRON?=		electronpkg
 
-.if !empty(USE_ELECTRON:Melectronpkg) && empty(PKGBASE:M${ELECTRON})
-PKG_FAIL_REASON+=	"USE_ELECTRON not defined. Should be \"bundled\" or \"dependency\"."
-.elif !empty(PKGBASE:M${ELECTRON}) && empty(USE_ELECTRON:Melectronpkg)
-PKG_FAIL_REASON+=	"USE_ELECTRON is defined for ${PKGBASE} package."
+.include "../../mk/bsd.prefs.mk"
+
+PACKAGE_NAME=		${PKGPATH:C/.*\///}
+
+.if !empty(USE_ELECTRON:Melectronpkg) && empty(PACKAGE_NAME:M${ELECTRON})
+PKG_FAIL_REASON+=	"USE_ELECTRON is not defined for ${PKGPATH}."
+PKG_FAIL_REASON+=	"Should be \"bundled\" or \"dependency\"."
+.elif !empty(PACKAGE_NAME:M${ELECTRON}) && empty(USE_ELECTRON:Melectronpkg)
+PKG_FAIL_REASON+=	"USE_ELECTRON is defined for ${PKGPATH} package."
 .endif
 
 TOOL_DEPENDS+=		nodejs-${NODE_VERSION_DEFAULT}.*:../../lang/nodejs${NODE_VERSION_DEFAULT}
@@ -28,8 +33,6 @@ DEPENDS+=		${ELECTRON}>=${ELECTRON_VER}:../../wip/${ELECTRON}
 TOOL_DEPENDS+=		${ELECTRON}>=${ELECTRON_VER}:../../wip/${ELECTRON}
 .endif
 
-.include "../../mk/bsd.prefs.mk"
-
 .for c_arch in x86_64 aarch64
 ONLY_FOR_PLATFORM+=	NetBSD-1[0-9].*-${c_arch}
 ONLY_FOR_PLATFORM+=	Linux-*-${c_arch}


Home | Main Index | Thread Index | Old Index