Hello,
I do host a games/minetest instance on my server, which I do build from the ports tree. The Minetest github page has this CMake option:
Which cannot be enabled through the ports configuration, so I have to always manually enable it by editing the Makefile, by changing the
to
Is there way to automate this, so that I wouldn't need to add this line every time the game updates, or should this be reported to the port maintainer through some channel, so he could add the configuration option to the port?
I do host a games/minetest instance on my server, which I do build from the ports tree. The Minetest github page has this CMake option:
ENABLE_PROMETHEUS=OFF - Build with Prometheus metrics exporter (listens on tcp/30000 by default)
Which cannot be enabled through the ports configuration, so I have to always manually enable it by editing the Makefile, by changing the
Code:
CMAKE_ARGS= -DCUSTOM_EXAMPLE_CONF_DIR="${PREFIX}/etc" \
-DENABLE_SYSTEM_JSONCPP=ON
to
Code:
CMAKE_ARGS= -DCUSTOM_EXAMPLE_CONF_DIR="${PREFIX}/etc" \
-DENABLE_SYSTEM_JSONCPP=ON \
-DENABLE_PROMETHEUS=ON
Is there way to automate this, so that I wouldn't need to add this line every time the game updates, or should this be reported to the port maintainer through some channel, so he could add the configuration option to the port?
I was not sure, should this thread be on this or in the ports section of the forum.