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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2C77415800F for ; Wed, 4 Jan 2023 04:32:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5C2C0E07EA; Wed, 4 Jan 2023 04:32:44 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 42A45E07EA for ; Wed, 4 Jan 2023 04:32:44 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3635D340E5F for ; Wed, 4 Jan 2023 04:32:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 89EA37F4 for ; Wed, 4 Jan 2023 04:32:41 +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: <1672806716.1ca361f8af93577b80d29ef027b371dfad0ea1ad.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/xdialog/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/xdialog/xdialog-2.3.1-r1.ebuild x11-misc/xdialog/xdialog-2.3.1.ebuild X-VCS-Directories: x11-misc/xdialog/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 1ca361f8af93577b80d29ef027b371dfad0ea1ad X-VCS-Branch: master Date: Wed, 4 Jan 2023 04:32:41 +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: 12d3e9f0-7496-41d3-94dc-74b9a77c2a17 X-Archives-Hash: 8e7f3843420d049bf46e8231b954f493 commit: 1ca361f8af93577b80d29ef027b371dfad0ea1ad Author: Sam James gentoo org> AuthorDate: Wed Jan 4 03:38:30 2023 +0000 Commit: Sam James gentoo org> CommitDate: Wed Jan 4 04:31:56 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ca361f8 x11-misc/xdialog: EAPI 8 Signed-off-by: Sam James gentoo.org> .../{xdialog-2.3.1.ebuild => xdialog-2.3.1-r1.ebuild} | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/x11-misc/xdialog/xdialog-2.3.1.ebuild b/x11-misc/xdialog/xdialog-2.3.1-r1.ebuild similarity index 73% rename from x11-misc/xdialog/xdialog-2.3.1.ebuild rename to x11-misc/xdialog/xdialog-2.3.1-r1.ebuild index e2052afacdc9..b04058431d62 100644 --- a/x11-misc/xdialog/xdialog-2.3.1.ebuild +++ b/x11-misc/xdialog/xdialog-2.3.1-r1.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 inherit autotools @@ -28,10 +28,16 @@ S="${WORKDIR}/${P/x/X}" DOCS=( AUTHORS BUGS ChangeLog README ) -PATCHES=( "${FILESDIR}"/${P}-{no-strip,install}.patch ) +PATCHES=( + "${FILESDIR}"/${P}-no-strip.patch + "${FILESDIR}"/${P}-install.patch +) src_prepare() { default + + sed -i -e 's:configure.in:configure.ac:' configure.in || die + eautoreconf } @@ -44,12 +50,12 @@ src_configure() { src_install() { default - rm -r "${D}"/usr/share/doc || die + rm -r "${ED}"/usr/share/doc || die use doc && local HTML_DOCS=( doc/. ) einstalldocs if use examples; then - insinto "/usr/share/doc/${PF}/examples" - doins samples/* + docinto examples + dodoc samples/* fi }