ports/sysutils/sysctlinfo-kmod/Makefile
Torsten Zuehlsdorff 974e6b0efa sysutils/sysctlinfo-kmod: update to 20191005
Changelog:

 * delete CTL_SYSCTLMIB, CTL_SYSCTL added in sysctl.h
 * improve SYSCTL_OUT error checks
 * update lock
 * code update like review D21700

PR:		241084
Submitted by:	Alfonso S. Siciliano (maintainer)
2019-10-08 09:30:52 +00:00

56 lines
1.5 KiB
Makefile

# $FreeBSD$
PORTNAME= sysctlinfo-kmod
DISTVERSION= 20191005
CATEGORIES= sysutils
MAINTAINER= alfix86@gmail.com
COMMENT= Interface to visit the sysctl MIB-tree and to get the nodes info
LICENSE= BSD2CLAUSE
LICENSE_FILE= ${WRKSRC}/LICENSE
USES= kmod
USE_GITLAB= yes
GL_ACCOUNT= alfix
GL_PROJECT= sysctlinfo
GL_COMMIT= 12c8b65d339becbc563d85bd2c81714b6b9226a6
PLIST_FILES= ${KMODDIR}/sysctlinfo.ko \
include/sysctlinfo.h \
man/man3/sysctlinfo.3.gz \
man/man4/sysctlinfo.4.gz
PORTEXAMPLES= Makefile \
allinfo.c \
allinfobyname.c \
capability.c \
singleinfo.c
OPTIONS_DEFINE= EXAMPLES
OPTIONS_DEFAULT= EXAMPLES
.include <bsd.port.pre.mk>
# Once the sysctlinfo interface (review D21700) lands into the base tree the
# following statement needs to be expanded
.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1200019
IGNORE= needs oid_label member of struct sysctl_oid defined in sysctl.h which was first introduced in FreeBSD 12
.endif
.if ${OPSYS} != FreeBSD
IGNORE= not supported on anything but FreeBSD
.endif
do-install:
${INSTALL_KLD} ${WRKSRC}/sysctlinfo.ko ${STAGEDIR}${KMODDIR}
${INSTALL_DATA} ${WRKSRC}/sysctlinfo.h ${STAGEDIR}${PREFIX}/include
${INSTALL_MAN} ${WRKSRC}/sysctlinfo.3 ${STAGEDIR}${MAN3PREFIX}/man/man3
${INSTALL_MAN} ${WRKSRC}/sysctlinfo.4 ${STAGEDIR}${MAN4PREFIX}/man/man4
do-install-EXAMPLES-on:
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
.for e in ${PORTEXAMPLES}
${INSTALL_DATA} ${WRKSRC}/examples/${e} ${STAGEDIR}${EXAMPLESDIR}
.endfor
.include <bsd.port.post.mk>