diff --git a/net/nethogs/Makefile b/net/nethogs/Makefile index a6ee081633a8..ce19e22a075a 100644 --- a/net/nethogs/Makefile +++ b/net/nethogs/Makefile @@ -1,30 +1,30 @@ PORTNAME= nethogs PORTVERSION= 0.8.5 DISTVERSIONPREFIX= v -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net MAINTAINER= anastasios@mageirias.com COMMENT= Small net top tool WWW= https://github.com/raboof/nethogs LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING BROKEN_i386= non-constant-expression cannot be narrowed from type 'unsigned int' to 'time_t' (aka 'int') in initializer list USE_GITHUB= yes GH_ACCOUNT= raboof USES= compiler:c++11-lang gmake shebangfix SHEBANG_FILES= determineVersion.sh bash_CMD= /bin/sh -PLIST_FILES= man/man8/nethogs.8.gz \ +PLIST_FILES= share/man/man8/nethogs.8.gz \ sbin/nethogs post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/sbin/nethogs .include diff --git a/net/nethogs/files/patch-doc_Makefile b/net/nethogs/files/patch-doc_Makefile new file mode 100644 index 000000000000..f4dd7125e9dc --- /dev/null +++ b/net/nethogs/files/patch-doc_Makefile @@ -0,0 +1,24 @@ +--- doc/Makefile.orig 2024-02-25 09:26:05 UTC ++++ doc/Makefile +@@ -1,15 +1,7 @@ UNAME_S := $(shell uname -s) + all: + + UNAME_S := $(shell uname -s) +-ifeq ($(UNAME_S),FreeBSD) +- ifeq ($(PREFIX),/usr/local) +- man8 := $(PREFIX)/man/man8 +- else +- man8 := $(PREFIX)/share/man/man8 +- endif +-else +- man8 := $(PREFIX)/share/man/man8 +-endif ++man8 := $(PREFIX)/share/man/man8 + + install: nethogs.8 + install -d -m 755 $(DESTDIR)$(man8) +@@ -17,4 +9,3 @@ uninstall: + + uninstall: + rm $(DESTDIR)$(man8)/nethogs.8 || true +-