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 D30C7139694 for ; Wed, 26 Jul 2017 11:35:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A31AC1FC0AC; Wed, 26 Jul 2017 11:34:57 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 8244D1FC0AC for ; Wed, 26 Jul 2017 11:34:57 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 349EC341840 for ; Wed, 26 Jul 2017 11:34:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CA10C74CE for ; Wed, 26 Jul 2017 11:34:53 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1501068870.4d68504044204604c3d1dd2aa5de5742e98fd03d.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/gkrellmwireless/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-plugins/gkrellmwireless/gkrellmwireless-2.0.3-r2.ebuild X-VCS-Directories: x11-plugins/gkrellmwireless/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 4d68504044204604c3d1dd2aa5de5742e98fd03d X-VCS-Branch: master Date: Wed, 26 Jul 2017 11:34:53 +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: da0cf96d-2e81-42f3-ae91-6bfefcde7559 X-Archives-Hash: 310a5205eb1b4c49179530274bce731c commit: 4d68504044204604c3d1dd2aa5de5742e98fd03d Author: Pacho Ramos gentoo org> AuthorDate: Wed Jul 26 10:59:38 2017 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Wed Jul 26 11:34:30 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d685040 x11-plugins/gkrellmwireless: Fix dependency on gkrellm[X] Package-Manager: Portage-2.3.6, Repoman-2.3.2 RepoMan-Options: --force .../gkrellmwireless-2.0.3-r2.ebuild | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/x11-plugins/gkrellmwireless/gkrellmwireless-2.0.3-r2.ebuild b/x11-plugins/gkrellmwireless/gkrellmwireless-2.0.3-r2.ebuild new file mode 100644 index 00000000000..85fd1b16079 --- /dev/null +++ b/x11-plugins/gkrellmwireless/gkrellmwireless-2.0.3-r2.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit gkrellm-plugin toolchain-funcs + +S="${WORKDIR}/${PN}" +DESCRIPTION="A plugin for GKrellM that monitors your wireless network card" +SRC_URI="http://gkrellm.luon.net/files/${P}.tar.gz" +HOMEPAGE="http://gkrellm.luon.net/gkrellmwireless.php" + +SLOT="2" +LICENSE="GPL-2" +KEYWORDS="amd64 ~ppc ~sparc x86" +IUSE="" + +RDEPEND="app-admin/gkrellm[X]" + +PLUGIN_SO=wireless.so + +src_prepare() { + default + sed -i \ + -e '/^CC =/s:gcc $(CFLAGS) $(FLAGS):'"$(tc-getCC)"' $(FLAGS) $(CFLAGS):' \ + -e '/-o wireless.so/s: : $(LDFLAGS) :' \ + Makefile || die +}