From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9E34415808D for ; Thu, 21 Apr 2022 19:55:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 55FABE0AAC; Thu, 21 Apr 2022 19:55:37 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4576EE0AA5 for ; Thu, 21 Apr 2022 19:55:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9FA4234193B for ; Thu, 21 Apr 2022 19:55:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 81B093BF for ; Thu, 21 Apr 2022 19:55:30 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1650570873.39591602289e35f98c2afb9b37003377eea7943a.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/gkrellm-vaiobright/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-plugins/gkrellm-vaiobright/gkrellm-vaiobright-2.5-r3.ebuild X-VCS-Directories: x11-plugins/gkrellm-vaiobright/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 39591602289e35f98c2afb9b37003377eea7943a X-VCS-Branch: master Date: Thu, 21 Apr 2022 19:55:30 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b93aef27-f67a-448e-87e7-11723386996c X-Archives-Hash: abaa47ae220f48203b83290fb084b718 commit: 39591602289e35f98c2afb9b37003377eea7943a Author: Thomas Bracht Laumann Jespersen laumann xyz> AuthorDate: Sat Mar 26 14:47:43 2022 +0000 Commit: Sam James gentoo org> CommitDate: Thu Apr 21 19:54:33 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39591602 x11-plugins/gkrellm-vaiobright: update EAPI 6 -> 8 Signed-off-by: Thomas Bracht Laumann Jespersen laumann.xyz> Signed-off-by: Sam James gentoo.org> .../gkrellm-vaiobright-2.5-r3.ebuild | 33 ++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/x11-plugins/gkrellm-vaiobright/gkrellm-vaiobright-2.5-r3.ebuild b/x11-plugins/gkrellm-vaiobright/gkrellm-vaiobright-2.5-r3.ebuild new file mode 100644 index 000000000000..8593c3874109 --- /dev/null +++ b/x11-plugins/gkrellm-vaiobright/gkrellm-vaiobright-2.5-r3.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit gkrellm-plugin toolchain-funcs + +MY_P=${P/gkrellm-/} + +DESCRIPTION="Superslim VAIO LCD Brightness Control Plugin for Gkrellm" +SRC_URI="http://nerv-un.net/~dragorn/code/${MY_P}.tar.gz" +HOMEPAGE="http://nerv-un.net/~dragorn/" +S="${WORKDIR}"/${MY_P} + +LICENSE="GPL-2" +SLOT="2" +KEYWORDS="~amd64 ~x86" + +RDEPEND="app-admin/gkrellm:2[X]" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +PATCHES=( + "${FILESDIR}"/${P}-textrel.patch + "${FILESDIR}"/${P}-fixinfo.patch +) + +src_configure() { + tc-export CC PKG_CONFIG + + PLUGIN_SO=( vaiobright$(get_modname) ) + default +}