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

Collapse All | Expand All

(-)sysutils/g15daemon/Makefile (+28 lines)
Line 0 Link Here
1
# $FreeBSD$
2
3
PORTNAME=	g15daemon
4
PORTVERSION=	3.0
5
CATEGORIES=	sysutils
6
MASTER_SITES=	https://gitlab.com/menelkir/${PORTNAME}/-/archive/${PORTVERSION}/
7
8
MAINTAINER=	menelkir@itroll.org
9
COMMENT=	Daemon for use the G-Buttons and draw on the G15 LCD
10
11
LICENSE=	GPLv2
12
13
LIB_DEPENDS+=	libg15.so:sysutils/libg15 \
14
		libg15render.so:sysutils/libg15render
15
16
USES=		compiler:gcc-c++11-lib gmake localbase libtool
17
18
USE_LDCONFIG=	yes
19
20
GNU_CONFIGURE=	yes
21
22
CFLAGS+=	-fcommon
23
24
USE_RC_SUBR=	g15daemon
25
26
INSTALL_TARGET=	install-strip
27
28
.include <bsd.port.mk>
(-)sysutils/g15daemon/distinfo (+3 lines)
Line 0 Link Here
1
TIMESTAMP = 1615334575
2
SHA256 (g15daemon-3.0.tar.gz) = 6c897efcab627a7a1ded34fd5d6291443500fb0ac0fb35d2c0215977951aa71d
3
SIZE (g15daemon-3.0.tar.gz) = 448895
(-)sysutils/g15daemon/files/g15daemon.in (+27 lines)
Line 0 Link Here
1
#!/bin/sh
2
3
# $FreeBSD$
4
#
5
# PROVIDE: g15daemon
6
# REQUIRE: LOGIN
7
# KEYWORD: shutdown
8
#
9
# Add these lines to /etc/rc.conf.local or /etc/rc.conf
10
# to enable this service:
11
#
12
# g15daemon_enable (bool):	Set to NO by default.
13
#				Set it to YES to enable doormand.
14
15
. /etc/rc.subr
16
17
name=g15daemon
18
rcvar=g15daemon_enable
19
20
load_rc_config $name
21
22
: ${daemon_enable:="NO"}
23
24
command=%%PREFIX%%/sbin/${name}
25
pidfile=/var/run/${name}.pid
26
27
run_rc_command "$1"
(-)sysutils/g15daemon/pkg-descr (+3 lines)
Line 0 Link Here
1
Daemon to use the G-Buttons and draw on the G15 LCD
2
3
WWW: https://gitlab.com/menelkir/g15daemon
(-)sysutils/g15daemon/pkg-plist (+17 lines)
Line 0 Link Here
1
etc/rc.d/g15daemon
2
include/g15daemon.h
3
include/g15daemon_client.h
4
lib/g15daemon/3.0/plugins/g15plugin_clock.a
5
lib/g15daemon/3.0/plugins/g15plugin_clock.so
6
lib/g15daemon/3.0/plugins/g15plugin_tcpserver.a
7
lib/g15daemon/3.0/plugins/g15plugin_tcpserver.so
8
lib/g15daemon/3.0/plugins/g15plugin_uinput.a
9
lib/g15daemon/3.0/plugins/g15plugin_uinput.so
10
lib/libg15daemon_client.a
11
lib/libg15daemon_client.so
12
lib/libg15daemon_client.so.3
13
lib/libg15daemon_client.so.3.0.0
14
man/man1/g15daemon.1.gz
15
man/man3/g15daemon_client_devel.3.gz
16
sbin/g15daemon
17
%%DATADIR%%/splash/g15logo3.wbmp

Return to bug 252987