diff options
-rw-r--r-- | net/nethogs/Makefile | 4 | ||||
-rw-r--r-- | net/nethogs/files/patch-doc_Makefile | 24 |
2 files changed, 26 insertions, 2 deletions
diff --git a/net/nethogs/Makefile b/net/nethogs/Makefile index a6ee081633a8..ce19e22a075a 100644 --- a/net/nethogs/Makefile +++ b/net/nethogs/Makefile @@ -1,7 +1,7 @@ PORTNAME= nethogs PORTVERSION= 0.8.5 DISTVERSIONPREFIX= v -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net MAINTAINER= anastasios@mageirias.com @@ -21,7 +21,7 @@ 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: 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 +- |