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 C0B5A1580D3 for ; Mon, 20 Nov 2023 19:17:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0F8C72BC068; Mon, 20 Nov 2023 19:17:32 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EAF7F2BC068 for ; Mon, 20 Nov 2023 19:17:31 +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 3DD10335D46 for ; Mon, 20 Nov 2023 19:17:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CF2F710F0 for ; Mon, 20 Nov 2023 19:17:29 +0000 (UTC) From: "Maciej Barć" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Maciej Barć" Message-ID: <1700507846.73e7c34f32850b62dbbe7c437d9ddb082f62ce84.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/pinta/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/pinta/pinta-2.1.1-r1.ebuild media-gfx/pinta/pinta-2.1.1.ebuild X-VCS-Directories: media-gfx/pinta/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: 73e7c34f32850b62dbbe7c437d9ddb082f62ce84 X-VCS-Branch: master Date: Mon, 20 Nov 2023 19:17:29 +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: 2202a651-b1bc-4463-b270-c82b480c2732 X-Archives-Hash: 130a42b430b27c241aa74b0786e6adb1 commit: 73e7c34f32850b62dbbe7c437d9ddb082f62ce84 Author: Maciej Barć gentoo org> AuthorDate: Mon Nov 20 14:51:29 2023 +0000 Commit: Maciej Barć gentoo org> CommitDate: Mon Nov 20 19:17:26 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73e7c34f media-gfx/pinta: fix pinta launcher script Signed-off-by: Maciej Barć gentoo.org> media-gfx/pinta/{pinta-2.1.1.ebuild => pinta-2.1.1-r1.ebuild} | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/media-gfx/pinta/pinta-2.1.1.ebuild b/media-gfx/pinta/pinta-2.1.1-r1.ebuild similarity index 90% rename from media-gfx/pinta/pinta-2.1.1.ebuild rename to media-gfx/pinta/pinta-2.1.1-r1.ebuild index 0c8314e184e8..d3493a121fb7 100644 --- a/media-gfx/pinta/pinta-2.1.1.ebuild +++ b/media-gfx/pinta/pinta-2.1.1-r1.ebuild @@ -123,6 +123,13 @@ src_compile() { src_install() { emake DESTDIR="${ED}" install + local pinta_home="/usr/$(get_libdir)/${PN}" + + mv "${ED}/usr/bin/pinta" "${ED}/${pinta_home}" || die + sed -e 's|dotnet|${DOTNET_ROOT}/dotnet|g' -i "${ED}/${pinta_home}/pinta" \ + || die # No interpolation! + dotnet-pkg-base_dolauncher "${pinta_home}/${PN}" "${PN}" + rm "${ED}/usr/share/man/man1/${PN}.1.gz" || die doman xdg/${PN}.1 }