From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1600372-garchives=archives.gentoo.org@lists.gentoo.org>
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 830B015808B
	for <garchives@archives.gentoo.org>; Thu, 15 Feb 2024 00:33:26 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id A0465E2A28;
	Thu, 15 Feb 2024 00:33:25 +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 865F7E2A28
	for <gentoo-commits@lists.gentoo.org>; Thu, 15 Feb 2024 00:33:25 +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 B78B9343090
	for <gentoo-commits@lists.gentoo.org>; Thu, 15 Feb 2024 00:33:24 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 46B2311CF
	for <gentoo-commits@lists.gentoo.org>; Thu, 15 Feb 2024 00:33:22 +0000 (UTC)
From: "Vitaly Zdanevich" <zdanevich.vitaly@ya.ru>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Vitaly Zdanevich" <zdanevich.vitaly@ya.ru>
Message-ID: <1707957198.23960af27ad9f4c10d886d38e85eeb686d4bf1f7.zdanevich.vitaly@gentoo>
Subject: [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/openrefine/
X-VCS-Repository: repo/proj/guru
X-VCS-Files: gui-apps/openrefine/openrefine-3.7.9.ebuild
X-VCS-Directories: gui-apps/openrefine/
X-VCS-Committer: zdanevich.vitaly
X-VCS-Committer-Name: Vitaly Zdanevich
X-VCS-Revision: 23960af27ad9f4c10d886d38e85eeb686d4bf1f7
X-VCS-Branch: dev
Date: Thu, 15 Feb 2024 00:33:22 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: df0cb3d4-e5db-4d9f-a925-dd6e4d53568b
X-Archives-Hash: 4b1eb63bc24ef7112ffee570a6bcf2b6

commit:     23960af27ad9f4c10d886d38e85eeb686d4bf1f7
Author:     Vitaly Zdanevich <zdanevich.vitaly <AT> ya <DOT> ru>
AuthorDate: Thu Feb 15 00:33:18 2024 +0000
Commit:     Vitaly Zdanevich <zdanevich.vitaly <AT> ya <DOT> ru>
CommitDate: Thu Feb 15 00:33:18 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=23960af2

gui-apps/openrefine: use variable instead of hardcode

Signed-off-by: Vitaly Zdanevich <zdanevich.vitaly <AT> ya.ru>

 gui-apps/openrefine/openrefine-3.7.9.ebuild | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/gui-apps/openrefine/openrefine-3.7.9.ebuild b/gui-apps/openrefine/openrefine-3.7.9.ebuild
index afabfca9b9..c60b442528 100644
--- a/gui-apps/openrefine/openrefine-3.7.9.ebuild
+++ b/gui-apps/openrefine/openrefine-3.7.9.ebuild
@@ -31,10 +31,10 @@ src_install() {
 	cp -r . "${ED}/${apphome}" || die
 
 	make_wrapper refine "
-		env REFINE_LIB_DIR=/opt/openrefine/server/target/lib \
-		    REFINE_TOOLS_DIR=/opt/openrefine/tools \
-		    REFINE_CLASSES_DIR=/opt/openrefine/server/classes \
-		    REFINE_WEBAPP=/opt/openrefine/main/webapp /opt/openrefine/refine"
+		env REFINE_LIB_DIR=${apphome}/server/target/lib \
+		    REFINE_TOOLS_DIR=${apphome}/tools \
+		    REFINE_CLASSES_DIR=${apphome}/server/classes \
+		    REFINE_WEBAPP=${apphome}/main/webapp /opt/openrefine/refine"
 }
 
 pkg_postinst() {