Changelog:
* Update because the CTL_STSCTL constant was introduced in sys/sysctl.h
* add an error dialog if an OID has 23/24 levels and the sysctlinfo kmod is not
loaded (avoiding a segmentation fault)
PR: 241086
Submitted by: Alfonso S. Siciliano (maintainer)
62 lines
1.7 KiB
Makefile
62 lines
1.7 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= sysctlview
|
|
PORTVERSION= 1.5.2
|
|
CATEGORIES= deskutils
|
|
|
|
MAINTAINER= alfix86@gmail.com
|
|
COMMENT= Show sysctl MIB Tree
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/include/sysctlinfo.h:sysutils/sysctlinfo-kmod
|
|
LIB_DEPENDS= libsysctlmibinfo.so:devel/libsysctlmibinfo
|
|
RUN_DEPENDS= ${KMODDIR}/sysctlinfo.ko:sysutils/sysctlinfo-kmod
|
|
|
|
USES= compiler:c++11-lang gettext-runtime gnome pkgconfig
|
|
USE_GNOME= atk atkmm cairo cairomm gdkpixbuf2 glib20 glib20 glibmm glibmm \
|
|
gtk30 gtkmm30 libsigc++20 pango pangomm
|
|
|
|
USE_GITLAB= yes
|
|
GL_ACCOUNT= alfix
|
|
GL_COMMIT= abc8074a3d8eb37c98cba38beb1c541a6d9dad26
|
|
|
|
INSTALLS_ICONS= yes
|
|
|
|
DESKTOP_ENTRIES= "Sysctlview" \
|
|
"Show kernel state" \
|
|
"sysctlview" \
|
|
"sysctlview" \
|
|
"System;" \
|
|
false
|
|
|
|
OPTIONS_DEFINE= NLS
|
|
OPTIONS_SUB= yes
|
|
|
|
NLS_USES= gettext
|
|
NLS_CONFIGURE_ENABLE= nls
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.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_PROGRAM} ${WRKSRC}/sysctlview ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/sysctlview.1 ${STAGEDIR}${MAN1PREFIX}/man/man1
|
|
.for i in 16 22 24 32 36 48 64 72 96 128 192 256
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/share/icons/hicolor/${i}x${i}/apps/ && \
|
|
${MV} ${WRKSRC}/icon/sysctlview-${i}.png \
|
|
${STAGEDIR}${PREFIX}/share/icons/hicolor/${i}x${i}/apps/sysctlview.png
|
|
.endfor
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/share/icons/hicolor/scalable/apps/ && \
|
|
${MV} ${WRKSRC}/icon/sysctlview.svg \
|
|
${STAGEDIR}${PREFIX}/share/icons/hicolor/scalable/apps/sysctlview.svg
|
|
|
|
.include <bsd.port.post.mk>
|