diff --git a/dports/sysutils/htop/Portfile b/dports/sysutils/htop/Portfile
index 9f0d737..89ff802 100644
a
|
b
|
pre-configure { |
32 | 32 | system "cd ${worksrcpath} && sh autogen.sh" |
33 | 33 | } |
34 | 34 | |
| 35 | variant procmod description "install htop SGID procmod" { |
| 36 | destroot.asroot yes |
| 37 | post-destroot { |
| 38 | system "chgrp procmod ${destroot}${prefix}/bin/htop" |
| 39 | system "chmod 2755 ${destroot}${prefix}/bin/htop" |
| 40 | } |
| 41 | } |
| 42 | |
| 43 | default_variants +procmod |
| 44 | |
35 | 45 | # "String.h" vs <string.h> on case-insensitive FS (#21036) |
36 | 46 | build.args {DEFAULT_INCLUDES="-iquote ."} |
37 | 47 | |