From owner-svn-ports-all@freebsd.org Sat Mar 10 01:16:21 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 30CF6F384AA; Sat, 10 Mar 2018 01:16:21 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D757577FB5; Sat, 10 Mar 2018 01:16:20 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D24B826B83; Sat, 10 Mar 2018 01:16:20 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w2A1GKYa043709; Sat, 10 Mar 2018 01:16:20 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2A1GKMo043704; Sat, 10 Mar 2018 01:16:20 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201803100116.w2A1GKMo043704@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Sat, 10 Mar 2018 01:16:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r464040 - in head/sysutils: . asmctl X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: in head/sysutils: . asmctl X-SVN-Commit-Revision: 464040 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Mar 2018 01:16:21 -0000 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 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 +# $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 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