FreeBSD Bugzilla – Attachment 251307 Details for
Bug 272727
net/boinc-client: configure alternate platform according to ${ARCH}
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
[PATCH] net/boinc-client: configure alternate platform according to ${ARCH}
0001-net-boinc-client-configure-alternate-platform-accord.patch (text/plain), 1.78 KB, created by
Älven
on 2024-06-09 08:36:56 UTC
(
hide
)
Description:
[PATCH] net/boinc-client: configure alternate platform according to ${ARCH}
Filename:
MIME Type:
Creator:
Älven
Created:
2024-06-09 08:36:56 UTC
Size:
1.78 KB
patch
obsolete
>From def8d8467133abb5cb9ccb113c18487b460ed9e9 Mon Sep 17 00:00:00 2001 >From: Ãlven <alster@vinterdalen.se> >Date: Sun, 9 Jun 2024 12:32:34 +0400 >Subject: [PATCH] net/boinc-client: configure alternate platform according to > ${ARCH} > >https://boinc.berkeley.edu/trac/wiki/BuildSystem >https://boinc.berkeley.edu/trac/wiki/BoincPlatforms >--- > net/boinc-client/Makefile | 16 +++++++++++++++- > 1 file changed, 15 insertions(+), 1 deletion(-) > >diff --git a/net/boinc-client/Makefile b/net/boinc-client/Makefile >index 755921c380d1..eb99a4ae190d 100644 >--- a/net/boinc-client/Makefile >+++ b/net/boinc-client/Makefile >@@ -1,6 +1,7 @@ > PORTNAME= boinc-client > DISTVERSIONPREFIX= client_release/8.0/ > DISTVERSION= 8.0.2 >+PORTREVISION= 1 > CATEGORIES= net > > MAINTAINER= ler@FreeBSD.org >@@ -59,7 +60,7 @@ CLIENT_RUN_DEPENDS= ${LOCALBASE}/share/certs/ca-root-nss.crt:security/ca_root_n > CLIENT_USE= RC_SUBR=boinc-client > CLIENT_CONFIGURE_ENABLE= client > LINUX_USES= linux >-LINUX_CONFIGURE_ON= --with-boinc-alt-platform=x86_64-pc-linux-gnu >+LINUX_CONFIGURE_ON= --with-boinc-alt-platform=${BOINC_ALT_PLATFORM} > MANAGER_LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \ > libnotify.so:devel/libnotify \ > libsqlite3.so:databases/sqlite3 \ >@@ -85,6 +86,19 @@ BOINC_CLIENT_USER?= boinc > > .include <bsd.port.options.mk> > >+# https://boinc.berkeley.edu/trac/wiki/BoincPlatforms >+.if ${ARCH} == "amd64" >+BOINC_ALT_PLATFORM= x86_64-pc-linux-gnu >+.elif ${ARCH} == "aarch64" >+BOINC_ALT_PLATFORM= aarch64-unknown-linux-gnu >+.elif ${ARCH} == "i386" >+BOINC_ALT_PLATFORM= i686-pc-linux-gnu >+.elif ${ARCH} == "powerpc" >+BOINC_ALT_PLATFORM= powerpc-linux-gnu >+.elif ${ARCH} == "powerpc64" >+BOINC_ALT_PLATFORM= ppc64-linux-gnu >+.endif >+ > .if ${PORT_OPTIONS:MMANAGER} > WX_CONF_ARGS= absolute > SUB_LIST+= OPTION_MANAGER="true" >-- >2.45.2 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 272727
:
243618
|
243858
|
243865
|
251307
|
257076
|
257103
|
257157