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

Collapse All | Expand All

(-)b/net-p2p/lidarr/Makefile (+1 lines)
Lines 1-5 Link Here
1
PORTNAME=	lidarr
1
PORTNAME=	lidarr
2
DISTVERSION=	1.3.5.3530
2
DISTVERSION=	1.3.5.3530
3
PORTREVISION=	1
3
CATEGORIES=	net-p2p
4
CATEGORIES=	net-p2p
4
MASTER_SITES=	https://github.com/lidarr/Lidarr/releases/download/v${PORTVERSION}/
5
MASTER_SITES=	https://github.com/lidarr/Lidarr/releases/download/v${PORTVERSION}/
5
DISTNAME=	Lidarr.master.${DISTVERSION}.freebsd-core-x64
6
DISTNAME=	Lidarr.master.${DISTVERSION}.freebsd-core-x64
(-)b/net-p2p/lidarr/files/lidarr.in (-2 / +1 lines)
Lines 43-49 start_precmd=${name}_precmd Link Here
43
    # .NET 6+ use dual mode sockets to avoid the separate AF handling.
43
    # .NET 6+ use dual mode sockets to avoid the separate AF handling.
44
    # disable .NET use of V6 if no ipv6 is configured.
44
    # disable .NET use of V6 if no ipv6 is configured.
45
    # See https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=259194#c17
45
    # See https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=259194#c17
46
    ifconfig | grep -q inet6
46
    ifconfig -a -u -G lo | grep -q inet6
47
    if [ $? == 1 ]; then
47
    if [ $? == 1 ]; then
48
        export DOTNET_SYSTEM_NET_DISABLEIPV6=1
48
        export DOTNET_SYSTEM_NET_DISABLEIPV6=1
49
    fi
49
    fi
50
- 

Return to bug 273542