View | Details | Raw Unified | Return to bug 253009 | Differences between
and this patch

Collapse All | Expand All

(-)b/sysutils/g15stats/Makefile (+33 lines)
Added Link Here
1
PORTNAME=	g15stats
2
PORTVERSION=	3.0.3
3
CATEGORIES=	sysutils
4
MASTER_SITES=   https://gitlab.com/menelkir/${PORTNAME}/-/archive/${PORTVERSION}/
5
6
MAINTAINER=	menelkir@itroll.org
7
COMMENT=	Resource monitor for G15daemon
8
9
LICENSE=	GPLv2
10
11
LIB_DEPENDS+=	libg15.so:sysutils/libg15 \
12
		libg15render.so:sysutils/libg15render \
13
		libgtop-2.0.so:devel/libgtop \
14
		libg15daemon_client.so:sysutils/g15daemon
15
16
USES=		gmake localbase libtool gnome pkgconfig
17
18
USE_LDCONFIG=	yes
19
20
USE_GNOME+=	glib20
21
22
GNU_CONFIGURE=	yes
23
24
CFLAGS+=	-std=c99 -fcommon
25
26
USE_RC_SUBR=	g15stats
27
28
INSTALL_TARGET=	install-strip
29
30
PLIST_FILES=	bin/g15stats \
31
		etc/rc.d/g15stats
32
33
.include <bsd.port.mk>
(-)b/sysutils/g15stats/distinfo (+3 lines)
Added Link Here
1
TIMESTAMP = 1621364357
2
SHA256 (g15stats-3.0.3.tar.gz) = 000ad7852fcf5b2d9524ea4fb0799654341b4ea23e076848e3b96dcb7d41d250
3
SIZE (g15stats-3.0.3.tar.gz) = 363805
(-)b/sysutils/g15stats/files/g15stats.in (+26 lines)
Added Link Here
1
#!/bin/sh
2
3
# $FreeBSD$
4
#
5
# PROVIDE: g15stats
6
# REQUIRE: LOGIN g15daemon
7
# KEYWORD: shutdown
8
#
9
# Add these lines to /etc/rc.conf.local or /etc/rc.conf
10
# to enable this service:
11
#
12
# g15stats_enable (bool):	Set to NO by default.
13
#				Set it to YES to enable doormand.
14
15
. /etc/rc.subr
16
17
name=g15stats
18
rcvar="${name}_enable"
19
load_rc_config $name
20
21
: ${g15stats_enable:="NO"}
22
23
command=%%PREFIX%%/bin/${name}
24
command_args='-d -i re0'
25
26
run_rc_command "$1"
(-)b/sysutils/g15stats/pkg-descr (+3 lines)
Added Link Here
1
Resource Monitor for G15Daemon.
2
3
WWW: https://gitlab.com/menelkir/g15stats

Return to bug 253009