freebsd-ports/sysutils/nmdaemon/Makefile
Peter 6f4d9e4bf7 sysutils/nmdaemon: add new port
This is a daemon that manages network configuration of FreeBSD.

The daemon can manage:
 - some system network parameters
 - interfaces
 - routes
 - wireless networks (using wpa_supplicant)

nmdaemon should be started as root, it opens a unix socket where
clients can connect. The permissions of the unix socket are managed
by nmdaemon and provided by it's configuration file.

To communicate with nmdaemon one should use JSON formatted commands,
nmdaemon answers with JSON formatted data too.
The syntax and examples of the commands can be found in commands.md.

The Makefile and pkg-descr files have been made compliant with
FreeBSD conventions by me (pkg-descr is derived from README.md).

Pull Request:	https://github.com/freebsd/freebsd-ports/pull/224
2024-01-28 10:19:27 +01:00

23 lines
516 B
Makefile

PORTNAME= nmdaemon
DISTVERSIONPREFIX= v
DISTVERSION= 0.2
CATEGORIES= sysutils
MAINTAINER= peter@flytrace.com
COMMENT= FreeBSD network manager daemon
WWW= https://github.com/Peter2121/nmdaemon
LICENSE= BSD3CLAUSE
LICENSE_FILE= ${WRKSRC}/LICENSE
BUILD_DEPENDS= ${LOCALBASE}/lib/libasync++.a:devel/asyncplusplus \
${LOCALBASE}/lib/libsockpp.a:net/libsockpp
USES= cmake compiler:c++20-lang
USE_GITHUB= yes
GH_ACCOUNT= Peter2121
GH_PROJECT= nmdaemon
CONFIGURE_ENV= VERSION=${DISTVERSION}
.include <bsd.port.mk>