aboutsummaryrefslogtreecommitdiff
path: root/math
diff options
context:
space:
mode:
authorYuri Victorovich <yuri@FreeBSD.org>2021-03-28 05:01:13 +0000
committerYuri Victorovich <yuri@FreeBSD.org>2021-03-28 05:01:13 +0000
commitbf6ba7f6dffa9cf7e617762219823446686395a0 (patch)
treea59fe53bf1ee483b553329204b61c49ebf50204d /math
parent25ac83d59d524d835f0bca620d6660a1cc35756e (diff)
downloadports-bf6ba7f6dffa9cf7e617762219823446686395a0.tar.gz
ports-bf6ba7f6dffa9cf7e617762219823446686395a0.zip
math/lean: Add pkg-message with warning about /proc being required to be mounted
Reported by: BRANDON BOCANEGRA <kakuhen@g.ucla.edu>
Notes
Notes: svn path=/head/; revision=569374
Diffstat (limited to 'math')
-rw-r--r--math/lean/Makefile1
-rw-r--r--math/lean/pkg-message16
2 files changed, 17 insertions, 0 deletions
diff --git a/math/lean/Makefile b/math/lean/Makefile
index 12f4015f8db9..b601fb505076 100644
--- a/math/lean/Makefile
+++ b/math/lean/Makefile
@@ -3,6 +3,7 @@
PORTNAME= lean
DISTVERSIONPREFIX= v
DISTVERSION= 3.28.0
+PORTREVISION= 1
CATEGORIES= math
MAINTAINER= yuri@FreeBSD.org
diff --git a/math/lean/pkg-message b/math/lean/pkg-message
new file mode 100644
index 000000000000..c3656195ef46
--- /dev/null
+++ b/math/lean/pkg-message
@@ -0,0 +1,16 @@
+[
+{ type: install
+ message: <<EOM
+You installed lean: The Theorem Prover.
+
+Please note that lean requires /proc to be mounted.
+
+The usual way to do this is to add this line to /etc/fstab:
+proc /proc procfs rw 0 0
+
+and then run this command as root:
+# mount /proc
+
+EOM
+}
+]