svn commit: r464040 - in head/sysutils: . asmctl

Danilo G. Baio dbaio at FreeBSD.org
Sat Mar 10 01:16:21 UTC 2018


Author: dbaio
Date: Sat Mar 10 01:16:20 2018
New Revision: 464040
URL: https://svnweb.freebsd.org/changeset/ports/464040

Log:
  Add sysutils/asmctl: Apple System Management Controller
  
  Asmctl is a command line tool for Apple System Management Controller,
  which controls the keyboard backlight and LCD backlight.
  
  Assigning following key bindings work similar to Apple MacBook series.
  
  | key |      assign       |
  |-----|-------------------|
  | F1  | asmctl video down |
  | F2  | asmctl video up   |
  | F5  | asmctl key down   |
  | F6  | asmctl key up     |
  
  WWW: https://github.com/yuichiro-naito/asmctl
  
  PR:		225552
  Submitted by:	Yuichiro NAITO <naito.yuichiro at gmail.com>

Added:
  head/sysutils/asmctl/
  head/sysutils/asmctl/Makefile   (contents, props changed)
  head/sysutils/asmctl/distinfo   (contents, props changed)
  head/sysutils/asmctl/pkg-descr   (contents, props changed)
  head/sysutils/asmctl/pkg-plist   (contents, props changed)
Modified:
  head/sysutils/Makefile

Modified: head/sysutils/Makefile
==============================================================================
--- head/sysutils/Makefile	Sat Mar 10 00:48:02 2018	(r464039)
+++ head/sysutils/Makefile	Sat Mar 10 01:16:20 2018	(r464040)
@@ -49,6 +49,7 @@
     SUBDIR += areca-cli
     SUBDIR += ascpu
     SUBDIR += asfsm
+    SUBDIR += asmctl
     SUBDIR += asmem
     SUBDIR += asmon
     SUBDIR += asusoled

Added: head/sysutils/asmctl/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/asmctl/Makefile	Sat Mar 10 01:16:20 2018	(r464040)
@@ -0,0 +1,24 @@
+# Created by: Yuichiro NAITO <naito.yuichiro at gmail.com>
+# $FreeBSD$
+
+PORTNAME=	asmctl
+PORTVERSION=	1.6
+CATEGORIES=	sysutils
+
+MAINTAINER=	naito.yuichiro at gmail.com
+COMMENT=	Apple System Management Controller
+
+LICENSE=	BSD2CLAUSE
+LICENSE_FILE=	${WRKSRC}/LICENSE.txt
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	yuichiro-naito
+
+GNU_CONFIGURE=	yes
+INSTALL_TARGET=	install-strip
+
+post-install:
+	${MV} ${STAGEDIR}${PREFIX}/etc/devd/asmctl.conf \
+		${STAGEDIR}${PREFIX}/etc/devd/asmctl.conf.sample
+
+.include <bsd.port.mk>

Added: head/sysutils/asmctl/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/asmctl/distinfo	Sat Mar 10 01:16:20 2018	(r464040)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1512956138
+SHA256 (yuichiro-naito-asmctl-1.6_GH0.tar.gz) = 169184dfc693e39e5188dba1174a55768261c2ecbdb1b976ddcd32d5de68c893
+SIZE (yuichiro-naito-asmctl-1.6_GH0.tar.gz) = 48890

Added: head/sysutils/asmctl/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/asmctl/pkg-descr	Sat Mar 10 01:16:20 2018	(r464040)
@@ -0,0 +1,13 @@
+Asmctl is a command line tool for Apple System Management Controller,
+which controls the keyboard backlight and LCD backlight.
+
+Assigning following key bindings work similar to Apple MacBook series.
+
+| key |      assign       |
+|-----|-------------------|
+| F1  | asmctl video down |
+| F2  | asmctl video up   |
+| F5  | asmctl key down   |
+| F6  | asmctl key up     |
+
+WWW: https://github.com/yuichiro-naito/asmctl

Added: head/sysutils/asmctl/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/asmctl/pkg-plist	Sat Mar 10 01:16:20 2018	(r464040)
@@ -0,0 +1,4 @@
+bin/asmctl
+ at sample etc/devd/asmctl.conf.sample
+man/man1/asmctl.1.gz
+ at dir /var/lib


More information about the svn-ports-head mailing list