FreeBSD Bugzilla – Attachment 252221 Details for
Bug 280403
[PATCH] games/foobillard: works only on x64 and x86
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
git patch, limit to x86 and x64 platform
0001-Support-only-i386-and-x64-platforms.patch (text/plain), 2.31 KB, created by
thomas
on 2024-07-22 09:19:45 UTC
(
hide
)
Description:
git patch, limit to x86 and x64 platform
Filename:
MIME Type:
Creator:
thomas
Created:
2024-07-22 09:19:45 UTC
Size:
2.31 KB
patch
obsolete
>From a3d26a42ba53654eb12b49c438fa6ce8b0870148 Mon Sep 17 00:00:00 2001 >From: User Turbo <turbo@conversation.bsdunix.ch> >Date: Mon, 22 Jul 2024 09:12:55 +0000 >Subject: [PATCH] Support only i386 and x64 platforms > >--- > games/foobillard/Makefile | 33 +++++++++++++++++++-------------- > 1 file changed, 19 insertions(+), 14 deletions(-) > >diff --git a/games/foobillard/Makefile b/games/foobillard/Makefile >index 34eb467e2288..036256862492 100644 >--- a/games/foobillard/Makefile >+++ b/games/foobillard/Makefile >@@ -1,6 +1,6 @@ > PORTNAME= foobillard > PORTVERSION= 3.0a >-PORTREVISION= 13 >+PORTREVISION= 14 > CATEGORIES= games > MASTER_SITES= SF/${PORTNAME}/FooBillard-Sources/ > >@@ -11,11 +11,13 @@ WWW= https://foobillard.sourceforge.net/ > LICENSE= GPLv2 > LICENSE_FILE= ${WRKSRC}/COPYING > >-LIB_DEPENDS= libpng.so:graphics/png \ >- libfreetype.so:print/freetype2 >+ONLY_FOR_ARCHS= i386 amd64 >+ >+LIB_DEPENDS= libfreetype.so:print/freetype2 \ >+ libpng.so:graphics/png > > USES= gmake localbase:ldflags pkgconfig xorg >-USE_XORG= xaw ice >+USE_XORG= ice xaw > > GNU_CONFIGURE= yes > >@@ -26,25 +28,28 @@ DESKTOP_ENTRIES= "Foobillard" \ > "Game;Simulation;" \ > false > >-OPTIONS_DEFINE= SDL NVIDIA_BUMPREF >+OPTIONS_DEFINE= NVIDIA_BUMPREF SDL > > NVIDIA_BUMPREF_DESC= NVidia extensions >-SDL_DESC= SDL instead of glut >+SDL_DESC= SDL instead of glut > > NVIDIA_BUMPREF_CONFIGURE_OFF= --disable-nvidia >-NVIDIA_BUMPREF_CFLAGS_OFF= -DGL_AMD_gpu_shader_int64=1 -DGLuint64EXT=uint64_t -DGLint64EXT=int64_t -UGL_VERTEX_PROGRAM_NV -DGL_NV_vertex_program=1 >-SDL_USES= sdl >-SDL_USE= SDL=sdl >-SDL_CONFIGURE_ON= --enable-SDL >-SDL_USES_OFF= gl >-SDL_USE_OFF= GL=glut >-SDL_CONFIGURE_OFF= --enable-glut >+NVIDIA_BUMPREF_CFLAGS_OFF= -DGL_AMD_gpu_shader_int64=1 \ >+ -DGLuint64EXT=uint64_t -DGLint64EXT=int64_t \ >+ -UGL_VERTEX_PROGRAM_NV -DGL_NV_vertex_program=1 >+SDL_USES= sdl >+SDL_USE= SDL=sdl >+SDL_CONFIGURE_ON= --enable-SDL >+SDL_USES_OFF= gl >+SDL_USE_OFF= GL=glut >+SDL_CONFIGURE_OFF= --enable-glut > > FREETYPE_CONFIG?= pkg-config freetype2 > > .include <bsd.port.options.mk> > >-.if ${OPSYS} == FreeBSD && ( ${OSVERSION} >= 1400091 || ( ${OSVERSION} >= 1302507 && ${OSVERSION} < 1400000 )) >+.if ${OPSYS} == FreeBSD && (${OSVERSION} >= 1400091 || (${OSVERSION} >= 1302507 && \ >+ ${OSVERSION} < 1400000)) > CFLAGS+= -Wno-error=incompatible-function-pointer-types > .endif > >-- >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 280403
:
252221
|
252229