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 91E2E15808B for ; Tue, 22 Feb 2022 10:36:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C08D5E0B28; Tue, 22 Feb 2022 10:36:36 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 pigeon.gentoo.org (Postfix) with ESMTPS id A58C1E0B28 for ; Tue, 22 Feb 2022 10:36:36 +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 B87AB3430B1 for ; Tue, 22 Feb 2022 10:36:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 126E62EA for ; Tue, 22 Feb 2022 10:36:34 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1645526189.0022435d4704b2e41b89091b0229a77c79354ce0.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/libredwg/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/libredwg/libredwg-0.12.5.ebuild X-VCS-Directories: media-gfx/libredwg/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 0022435d4704b2e41b89091b0229a77c79354ce0 X-VCS-Branch: master Date: Tue, 22 Feb 2022 10:36: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: 400e3f55-ee92-4b05-b349-5ce6c54ef3ff X-Archives-Hash: ae80ab2fc2a039f8f8b150077e70983c commit: 0022435d4704b2e41b89091b0229a77c79354ce0 Author: Andrew Ammerlaan gentoo org> AuthorDate: Tue Feb 22 10:36:08 2022 +0000 Commit: Andrew Ammerlaan gentoo org> CommitDate: Tue Feb 22 10:36:29 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0022435d media-gfx/libredwg: 0.12.5: fix install of perl bindings This broke because we moved from the release tarball to the tagged tarball Closes: https://bugs.gentoo.org/833881 Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Andrew Ammerlaan gentoo.org> media-gfx/libredwg/libredwg-0.12.5.ebuild | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/media-gfx/libredwg/libredwg-0.12.5.ebuild b/media-gfx/libredwg/libredwg-0.12.5.ebuild index 0d74bb5e092f..8f14bdef8e11 100644 --- a/media-gfx/libredwg/libredwg-0.12.5.ebuild +++ b/media-gfx/libredwg/libredwg-0.12.5.ebuild @@ -55,6 +55,8 @@ src_unpack() { src_prepare() { default + # Fix variable references itself error, fails in src_install otherwise. + sed -i -e 's/TEXINPUTS="$(TEXINPUTS)$(PATH_SEPARATOR)$(TEXINFO_TEX_DIR)"/TEXINPUTS="$(PATH_SEPARATOR)$(TEXINFO_TEX_DIR)"/g' doc/Makefile.am || die # https://github.com/LibreDWG/libredwg/issues/404 # Workaround: release tarball does not include dwg2ps.1. # Upstream autotools stuff has to be run in git repo @@ -89,11 +91,6 @@ src_configure() { fi econf ${myconf[@]} - - # Fix variable references itself error, fails in src_install otherwise. - # Can't put this in src_prepare and use eautoreconf because eautoreconf - # only works inside a git repository for this package. - sed -i -e 's/TEXINPUTS = "$(TEXINPUTS)$(PATH_SEPARATOR)$(TEXINFO_TEX_DIR)"/TEXINPUTS += "$(PATH_SEPARATOR)$(TEXINFO_TEX_DIR)"/g' doc/Makefile || die } src_compile() { @@ -106,5 +103,4 @@ src_install() { perl_set_version default use python && python_optimize - use perl && perl_domodule bindings/perl/LibreDWG.pm }