From owner-svn-ports-head@freebsd.org Tue Dec 15 22:04:08 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 26A0C4C5C85; Tue, 15 Dec 2020 22:04:08 +0000 (UTC) (envelope-from makc@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CwXN80hQbz3Gxj; Tue, 15 Dec 2020 22:04:08 +0000 (UTC) (envelope-from makc@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 005931B156; Tue, 15 Dec 2020 22:04:08 +0000 (UTC) (envelope-from makc@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0BFM47pe059944; Tue, 15 Dec 2020 22:04:07 GMT (envelope-from makc@FreeBSD.org) Received: (from makc@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0BFM46vv059936; Tue, 15 Dec 2020 22:04:06 GMT (envelope-from makc@FreeBSD.org) Message-Id: <202012152204.0BFM46vv059936@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: makc set sender to makc@FreeBSD.org using -f From: Max Brazhnikov Date: Tue, 15 Dec 2020 22:04:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r558187 - in head/sysutils: . libg15 libg15render X-SVN-Group: ports-head X-SVN-Commit-Author: makc X-SVN-Commit-Paths: in head/sysutils: . libg15 libg15render X-SVN-Commit-Revision: 558187 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Dec 2020 22:04:08 -0000 Author: makc Date: Tue Dec 15 22:04:05 2020 New Revision: 558187 URL: https://svnweb.freebsd.org/changeset/ports/558187 Log: Add sysutils/libg15 and sysutils/libg15render: API and library for control of LCD and the extra keys on Logitech keyboards. PR: 250429 PR: 250430 Submitted by: Daniel Menelkir Added: head/sysutils/libg15/ head/sysutils/libg15/Makefile (contents, props changed) head/sysutils/libg15/distinfo (contents, props changed) head/sysutils/libg15/pkg-descr (contents, props changed) head/sysutils/libg15/pkg-plist (contents, props changed) head/sysutils/libg15render/ head/sysutils/libg15render/Makefile (contents, props changed) head/sysutils/libg15render/distinfo (contents, props changed) head/sysutils/libg15render/pkg-descr (contents, props changed) head/sysutils/libg15render/pkg-plist (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Tue Dec 15 21:55:27 2020 (r558186) +++ head/sysutils/Makefile Tue Dec 15 22:04:05 2020 (r558187) @@ -589,6 +589,8 @@ SUBDIR += libcpuid SUBDIR += libdnf SUBDIR += libfvde + SUBDIR += libg15 + SUBDIR += libg15render SUBDIR += libgksu SUBDIR += libieee1284 SUBDIR += libretto-config Added: head/sysutils/libg15/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/libg15/Makefile Tue Dec 15 22:04:05 2020 (r558187) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= libg15 +PORTVERSION= 1.2.7 +CATEGORIES= sysutils +MASTER_SITES= SF/g15tools/libg15/${PORTVERSION} + +MAINTAINER= menelkir@itroll.org +COMMENT= API for control of LCD and the extra keys on Logitech keyboards + +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING + +USES= compiler:gcc-c++11-lib gmake libtool tar:bzip2 + +GNU_CONFIGURE= yes +INSTALL_TARGET= install-strip +USE_LDCONFIG= yes + +.include Added: head/sysutils/libg15/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/libg15/distinfo Tue Dec 15 22:04:05 2020 (r558187) @@ -0,0 +1,3 @@ +TIMESTAMP = 1608067028 +SHA256 (libg15-1.2.7.tar.bz2) = 132febe27e66fd9ee1cb7675ef2b0d99b5a404c28923494ff995012b847179d6 +SIZE (libg15-1.2.7.tar.bz2) = 232475 Added: head/sysutils/libg15/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/libg15/pkg-descr Tue Dec 15 22:04:05 2020 (r558187) @@ -0,0 +1,4 @@ +API for control of the LCD display and the extra keys on some +Logitech keyboards. + +WWW: https://sourceforge.net/projects/g15tools Added: head/sysutils/libg15/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/libg15/pkg-plist Tue Dec 15 22:04:05 2020 (r558187) @@ -0,0 +1,5 @@ +include/libg15.h +lib/libg15.a +lib/libg15.so +lib/libg15.so.1 +lib/libg15.so.1.0.0 Added: head/sysutils/libg15render/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/libg15render/Makefile Tue Dec 15 22:04:05 2020 (r558187) @@ -0,0 +1,22 @@ +# $FreeBSD$ + +PORTNAME= libg15render +PORTVERSION= 1.2 +CATEGORIES= sysutils +MASTER_SITES= SF/g15tools/libg15render/${PORTVERSION} + +MAINTAINER= menelkir@itroll.org +COMMENT= Library to render the LCD screen on Logitech keyboards + +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING + +LIB_DEPENDS= libg15.so:sysutils/libg15 + +USES= compiler:gcc-c++11-lib gmake libtool tar:bzip2 + +GNU_CONFIGURE= yes +INSTALL_TARGET= install-strip +USE_LDCONFIG= yes + +.include Added: head/sysutils/libg15render/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/libg15render/distinfo Tue Dec 15 22:04:05 2020 (r558187) @@ -0,0 +1,3 @@ +TIMESTAMP = 1602857268 +SHA256 (libg15render-1.2.tar.bz2) = d22335af6a17ec44799da82671778d2072499b26c5773ab913d9ba20d159d20f +SIZE (libg15render-1.2.tar.bz2) = 246034 Added: head/sysutils/libg15render/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/libg15render/pkg-descr Tue Dec 15 22:04:05 2020 (r558187) @@ -0,0 +1,3 @@ +Render text and graphics to a buffer usable by libg15. + +WWW: https://sourceforge.net/projects/g15tools Added: head/sysutils/libg15render/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/libg15render/pkg-plist Tue Dec 15 22:04:05 2020 (r558187) @@ -0,0 +1,6 @@ +include/libg15render.h +lib/libg15render.a +lib/libg15render.so +lib/libg15render.so.1 +lib/libg15render.so.1.1.0 +man/man3/libg15render.3.gz