diff --git a/sysutils/ncdu/Makefile b/sysutils/ncdu/Makefile index e0fca9eab8d7..ae7720fec198 100644 --- a/sysutils/ncdu/Makefile +++ b/sysutils/ncdu/Makefile @@ -1,24 +1,25 @@ PORTNAME= ncdu PORTVERSION= 1.18 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= https://dev.yorhel.nl/download/ MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ncurses du(1) WWW= https://dev.yorhel.nl/ncdu LICENSE= MIT LICENSE_FILE= ${WRKSRC}/COPYING USES= ncurses GNU_CONFIGURE= yes PLIST_FILES= bin/ncdu \ man/man1/ncdu.1.gz # ncdu 1.* (LTS) is written in C. # ncdu 2.* (stable) is written in Zig which only works with specific version. PORTSCOUT= limit:^1\. .include diff --git a/sysutils/ncdu/files/patch-src-main.c b/sysutils/ncdu/files/patch-src-main.c index f6f09351040c..b607f0df1232 100644 --- a/sysutils/ncdu/files/patch-src-main.c +++ b/sysutils/ncdu/files/patch-src-main.c @@ -1,10 +1,10 @@ --- src/main.c.orig 2022-11-30 10:30:55 UTC +++ src/main.c @@ -44,6 +44,7 @@ int extended_info = 0; int follow_symlinks = 0; int follow_firmlinks = 1; int confirm_quit = 0; -+int exclude_kernfs = 1; ++int exclude_kernfs = 0; int si = 0; int show_as = 0; int graph = 1;