View | Details | Raw Unified | Return to bug 273542 | Differences between
and this patch

Collapse All | Expand All

(-)b/multimedia/jellyfin/Makefile (-1 / +1 lines)
Lines 1-6 Link Here
1
PORTNAME=	jellyfin
1
PORTNAME=	jellyfin
2
DISTVERSION=	10.8.10
2
DISTVERSION=	10.8.10
3
PORTREVISION=	2
3
PORTREVISION=	3
4
CATEGORIES=	multimedia
4
CATEGORIES=	multimedia
5
MASTER_SITES=	https://github.com/Thefrank/jellyfin-server-freebsd/releases/download/v${DISTVERSION}/
5
MASTER_SITES=	https://github.com/Thefrank/jellyfin-server-freebsd/releases/download/v${DISTVERSION}/
6
DISTFILES=	jellyfin-combined_${DISTVERSION}_freebsd-${ARCH}.tar.gz \
6
DISTFILES=	jellyfin-combined_${DISTVERSION}_freebsd-${ARCH}.tar.gz \
(-)b/multimedia/jellyfin/files/jellyfin.in (-2 / +1 lines)
Lines 60-66 jellyfin_precmd() { Link Here
60
    # .NET 6+ use dual mode sockets to avoid the separate AF handling.
60
    # .NET 6+ use dual mode sockets to avoid the separate AF handling.
61
    # disable .NET use of V6 if no ipv6 is configured.
61
    # disable .NET use of V6 if no ipv6 is configured.
62
    # See https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=259194#c17
62
    # See https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=259194#c17
63
    ifconfig | grep -q inet6
63
    ifconfig -a -u -G lo | grep -q inet6
64
    if [ $? == 1 ]; then
64
    if [ $? == 1 ]; then
65
        export DOTNET_SYSTEM_NET_DISABLEIPV6=1
65
        export DOTNET_SYSTEM_NET_DISABLEIPV6=1
66
    fi
66
    fi
67
- 

Return to bug 273542