Files
ports/net-mgmt/sysmon/Makefile
T
Jason E. Hale 14f7c29430 */*: De-orbit alias.mk
Mk/Uses/alias.mk was an attempt for compat with DPorts, but has rotted.
This feature was never documented in the PHB, so there is no work to
be done by the docs@ team.

Nothing against DragonFly, but if DPorts still needs FreeBSD 9
support, they really should work that out with upstream projects.

Ultimately, we don't need to keep carrying this outdated feature that
doesn't affect us.
2025-12-30 07:00:05 -05:00

48 lines
1.2 KiB
Makefile

PORTNAME= sysmon
PORTVERSION= 0.93
PORTREVISION= 2
CATEGORIES= net-mgmt
MASTER_SITES= ftp://puck.nether.net/pub/jared/ \
http://titan.oxeo.com/mirror/sysmon.org/
MAINTAINER= mk@oxeo.com
COMMENT= Network tool designed for high performance and accurate monitoring
WWW= https://puck.nether.net/sysmon/
LICENSE= GPLv2
USES= ssl
GNU_CONFIGURE= yes
OPTIONS_DEFINE= DOCS
DOCS= Changes.html binaries.html config.html docs.html index.html \
jclient.jpg net-example.png sysmon.conf.man.html sysmon.jpg \
sysmon.man.html reporting.xml-spec.txt
MANPAGE= sysmon.man.8 sysmon.conf.man.8
.include <bsd.port.options.mk>
.if ${OPSYS} == FreeBSD
CFLAGS+= -Wno-error=incompatible-function-pointer-types
.endif
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/src/sysmon ${STAGEDIR}${PREFIX}/bin
${INSTALL_PROGRAM} ${WRKSRC}/src/sysmond ${STAGEDIR}${PREFIX}/bin
${INSTALL_DATA} \
${WRKSRC}/examples/sysmon.conf.dist \
${STAGEDIR}${PREFIX}/etc/sysmon.conf.sample
.for man in ${MANPAGE}
${INSTALL_MAN} ${WRKSRC}/docs/${man:S/.8//} ${STAGEDIR}${PREFIX}/share/man/man8/${man}
.endfor
do-install-DOCS-on:
${MKDIR} ${STAGEDIR}${DOCSDIR}
.for doc in ${DOCS}
${INSTALL_DATA} ${WRKSRC}/docs/${doc} ${STAGEDIR}${DOCSDIR}
.endfor
.include <bsd.port.mk>