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 3D77B138334 for ; Thu, 2 Aug 2018 20:19:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 59841E0844; Thu, 2 Aug 2018 20:19:43 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 2C0F4E0844 for ; Thu, 2 Aug 2018 20:19:43 +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 14A04335CD7 for ; Thu, 2 Aug 2018 20:19:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 06D90394 for ; Thu, 2 Aug 2018 20:19:40 +0000 (UTC) From: "Bernard Cafarelli" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Bernard Cafarelli" Message-ID: <1533241076.3a64afde18a7c7fca8b18b892ac80fa1ca7a5584.voyageur@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmpower/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-plugins/wmpower/wmpower-0.4.3-r1.ebuild X-VCS-Directories: x11-plugins/wmpower/ X-VCS-Committer: voyageur X-VCS-Committer-Name: Bernard Cafarelli X-VCS-Revision: 3a64afde18a7c7fca8b18b892ac80fa1ca7a5584 X-VCS-Branch: master Date: Thu, 2 Aug 2018 20:19:40 +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: 5155a67b-015c-4344-ae20-757f0298c7f0 X-Archives-Hash: 73a4e270e6ad59dc35d3467d664e654d commit: 3a64afde18a7c7fca8b18b892ac80fa1ca7a5584 Author: Michael Mair-Keimberger gmail com> AuthorDate: Mon Jul 23 18:38:32 2018 +0000 Commit: Bernard Cafarelli gentoo org> CommitDate: Thu Aug 2 20:17:56 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a64afde x11-plugins/wmpower: EAPI7, improve ebuild x11-plugins/wmpower/wmpower-0.4.3-r1.ebuild | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/x11-plugins/wmpower/wmpower-0.4.3-r1.ebuild b/x11-plugins/wmpower/wmpower-0.4.3-r1.ebuild new file mode 100644 index 00000000000..6a4a750ff07 --- /dev/null +++ b/x11-plugins/wmpower/wmpower-0.4.3-r1.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="a dockapp to get/set power management status for laptops (APM, ACPI +and CPUfreq)" +HOMEPAGE="http://wmpower.sourceforge.net/" +SRC_URI="mirror://sourceforge/wmpower/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" + +RDEPEND="x11-libs/libX11 + x11-libs/libXext + x11-libs/libXpm" +DEPEND="${RDEPEND} + x11-base/xorg-proto" + +DOCS=( AUTHORS BUGS ChangeLog LEGGIMI NEWS README README.compal THANKS TODO ) + +src_compile() { + # override wmpower self-calculated cflags + econf MY_CFLAGS="${CFLAGS}" + emake prefix="/usr/" +}