View | Details | Raw Unified | Return to bug 237317
Collapse All | Expand All

(-)Makefile (-5 / +5 lines)
Lines 1-11 Link Here
1
# $FreeBSD$
1
# $FreeBSD$
2
2
3
PORTNAME=	nsysctl
3
PORTNAME=	nsysctl
4
DISTVERSION=	0.1.1
4
DISTVERSION=	0.2
5
CATEGORIES=	sysutils
5
CATEGORIES=	sysutils
6
6
7
MAINTAINER=	alfix86@gmail.com
7
MAINTAINER=	alfix86@gmail.com
8
COMMENT=	New sysctl utility with libxo and extra options
8
COMMENT=	Utility to get or set the kernel state supporting libxo output
9
9
10
LICENSE=	BSD2CLAUSE
10
LICENSE=	BSD2CLAUSE
11
LICENSE_FILE=	${WRKSRC}/LICENSE
11
LICENSE_FILE=	${WRKSRC}/LICENSE
Lines 15-27 Link Here
15
USE_GITLAB=	yes
15
USE_GITLAB=	yes
16
16
17
GL_ACCOUNT=	alfix
17
GL_ACCOUNT=	alfix
18
GL_COMMIT=	f71d2fded69b95808f9247f7e01866d7a92b7ff9
18
GL_COMMIT=	ad19c188fd36e5d4950e4560274ade3a259d4099
19
19
20
PLIST_FILES=	bin/${PORTNAME} \
20
PLIST_FILES=	sbin/${PORTNAME} \
21
		man/man8/${PORTNAME}.8.gz
21
		man/man8/${PORTNAME}.8.gz
22
22
23
do-install:
23
do-install:
24
	${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
24
	${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/sbin
25
	${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.8 ${STAGEDIR}${MAN8PREFIX}/man/man8/
25
	${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.8 ${STAGEDIR}${MAN8PREFIX}/man/man8/
26
26
27
.include <bsd.port.mk>
27
.include <bsd.port.mk>
(-)distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1553608252
1
TIMESTAMP = 1555417827
2
SHA256 (alfix-nsysctl-f71d2fded69b95808f9247f7e01866d7a92b7ff9_GL0.tar.gz) = c0bbcba0f5f22d7f59a4897e42f87a7124d65cc19182039bf3bd325430de0624
2
SHA256 (alfix-nsysctl-ad19c188fd36e5d4950e4560274ade3a259d4099_GL0.tar.gz) = 0b76b1c8c837d3fba5371dc1b4d635f8530e9afc72f879a82867b3857c915328
3
SIZE (alfix-nsysctl-f71d2fded69b95808f9247f7e01866d7a92b7ff9_GL0.tar.gz) = 16193
3
SIZE (alfix-nsysctl-ad19c188fd36e5d4950e4560274ade3a259d4099_GL0.tar.gz) = 14235
(-)pkg-descr (-2 / +2 lines)
Lines 1-4 Link Here
1
nsysctl (new sysctl) is a sysctl(8) utility clone to get or set kernel
1
The nsysctl utility is a sysctl(8) clone to get or set the kernel
2
state with libxo, sysctlmibinfo and extra options; improvements:
2
state with libxo, sysctlmibinfo and extra options; improvements:
3
3
4
 * sysctlmibinfo(3) provides a simple API to the sysctl MIB,
4
 * sysctlmibinfo(3) provides a simple API to the sysctl MIB,
Lines 6-12 Link Here
6
 * output via libxo(3) in human and machine readable formats,
6
 * output via libxo(3) in human and machine readable formats,
7
 * output is explicitly indicated by the options,
7
 * output is explicitly indicated by the options,
8
 * new option -D show all properties,
8
 * new option -D show all properties,
9
 * update option -e specific sep as a separator,
9
 * updated option -e specific sep as a separator,
10
 * new option -F show flags,
10
 * new option -F show flags,
11
 * new option -I show internal nodes,
11
 * new option -I show internal nodes,
12
 * new option -l show label,
12
 * new option -l show label,

Return to bug 237317