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 33F2913835A for ; Fri, 16 Apr 2021 04:47:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B4669E0828; Fri, 16 Apr 2021 04:47:38 +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 9E1D9E0828 for ; Fri, 16 Apr 2021 04:47:38 +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 A3C5B340C35 for ; Fri, 16 Apr 2021 04:47:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 50DFB71D for ; Fri, 16 Apr 2021 04:47:34 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1618548413.1b292faf45d4683059b8c70e4f90b4f58e3b7126.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/xearth/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/xearth/xearth-1.1-r1.ebuild X-VCS-Directories: x11-misc/xearth/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 1b292faf45d4683059b8c70e4f90b4f58e3b7126 X-VCS-Branch: master Date: Fri, 16 Apr 2021 04:47:34 +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: d89f28e6-1d4f-494b-83ef-502c80b6889e X-Archives-Hash: 5fb168459c6e752b0b4aa85491c22fce commit: 1b292faf45d4683059b8c70e4f90b4f58e3b7126 Author: Ionen Wolkens gmail com> AuthorDate: Thu Apr 15 17:21:40 2021 +0000 Commit: Sam James gentoo org> CommitDate: Fri Apr 16 04:46:53 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b292faf x11-misc/xearth: EAPI-7 bump, eutils drop, tidy Signed-off-by: Ionen Wolkens gmail.com> Signed-off-by: Sam James gentoo.org> x11-misc/xearth/xearth-1.1-r1.ebuild | 39 ++++++++++++++++++------------------ 1 file changed, 20 insertions(+), 19 deletions(-) diff --git a/x11-misc/xearth/xearth-1.1-r1.ebuild b/x11-misc/xearth/xearth-1.1-r1.ebuild index cbd3a60f818..542041ede4a 100644 --- a/x11-misc/xearth/xearth-1.1-r1.ebuild +++ b/x11-misc/xearth/xearth-1.1-r1.ebuild @@ -1,34 +1,33 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=7 -inherit eutils toolchain-funcs +inherit toolchain-funcs +DESCRIPTION="Set the X root window to an image of the Earth" HOMEPAGE="https://hewgill.com/xearth/original/" -DESCRIPTION="Xearth sets the X root window to an image of the Earth" SRC_URI="ftp://cag.lcs.mit.edu/pub/tuna/${P}.tar.gz ftp://ftp.cs.colorado.edu/users/tuna/${P}.tar.gz" -SLOT="0" LICENSE="xearth" +SLOT="0" KEYWORDS="~alpha amd64 ppc ppc64 x86" -IUSE="" RDEPEND=" x11-libs/libX11 x11-libs/libXext - x11-libs/libXt -" -DEPEND="${RDEPEND} - x11-base/xorg-proto - >=x11-misc/imake-1.0.8-r1 + x11-libs/libXt" +DEPEND="${RDEPEND}" +BDEPEND=" app-text/rman -" + x11-base/xorg-proto + >=x11-misc/imake-1.0.8-r1" -src_prepare() { - epatch "${FILESDIR}"/${P}-include.patch -} +PATCHES=( + "${FILESDIR}"/${P}-include.patch +) +DOCS=( BUILT-IN GAMMA-TEST HISTORY README ) src_configure() { CC="$(tc-getBUILD_CC)" LD="$(tc-getLD)" \ @@ -36,14 +35,16 @@ src_configure() { } src_compile() { - emake \ - CC="$(tc-getCC)" \ - CDEBUGFLAGS="${CFLAGS}" \ + local myemakeargs=( + CC="$(tc-getCC)" + CDEBUGFLAGS="${CFLAGS}" EXTRA_LDOPTIONS="${LDFLAGS}" + ) + emake "${myemakeargs[@]}" } src_install() { - newman xearth.man xearth.1 dobin xearth - dodoc BUILT-IN GAMMA-TEST HISTORY README + newman xearth.man xearth.1 + einstalldocs }