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 6DA7A158091 for ; Wed, 8 Jun 2022 03:06:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4DA4DE0867; Wed, 8 Jun 2022 03:06:40 +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 2A5DFE0867 for ; Wed, 8 Jun 2022 03:06:38 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 01FFD340F9E for ; Wed, 8 Jun 2022 03:06:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 87E5D46D for ; Wed, 8 Jun 2022 03:06:04 +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: <1654657549.6853b3940b9360206ce24ae64a1af18a2d98802d.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/xapian-omega/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/xapian-omega/xapian-omega-1.4.19.ebuild X-VCS-Directories: app-text/xapian-omega/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 6853b3940b9360206ce24ae64a1af18a2d98802d X-VCS-Branch: master Date: Wed, 8 Jun 2022 03:06:04 +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: cb3ef0dc-47c3-4400-b951-c204cba379e3 X-Archives-Hash: 9e1be37992e4d1c0513fe4a117c3a485 commit: 6853b3940b9360206ce24ae64a1af18a2d98802d Author: Sam James gentoo org> AuthorDate: Wed Jun 8 03:05:49 2022 +0000 Commit: Sam James gentoo org> CommitDate: Wed Jun 8 03:05:49 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6853b394 app-text/xapian-omega: fix prefix install Closes: https://bugs.gentoo.org/699426 Signed-off-by: Sam James gentoo.org> app-text/xapian-omega/xapian-omega-1.4.19.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app-text/xapian-omega/xapian-omega-1.4.19.ebuild b/app-text/xapian-omega/xapian-omega-1.4.19.ebuild index 8095ec6dba1f..91ff25791e25 100644 --- a/app-text/xapian-omega/xapian-omega-1.4.19.ebuild +++ b/app-text/xapian-omega/xapian-omega-1.4.19.ebuild @@ -13,14 +13,14 @@ SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" IUSE="" -DEPEND="~dev-libs/xapian-1.4.19:0/30 +DEPEND="~dev-libs/xapian-${PV}:0/30 dev-lang/perl dev-libs/libpcre sys-libs/zlib" RDEPEND="${DEPEND}" src_install() { - emake DESTDIR="${D}" install + emake DESTDIR="${D}" PREFIX="${EPREFIX}" install # Protect /etc/omega.conf echo "CONFIG_PROTECT=\"/etc/omega.conf\"" > "${T}"/20xapian-omega @@ -32,7 +32,7 @@ src_install() { # Directory containing OmegaScript templates: keepdir /var/lib/omega/templates - mv "${S}"/templates/* "${D}"/var/lib/omega/templates || die + mv "${S}"/templates/* "${ED}"/var/lib/omega/templates || die # Directory to write Omega logs to: keepdir /var/log/omega