Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 10 Mar 2018 01:16:20 +0000 (UTC)
From:      "Danilo G. Baio" <dbaio@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r464040 - in head/sysutils: . asmctl
Message-ID:  <201803100116.w2A1GKMo043704@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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@gmail.com>
+# $FreeBSD$
+
+PORTNAME=	asmctl
+PORTVERSION=	1.6
+CATEGORIES=	sysutils
+
+MAINTAINER=	naito.yuichiro@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
+@sample etc/devd/asmctl.conf.sample
+man/man1/asmctl.1.gz
+@dir /var/lib



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201803100116.w2A1GKMo043704>