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 517C7138239 for ; Sat, 25 May 2019 20:59:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6AEE7E086D; Sat, 25 May 2019 20:59:21 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 4E914E086D for ; Sat, 25 May 2019 20:59:21 +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 03ED3345015 for ; Sat, 25 May 2019 20:59:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DF150601 for ; Sat, 25 May 2019 20:59:15 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1558817682.216d53788f12a6852dedf39929e0c56e8c8f63b4.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/mx5000tools/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/mx5000tools/mx5000tools-0.1.2-r1.ebuild X-VCS-Directories: app-misc/mx5000tools/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 216d53788f12a6852dedf39929e0c56e8c8f63b4 X-VCS-Branch: master Date: Sat, 25 May 2019 20:59:15 +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: b0c5b244-d24e-4c89-a679-84e8c67ec328 X-Archives-Hash: c2d6ff8503da7982fd7a7ac626f78e44 commit: 216d53788f12a6852dedf39929e0c56e8c8f63b4 Author: Conrad Kostecki kostecki com> AuthorDate: Sat May 25 20:25:41 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat May 25 20:54:42 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=216d5378 app-misc/mx5000tools: add missing dependencies I've forgotten to add two dependencies, so it could fail on some systems. There are dev-libs/glib and virtual/pkgconfig. Closes: https://bugs.gentoo.org/685054 Package-Manager: Portage-2.3.66, Repoman-2.3.12 Signed-off-by: Conrad Kostecki kostecki.com> Closes: https://github.com/gentoo/gentoo/pull/11900 Signed-off-by: Andreas Sturmlechner gentoo.org> app-misc/mx5000tools/mx5000tools-0.1.2-r1.ebuild | 42 ++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/app-misc/mx5000tools/mx5000tools-0.1.2-r1.ebuild b/app-misc/mx5000tools/mx5000tools-0.1.2-r1.ebuild new file mode 100644 index 00000000000..75f0d1a2f73 --- /dev/null +++ b/app-misc/mx5000tools/mx5000tools-0.1.2-r1.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools + +DESCRIPTION="Tools for controlling the LCD on a Logitech MX5000 keyboard" +HOMEPAGE="https://web.archive.org/web/20160409073317/http://home.gna.org/mx5000tools/" +SRC_URI="https://web.archive.org/web/20170225160711/http://download.gna.org/${PN}/${P}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" + +RDEPEND=" + dev-libs/glib:2 + media-libs/netpbm:= +" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +PATCHES=( "${FILESDIR}/${P}-find-netpbm-header.patch" ) + +src_prepare() { + default + + eautoreconf +} +src_configure() { + local myeconfargs=( + --disable-static + ) + + econf "${myeconfargs[@]}" +} + +src_install() { + default + + find "${D}" -name '*.la' -delete || die +}