Add new port from Allan

This commit is contained in:
Xavier Beaudouin
2025-01-03 16:53:31 +01:00
parent 6b32dda5a7
commit 98a97ad489
5 changed files with 94 additions and 0 deletions

40
net/akhq/Makefile Normal file
View File

@ -0,0 +1,40 @@
PORTNAME= akhq
DISTVERSION= 0.25.1
DISTVERSIONSUFFIX= -all
CATEGORIES= net java
MASTER_SITES= https://github.com/tchiotludo/akhq/releases/download/${PORTVERSION}/
EXTRACT_SUFX= .jar
MAINTAINER= freebsd@hackacad.net
COMMENT= AKHQ (previously known as KafkaHQ)
WWW= https://github.com/tchiotludo/akhq
LICENSE= APACHE20
USE_JAVA= yes
JAVA_VERSION= 17
NO_ARCH= yes
PLIST_FILES= ${JAVASHAREDIR}/${PORTNAME}/${PORTNAME}.jar
CONFIG_FILES= application.yml
NO_BUILD= yes
NO_EXTRACT= yes
USE_RC_SUBR= akhq
do-install:
${MKDIR} ${STAGEDIR}${PREFIX}/etc/akhq
${MKDIR} ${STAGEDIR}${JAVASHAREDIR}/${PORTNAME}
${INSTALL_DATA} ${DISTDIR}/${DISTFILES} ${STAGEDIR}${JAVASHAREDIR}/${PORTNAME}/${PORTNAME}.jar
${INSTALL_DATA} ${FILESDIR}/application.yml ${STAGEDIR}${PREFIX}/etc/akhq/application.yml.sample
${ECHO} "@sample ${PREFIX}/etc/akhq/application.yml.sample" >> ${TMPPLIST}
post-install:
@if [ ! -f ${STAGEDIR}${PREFIX}/etc/akhq/application.yml ]; then \
${CP} -p ${STAGEDIR}${PREFIX}/etc/akhq/application.yml.sample ${STAGEDIR}${PREFIX}/etc/akhq/application.yml ; \
fi
.include <bsd.port.mk>

3
net/akhq/distinfo Normal file
View File

@ -0,0 +1,3 @@
TIMESTAMP = 1734718291
SHA256 (akhq-0.25.1-all.jar) = 5aec420df890e388ade89c6995e6ed45a37d3cb1ff22f5d9837b1156ff4eaf72
SIZE (akhq-0.25.1-all.jar) = 191995582

40
net/akhq/files/akhq.in Normal file
View File

@ -0,0 +1,40 @@
#!/bin/sh
# PROVIDE: akhq
# REQUIRE: LOGIN
# KEYWORD: shutdown
. /etc/rc.subr
name=akhq
rcvar=akhq_enable
load_rc_config $name
: ${akhq_enable:=NO}
: ${akhq_config:=/usr/local/etc/akhq/application.yml}
: ${akhq_jar:=/usr/local/share/java/akhq/akhq.jar}
: ${akhq_java:=/usr/local/bin/java}
: ${akhq_user:=www}
: ${akhq_pidfile:=/var/run/${name}.pid}
command="/usr/sbin/daemon"
command_args="-P ${akhq_pidfile} -r -f ${akhq_java} -Dmicronaut.config.files=${akhq_config} -jar ${akhq_jar}"
start_precmd=akhq_startprecmd
akhq_startprecmd()
{
# Ensure the directory for the PID file exists
if [ ! -d $(dirname ${akhq_pidfile}) ]; then
install -d -o ${akhq_user} -m 0750 $(dirname ${akhq_pidfile})
fi
# Ensure the PID file exists with the right permissions
if [ ! -e "${akhq_pidfile}" ]; then
install -m 0600 -o ${akhq_user} /dev/null ${akhq_pidfile}
fi
}
run_rc_command "$1"

View File

@ -0,0 +1,9 @@
akhq:
connections:
local:
properties:
bootstrap.servers: "localhost:9092"
micronaut:
server:
port: 8080
host: "0.0.0.0"

2
net/akhq/pkg-descr Normal file
View File

@ -0,0 +1,2 @@
Kafka GUI for Apache Kafka to manage topics, topics data,
consumers group, schema registry, connect and more...