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 628E6138332 for ; Tue, 29 May 2018 13:18:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 22C32E07ED; Tue, 29 May 2018 13:18:10 +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 E182CE07A5 for ; Tue, 29 May 2018 13:18:09 +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 3FFB1335C79 for ; Tue, 29 May 2018 13:18:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 729F22B5 for ; Tue, 29 May 2018 13:18:06 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1527599869.98410ba1c30bb7d22d2f234a7205e7c189592f04.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmbio/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-plugins/wmbio/wmbio-1.02.ebuild X-VCS-Directories: x11-plugins/wmbio/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: 98410ba1c30bb7d22d2f234a7205e7c189592f04 X-VCS-Branch: master Date: Tue, 29 May 2018 13:18:06 +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: 4cdcd3cc-9443-4332-97ca-832c61513833 X-Archives-Hash: 2c2cfedb9dc9e2de03699222e3158e6a commit: 98410ba1c30bb7d22d2f234a7205e7c189592f04 Author: Aaron Bauman gentoo org> AuthorDate: Mon May 28 23:43:45 2018 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Tue May 29 13:17:49 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98410ba1 x11-plugins/wmbio: bump EAPI and drop eutils Package-Manager: Portage-2.3.40, Repoman-2.3.9 x11-plugins/wmbio/wmbio-1.02.ebuild | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/x11-plugins/wmbio/wmbio-1.02.ebuild b/x11-plugins/wmbio/wmbio-1.02.ebuild index b6fcce6d415..b2be120eed9 100644 --- a/x11-plugins/wmbio/wmbio-1.02.ebuild +++ b/x11-plugins/wmbio/wmbio-1.02.ebuild @@ -1,8 +1,7 @@ # Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=2 -inherit eutils +EAPI=6 DESCRIPTION="A Window Maker applet that shows your biorhythm" HOMEPAGE="http://wmbio.sourceforge.net/" @@ -22,18 +21,15 @@ DEPEND="${RDEPEND} S=${WORKDIR}/${P}/src src_prepare() { + default # Honour Gentoo CFLAGS - sed -i "s/-g -O2/\$(CFLAGS)/" Makefile + sed -i "s/-g -O2/\$(CFLAGS)/" Makefile || die "sed for CFLAGS failed" # Honour Gentoo LDFLAGS - sed -i "s/-o wmbio/\$(LDFLAGS) -o wmbio/" Makefile -} - -src_compile() { - emake || die "emake failed" + sed -i "s/-o wmbio/\$(LDFLAGS) -o wmbio/" Makefile || die "sed for LDFLAGS failed" } src_install () { - dobin wmbio || die "dobin failed" - dodoc ../{AUTHORS,Changelog,NEWS,README} || die + dobin wmbio + dodoc ../{AUTHORS,Changelog,NEWS,README} }