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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 282C61396D9 for ; Fri, 13 Oct 2017 13:50:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 34A71E0CCD; Fri, 13 Oct 2017 13:50:46 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 112DDE0CCD for ; Fri, 13 Oct 2017 13:50:45 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CFF2133BEBE for ; Fri, 13 Oct 2017 13:50:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 93BF09097 for ; Fri, 13 Oct 2017 13:50:43 +0000 (UTC) From: "Jeroen Roovers" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" Message-ID: <1507902641.1d1d6e3080bcdb6a5a38ae01ffa074e73eb05726.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/xsetleds/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/xsetleds/xsetleds-0.1.3-r2.ebuild X-VCS-Directories: x11-misc/xsetleds/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: 1d1d6e3080bcdb6a5a38ae01ffa074e73eb05726 X-VCS-Branch: master Date: Fri, 13 Oct 2017 13:50:43 +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-Archives-Salt: e95df66a-1a50-4091-8b80-cda7bc4924be X-Archives-Hash: 5777d9cbdde97cbf3e2444c21bd90256 commit: 1d1d6e3080bcdb6a5a38ae01ffa074e73eb05726 Author: Jeroen Roovers gentoo org> AuthorDate: Fri Oct 13 13:50:30 2017 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Fri Oct 13 13:50:41 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d1d6e30 x11-misc/xsetleds: Fix HOMEPAGE, add alternative SRC_URI. Package-Manager: Portage-2.3.11, Repoman-2.3.3 x11-misc/xsetleds/xsetleds-0.1.3-r2.ebuild | 38 ++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/x11-misc/xsetleds/xsetleds-0.1.3-r2.ebuild b/x11-misc/xsetleds/xsetleds-0.1.3-r2.ebuild new file mode 100644 index 00000000000..a7fea73b665 --- /dev/null +++ b/x11-misc/xsetleds/xsetleds-0.1.3-r2.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit toolchain-funcs + +DESCRIPTION="small tool to report and change the keyboard LED states of an X display" +HOMEPAGE="https://github.com/bmeurer/xsetleds" +SRC_URI=" + ftp://ftp.unix-ag.org/user/bmeurer/xsetleds/src/${P}.tar.gz + https://dev.gentoo.org/~jer/${P}.tar.gz +" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~sparc ~x86" + +RDEPEND=" + x11-libs/libX11 + x11-libs/libXtst +" +DEPEND=" + ${RDEPEND} + x11-proto/inputproto + x11-proto/xextproto + x11-proto/xproto +" +PATCHES=( + "${FILESDIR}"/${P}-assignment.patch + "${FILESDIR}"/${P}-isalpha.patch +) + +src_prepare() { + default + tc-export CC +} + +DOCS=( AUTHORS ChangeLog README TODO )