1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-18 00:10:04 +00:00

audio/mumble: replace local patch with upstream

Patch for correct build 32bit overlay library

Approved by:	arrowd (mentor, implicit)
MFH:		2024Q1
This commit is contained in:
Vladimir Druzenko 2024-01-18 14:42:57 +03:00
parent b29347d0d5
commit 22f3745308
3 changed files with 4 additions and 18 deletions

View File

@ -6,7 +6,7 @@ MASTER_SITES= https://github.com/${PORTNAME}-voip/${PORTNAME}/releases/download/
PATCH_SITES= https://github.com/${PORTNAME}-voip/${PORTNAME}/commit/
PATCHFILES= 952dfaf4983097d7b9c9b5d9f5b01ffeb6d3463d.patch:-p1 # Fix detection of unbundled GSL
#PATCHFILES+= 589bfbfd634925b47b3a812745bc5a423b7f4285.patch:-p1 # Install 32-bit lib on FreeBSD
PATCHFILES+= 589bfbfd634925b47b3a812745bc5a423b7f4285.patch:-p1 # Install 32-bit lib on FreeBSD
MAINTAINER= vvd@FreeBSD.org
COMMENT= Voice chat software primarily intended for use while gaming

View File

@ -1,5 +1,7 @@
TIMESTAMP = 1692992913
TIMESTAMP = 1705577723
SHA256 (mumble-1.5.517.tar.gz) = 8efd06a0f47ebfe27735f7575ba0becfb21d0f400a5082202dbbd998ab8351de
SIZE (mumble-1.5.517.tar.gz) = 12091432
SHA256 (952dfaf4983097d7b9c9b5d9f5b01ffeb6d3463d.patch) = 3316fd3cab0d797d78fa34df358892699db0bde6c45c61a87f095e514c2e5575
SIZE (952dfaf4983097d7b9c9b5d9f5b01ffeb6d3463d.patch) = 1138
SHA256 (589bfbfd634925b47b3a812745bc5a423b7f4285.patch) = acd9f69856df9218c5a5e6eb8a70eaec3ae7bca0ce1c1f7c59e955db638523cf
SIZE (589bfbfd634925b47b3a812745bc5a423b7f4285.patch) = 923

View File

@ -1,16 +0,0 @@
Install the 32-bit overlay library on FreeBSD-amd64
--- overlay_gl/CMakeLists.txt.orig
+++ overlay_gl/CMakeLists.txt
@@ -96,6 +96,11 @@ if(NOT APPLE)
"-ldl"
"-lrt"
)
+ endif()
+ endif()
+
+ if(${CMAKE_SYSTEM_NAME} STREQUAL "Linux" OR ${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD")
+ if(TARGET overlay_gl_x86)
# install 32bit overlay library
install(TARGETS overlay_gl_x86 LIBRARY DESTINATION "${MUMBLE_INSTALL_LIBDIR}")
endif()