From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id 714C01580E0 for ; Sat, 01 Feb 2025 09:22:39 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 5A254343193 for ; Sat, 01 Feb 2025 09:22:39 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id B152F11046F; Sat, 01 Feb 2025 09:22:35 +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 bobolink.gentoo.org (Postfix) with ESMTPS id A83EF11046F for ; Sat, 01 Feb 2025 09:22:35 +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 58543343176 for ; Sat, 01 Feb 2025 09:22:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7201E1CE6 for ; Sat, 01 Feb 2025 09:22:33 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1738401653.7648a2badc36c4acdc7f51667ffa613d5fa832ce.flow@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/lowdown/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/lowdown/lowdown-1.3.2.ebuild app-text/lowdown/lowdown-1.4.0.ebuild X-VCS-Directories: app-text/lowdown/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: 7648a2badc36c4acdc7f51667ffa613d5fa832ce X-VCS-Branch: master Date: Sat, 01 Feb 2025 09:22:33 +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: 894a5cb3-02de-480d-85d4-3d40607a613a X-Archives-Hash: fc160fe86bae960ab9c9b25df672f556 commit: 7648a2badc36c4acdc7f51667ffa613d5fa832ce Author: NHOrus yahoo com> AuthorDate: Thu Jan 23 15:35:33 2025 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Sat Feb 1 09:20:53 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7648a2ba app-text/lowdown: fix prefix installation We can't switch to econf from configure, because this uses oconfigure[^1] and oconfigure doesn't recognize `--prefix` as valid command line argument only `PREFIX` [^1]: https://github.com/kristapsdz/oconfigure Co-authored-by: Christian Ludwig gmail.com> Closes: https://bugs.gentoo.org/947349 Signed-off-by: NHOrus yahoo.com> Closes: https://github.com/gentoo/gentoo/pull/40274 Signed-off-by: Florian Schmaus gentoo.org> app-text/lowdown/lowdown-1.3.2.ebuild | 6 +++--- app-text/lowdown/lowdown-1.4.0.ebuild | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/app-text/lowdown/lowdown-1.3.2.ebuild b/app-text/lowdown/lowdown-1.3.2.ebuild index d26df7daa0ed..5439d2e6de7c 100644 --- a/app-text/lowdown/lowdown-1.3.2.ebuild +++ b/app-text/lowdown/lowdown-1.3.2.ebuild @@ -52,11 +52,11 @@ src_configure() { tc-export CC AR ./configure \ - PREFIX="/usr" \ - MANDIR="/usr/share/man" \ + PREFIX="${EPREFIX}/usr" \ + MANDIR="${EPREFIX}/usr/share/man" \ LDFLAGS="${LDFLAGS}" \ CPPFLAGS="${CPPFLAGS}" \ - LIBDIR="/usr/$(get_libdir)" \ + LIBDIR="${EPREFIX}/usr/$(get_libdir)" \ || die "./configure failed" } diff --git a/app-text/lowdown/lowdown-1.4.0.ebuild b/app-text/lowdown/lowdown-1.4.0.ebuild index d26df7daa0ed..5439d2e6de7c 100644 --- a/app-text/lowdown/lowdown-1.4.0.ebuild +++ b/app-text/lowdown/lowdown-1.4.0.ebuild @@ -52,11 +52,11 @@ src_configure() { tc-export CC AR ./configure \ - PREFIX="/usr" \ - MANDIR="/usr/share/man" \ + PREFIX="${EPREFIX}/usr" \ + MANDIR="${EPREFIX}/usr/share/man" \ LDFLAGS="${LDFLAGS}" \ CPPFLAGS="${CPPFLAGS}" \ - LIBDIR="/usr/$(get_libdir)" \ + LIBDIR="${EPREFIX}/usr/$(get_libdir)" \ || die "./configure failed" }