summaryrefslogtreecommitdiff
path: root/audio
diff options
context:
space:
mode:
Diffstat (limited to 'audio')
-rw-r--r--audio/ft2-clone/Makefile2
-rw-r--r--audio/ft2-clone/distinfo6
-rw-r--r--audio/ft2-clone/files/patch-src_ft2__unicode.c38
-rw-r--r--audio/icecast/Makefile2
-rw-r--r--audio/libopenmpt/Makefile2
-rw-r--r--audio/libopenmpt/distinfo6
-rw-r--r--audio/mac/Makefile2
-rw-r--r--audio/mac/distinfo6
-rw-r--r--audio/mac/files/patch-CMakeLists.txt23
-rw-r--r--audio/pt2-clone/Makefile2
-rw-r--r--audio/pt2-clone/distinfo6
-rw-r--r--audio/py-pyradio/Makefile2
-rw-r--r--audio/py-pyradio/distinfo6
-rw-r--r--audio/py-pyradio/files/patch-pyradio_main.py12
-rw-r--r--audio/schismtracker/Makefile2
-rw-r--r--audio/schismtracker/distinfo6
-rw-r--r--audio/sonicradio/Makefile6
-rw-r--r--audio/sonicradio/distinfo10
18 files changed, 86 insertions, 53 deletions
diff --git a/audio/ft2-clone/Makefile b/audio/ft2-clone/Makefile
index 03a9d9368154..78b55b200736 100644
--- a/audio/ft2-clone/Makefile
+++ b/audio/ft2-clone/Makefile
@@ -1,6 +1,6 @@
PORTNAME= ft2-clone
DISTVERSIONPREFIX= v
-DISTVERSION= 1.97
+DISTVERSION= 1.98
CATEGORIES= audio
MAINTAINER= ehaupt@FreeBSD.org
diff --git a/audio/ft2-clone/distinfo b/audio/ft2-clone/distinfo
index a6900586b705..cdadccd9b0aa 100644
--- a/audio/ft2-clone/distinfo
+++ b/audio/ft2-clone/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1752439260
-SHA256 (8bitbubsy-ft2-clone-v1.97_GH0.tar.gz) = baa7b64067765bbe52127a8009a42a2b21289df05b29830d4d4584174cc12ec2
-SIZE (8bitbubsy-ft2-clone-v1.97_GH0.tar.gz) = 5230546
+TIMESTAMP = 1757397054
+SHA256 (8bitbubsy-ft2-clone-v1.98_GH0.tar.gz) = 6078f209e2b9f4b27f15b0495627bf24e704d84dcb139374083cdfa250b8bb65
+SIZE (8bitbubsy-ft2-clone-v1.98_GH0.tar.gz) = 5205311
diff --git a/audio/ft2-clone/files/patch-src_ft2__unicode.c b/audio/ft2-clone/files/patch-src_ft2__unicode.c
new file mode 100644
index 000000000000..94d1f1823e84
--- /dev/null
+++ b/audio/ft2-clone/files/patch-src_ft2__unicode.c
@@ -0,0 +1,38 @@
+--- src/ft2_unicode.c.orig 2025-09-09 06:08:58 UTC
++++ src/ft2_unicode.c
+@@ -4,20 +4,21 @@
+ #endif
+
+ // for detecting if musl or glibc is used
+-#if !defined _WIN32 && !defined __APPLE__
+- #ifndef _GNU_SOURCE
+- #define _GNU_SOURCE
+- #include <features.h>
+- #ifndef __USE_GNU
+- #define __MUSL__
+- #endif
+- #undef _GNU_SOURCE /* don't contaminate other includes unnecessarily */
+- #else
+- #include <features.h>
+- #ifndef __USE_GNU
+- #define __MUSL__
+- #endif
+- #endif
++#if defined(__linux__)
++ /* Only Linux has glibc's <features.h>. On BSDs (including FreeBSD) and others,
++ skip this block to avoid a missing-header error. */
++ #ifdef __has_include
++ #if __has_include(<features.h>)
++ #include <features.h>
++ #endif
++ #else
++ /* If the compiler doesn't support __has_include, assume features.h exists on glibc. */
++ #include <features.h>
++ #endif
++ /* If <features.h> didn't define glibc's GNU extensions, assume musl. */
++ #ifndef __USE_GNU
++ #define __MUSL__
++ #endif
+ #endif
+
+ #include <stdlib.h>
diff --git a/audio/icecast/Makefile b/audio/icecast/Makefile
index eef46995c6e3..32d42f011fd0 100644
--- a/audio/icecast/Makefile
+++ b/audio/icecast/Makefile
@@ -37,6 +37,8 @@ SUB_FILES= pkg-message
CPE_VENDOR= xiph
+PORTSCOUT= skipv:2.4.99.1,2.4.99.2,2.4.99.3,2.4.999.1
+
OPTIONS_DEFINE= DOCS
post-install:
diff --git a/audio/libopenmpt/Makefile b/audio/libopenmpt/Makefile
index 9cedbcd460ab..e56e50e8459b 100644
--- a/audio/libopenmpt/Makefile
+++ b/audio/libopenmpt/Makefile
@@ -1,5 +1,5 @@
PORTNAME= libopenmpt
-DISTVERSION= 0.8.2
+DISTVERSION= 0.8.3
DISTVERSIONSUFFIX= +release.autotools
CATEGORIES= audio
MASTER_SITES= https://lib.openmpt.org/files/libopenmpt/src/ \
diff --git a/audio/libopenmpt/distinfo b/audio/libopenmpt/distinfo
index 7d45ab0150d0..4c038653dd8c 100644
--- a/audio/libopenmpt/distinfo
+++ b/audio/libopenmpt/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1752991394
-SHA256 (libopenmpt-0.8.2+release.autotools.tar.gz) = 844e4ff98dbd9942bbe4a1048226f91f8bc5b460b7bec6489e67cedb3e0aac37
-SIZE (libopenmpt-0.8.2+release.autotools.tar.gz) = 1721276
+TIMESTAMP = 1757396993
+SHA256 (libopenmpt-0.8.3+release.autotools.tar.gz) = 25d486a4da9728819274ed0959fd79a1c6358954710d54c14047c6457c8ca8ac
+SIZE (libopenmpt-0.8.3+release.autotools.tar.gz) = 1759774
diff --git a/audio/mac/Makefile b/audio/mac/Makefile
index 90dceadc3f27..b08fd180d101 100644
--- a/audio/mac/Makefile
+++ b/audio/mac/Makefile
@@ -1,5 +1,5 @@
PORTNAME= mac
-PORTVERSION= 11.41
+PORTVERSION= 11.43
CATEGORIES= audio
MASTER_SITES= https://www.monkeysaudio.com/files/
DISTNAME= ${PORTNAME:tu}_${PORTVERSION:S|.||}_SDK
diff --git a/audio/mac/distinfo b/audio/mac/distinfo
index cd2331c26aab..17014f0ec2b2 100644
--- a/audio/mac/distinfo
+++ b/audio/mac/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1756944953
-SHA256 (MAC_1141_SDK.zip) = e31329e426802ee5072ebfcc4ea746005dafd54a0ab2793056f50764378fd94f
-SIZE (MAC_1141_SDK.zip) = 1708143
+TIMESTAMP = 1757175011
+SHA256 (MAC_1143_SDK.zip) = 9c49c123b95b36d3d86798ebfef5dc96c96c6c1ba02291290d6a9397f1fc3fd1
+SIZE (MAC_1143_SDK.zip) = 1708003
diff --git a/audio/mac/files/patch-CMakeLists.txt b/audio/mac/files/patch-CMakeLists.txt
index b26b2cdbbbee..66e6a2e3e99d 100644
--- a/audio/mac/files/patch-CMakeLists.txt
+++ b/audio/mac/files/patch-CMakeLists.txt
@@ -1,9 +1,7 @@
Version 11.00 added multi-threading support, but we need to link to -lpthread
to resolve symbols.
-Version 11.41 renamed IO.h to IAPEIO.h, but they didn't update CMakeLists.txt
-
---- CMakeLists.txt.orig 2025-09-01 19:26:38 UTC
+--- CMakeLists.txt.orig 2025-09-05 10:46:54 UTC
+++ CMakeLists.txt
@@ -6,6 +6,8 @@ option(BUILD_UTIL "Build the mac command line tool" ON
option(BUILD_SHARED "Build libMAC as a shared library" ON)
@@ -14,25 +12,6 @@ Version 11.41 renamed IO.h to IAPEIO.h, but they didn't update CMakeLists.txt
#
# Determine interface version
#
-@@ -74,7 +76,7 @@ set(MAC_PUBLIC_HEADERS
- Shared/All.h
- Shared/APETag.h
- Shared/CharacterHelper.h
-- Shared/IO.h
-+ Shared/IAPEIO.h
- Shared/MACDll.h
- Shared/MACLib.h
- Shared/NoWindows.h
-@@ -91,8 +93,8 @@ set(MAC_SHARED_HEADERS
- Source/Shared/CPUFeatures.h
- Source/Shared/CRC.h
- Source/Shared/GlobalFunctions.h
-+ Source/Shared/IAPEIO.h
- Source/Shared/ID3Genres.h
-- Source/Shared/IO.h
- Source/Shared/MACDll.h
- Source/Shared/MemoryIO.h
- Source/Shared/MFCGlobals.h
@@ -229,6 +231,7 @@ if(BUILD_SHARED)
if(BUILD_SHARED)
add_library(MAC SHARED $<TARGET_OBJECTS:shared> $<TARGET_OBJECTS:objects>)
diff --git a/audio/pt2-clone/Makefile b/audio/pt2-clone/Makefile
index 2273ebea82b4..7f7d96e27031 100644
--- a/audio/pt2-clone/Makefile
+++ b/audio/pt2-clone/Makefile
@@ -1,5 +1,5 @@
PORTNAME= pt2-clone
-PORTVERSION= 1.76
+PORTVERSION= 1.77
DISTVERSIONPREFIX= v
CATEGORIES= audio
MASTER_SITES= LOCAL/ehaupt:extras
diff --git a/audio/pt2-clone/distinfo b/audio/pt2-clone/distinfo
index 15110eb54b7e..869d6aaac137 100644
--- a/audio/pt2-clone/distinfo
+++ b/audio/pt2-clone/distinfo
@@ -1,5 +1,5 @@
-TIMESTAMP = 1756105975
+TIMESTAMP = 1757397026
SHA256 (pt2-clone-extras-2.tar.gz) = ddbac01034022f27860d85f4627b07223f9fd8f02a4ddefdc36467f2e3cacd0b
SIZE (pt2-clone-extras-2.tar.gz) = 742
-SHA256 (8bitbubsy-pt2-clone-v1.76_GH0.tar.gz) = 515eddc686ff0c44f425cd03f5440437f07bec5c79ef654a6ebb750238648373
-SIZE (8bitbubsy-pt2-clone-v1.76_GH0.tar.gz) = 9162353
+SHA256 (8bitbubsy-pt2-clone-v1.77_GH0.tar.gz) = 034b05fb8648932b2f7a7b816563df514d6d69c9a373b246041e7ac66b4aa77c
+SIZE (8bitbubsy-pt2-clone-v1.77_GH0.tar.gz) = 9211087
diff --git a/audio/py-pyradio/Makefile b/audio/py-pyradio/Makefile
index 894819ccfe10..cac8f2f442b9 100644
--- a/audio/py-pyradio/Makefile
+++ b/audio/py-pyradio/Makefile
@@ -1,5 +1,5 @@
PORTNAME= pyradio
-DISTVERSION= 0.9.3.11.15
+DISTVERSION= 0.9.3.11.16
PORTREVISION= 0
CATEGORIES= audio python
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
diff --git a/audio/py-pyradio/distinfo b/audio/py-pyradio/distinfo
index 0834db231f85..1ade44e7e30d 100644
--- a/audio/py-pyradio/distinfo
+++ b/audio/py-pyradio/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1750340504
-SHA256 (coderholic-pyradio-0.9.3.11.15_GH0.tar.gz) = 9a0b230bfcd5ec42c6ba59cdaf2c064a658ee1e3edc62f90cfd160d4f347f9ba
-SIZE (coderholic-pyradio-0.9.3.11.15_GH0.tar.gz) = 1587917
+TIMESTAMP = 1756976313
+SHA256 (coderholic-pyradio-0.9.3.11.16_GH0.tar.gz) = 061737b6aa6ecc723a1cc509a6d67bc8fd8b0f11096febaf298d40daaacccec3
+SIZE (coderholic-pyradio-0.9.3.11.16_GH0.tar.gz) = 1607161
diff --git a/audio/py-pyradio/files/patch-pyradio_main.py b/audio/py-pyradio/files/patch-pyradio_main.py
new file mode 100644
index 000000000000..dbd9c6074182
--- /dev/null
+++ b/audio/py-pyradio/files/patch-pyradio_main.py
@@ -0,0 +1,12 @@
+--- pyradio/main.py.orig 2025-09-02 14:51:30 UTC
++++ pyradio/main.py
+@@ -667,7 +667,8 @@ If nothing else works, try the following command:
+ if args.version:
+ pyradio_config.get_pyradio_version()
+ print(f'PyRadio version: [green]{pyradio_config.current_pyradio_version}[/green]')
+- print(f"Python version: [green]{sys.version.replace('\\n', ' ').replace('\\r', ' ')}[/green]")
++ ver = sys.version.replace('\\n', ' ').replace('\\r', ' ')
++ print(f"Python version: [green]{ver}[/green]")
+ if pyradio_config.distro != 'None':
+ print(f'Distribution: [green]{pyradio_config.distro}[/green]')
+ return
diff --git a/audio/schismtracker/Makefile b/audio/schismtracker/Makefile
index 39451a06a0c0..3b4048de61be 100644
--- a/audio/schismtracker/Makefile
+++ b/audio/schismtracker/Makefile
@@ -1,5 +1,5 @@
PORTNAME= schismtracker
-DISTVERSION= 20250728
+DISTVERSION= 20250825
CATEGORIES= audio
MAINTAINER= ehaupt@FreeBSD.org
diff --git a/audio/schismtracker/distinfo b/audio/schismtracker/distinfo
index 67f8464c026d..7a4d7d376645 100644
--- a/audio/schismtracker/distinfo
+++ b/audio/schismtracker/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1753729567
-SHA256 (schismtracker-schismtracker-20250728_GH0.tar.gz) = adbf92c2690e59e177868d88a823802891d47fffab496a0a726864a0363d2bb1
-SIZE (schismtracker-schismtracker-20250728_GH0.tar.gz) = 1323158
+TIMESTAMP = 1757176147
+SHA256 (schismtracker-schismtracker-20250825_GH0.tar.gz) = 67d1217ca00081bd28da2c130ccfd383310226c2864b94ccd3c4ffaf5ea83978
+SIZE (schismtracker-schismtracker-20250825_GH0.tar.gz) = 1347120
diff --git a/audio/sonicradio/Makefile b/audio/sonicradio/Makefile
index 4d0c2d0f78b7..e17285052a23 100644
--- a/audio/sonicradio/Makefile
+++ b/audio/sonicradio/Makefile
@@ -1,6 +1,6 @@
PORTNAME= sonicradio
DISTVERSIONPREFIX= v
-DISTVERSION= 0.7.5
+DISTVERSION= 0.8.4
CATEGORIES= audio
MAINTAINER= nivit@FreeBSD.org
@@ -10,7 +10,9 @@ WWW= https://github.com/dancnb/sonicradio
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE
-USES= go:1.23,modules
+LIB_DEPENDS= libasound.so:audio/alsa-lib
+
+USES= go:1.23,modules pkgconfig
GO_MODULE= github.com/dancnb/sonicradio
PLIST_FILES= bin/sonicradio
diff --git a/audio/sonicradio/distinfo b/audio/sonicradio/distinfo
index 603cdc40b49d..8e7239a62e99 100644
--- a/audio/sonicradio/distinfo
+++ b/audio/sonicradio/distinfo
@@ -1,5 +1,5 @@
-TIMESTAMP = 1756449200
-SHA256 (go/audio_sonicradio/sonicradio-v0.7.5/v0.7.5.mod) = e13d7c88d2c94f14eec5b9f603bc5ded2e13d9baab8eab44849479c58f0bdd6d
-SIZE (go/audio_sonicradio/sonicradio-v0.7.5/v0.7.5.mod) = 1197
-SHA256 (go/audio_sonicradio/sonicradio-v0.7.5/v0.7.5.zip) = 22471313420adc7e82930d18463373a6bded7bb29c3b667c79e8f6f8c04fc907
-SIZE (go/audio_sonicradio/sonicradio-v0.7.5/v0.7.5.zip) = 1264258
+TIMESTAMP = 1757144161
+SHA256 (go/audio_sonicradio/sonicradio-v0.8.4/v0.8.4.mod) = c3d6fb914b773066e02f024e166e02a16db329491472ba5b448ad6b3a046978e
+SIZE (go/audio_sonicradio/sonicradio-v0.8.4/v0.8.4.mod) = 1520
+SHA256 (go/audio_sonicradio/sonicradio-v0.8.4/v0.8.4.zip) = 7761a64bf8a6fc33c588af29f464214602dce25a3c06af5cf26d267076ade57c
+SIZE (go/audio_sonicradio/sonicradio-v0.8.4/v0.8.4.zip) = 1270261