git: c3a4b195360f - 2023Q4 - graphics/grafx2: Add message that procfs is required
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 17 Nov 2023 16:40:13 UTC
The branch 2023Q4 has been updated by ehaupt:
URL: https://cgit.FreeBSD.org/ports/commit/?id=c3a4b195360f0e395568416c24fa30fe685a5b13
commit c3a4b195360f0e395568416c24fa30fe685a5b13
Author: Tobias Rehbein <tobias.rehbein@web.de>
AuthorDate: 2023-11-17 16:38:57 +0000
Commit: Emanuel Haupt <ehaupt@FreeBSD.org>
CommitDate: 2023-11-17 16:40:03 +0000
graphics/grafx2: Add message that procfs is required
PR: 275151
(cherry picked from commit c8961191accdc63e1308fce416f17514f4db1897)
---
graphics/grafx2/Makefile | 2 +-
graphics/grafx2/pkg-message | 16 ++++++++++++++++
2 files changed, 17 insertions(+), 1 deletion(-)
diff --git a/graphics/grafx2/Makefile b/graphics/grafx2/Makefile
index 220dc2a2ab41..7ced07b7d25d 100644
--- a/graphics/grafx2/Makefile
+++ b/graphics/grafx2/Makefile
@@ -1,7 +1,7 @@
PORTNAME= grafx2
PORTVERSION= 2.8
DISTVERSIONSUFFIX= .3091-HEAD-src
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= graphics
MASTER_SITES= http://pulkomandy.tk/projects/GrafX2/downloads/ \
LOCAL/ehaupt
diff --git a/graphics/grafx2/pkg-message b/graphics/grafx2/pkg-message
new file mode 100644
index 000000000000..c43274f63b16
--- /dev/null
+++ b/graphics/grafx2/pkg-message
@@ -0,0 +1,16 @@
+[
+{ type: install
+ message: <<EOM
+
+GrafX2 requires procfs(5) mounted on /proc.
+
+If you have not done it yet, please do the following:
+
+ mount -t procfs proc /proc
+
+To make it permanent, you need the following lines in /etc/fstab:
+
+ proc /proc procfs rw 0 0
+EOM
+}
+]