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 2A97215817D for ; Thu, 13 Jun 2024 19:16:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6B36CE2A84; Thu, 13 Jun 2024 19:16:57 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 48AAAE2A84 for ; Thu, 13 Jun 2024 19:16:57 +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 686E3335D72 for ; Thu, 13 Jun 2024 19:16:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0000411DF for ; Thu, 13 Jun 2024 19:16:54 +0000 (UTC) From: "Dale Sweeney" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Dale Sweeney" Message-ID: <1718306168.254f7bde8190de9796f8ead3b567c1993aeede9a.agooglygooglr@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-util/dmg2img/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-util/dmg2img/dmg2img-9999.ebuild X-VCS-Directories: dev-util/dmg2img/ X-VCS-Committer: agooglygooglr X-VCS-Committer-Name: Dale Sweeney X-VCS-Revision: 254f7bde8190de9796f8ead3b567c1993aeede9a X-VCS-Branch: dev Date: Thu, 13 Jun 2024 19:16:54 +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: 883e685d-6fed-4e80-b194-2f4a999cdd9d X-Archives-Hash: a9556bd3082449a4b364054d88933984 commit: 254f7bde8190de9796f8ead3b567c1993aeede9a Author: Dale Sweeney gmail com> AuthorDate: Thu Jun 13 19:15:03 2024 +0000 Commit: Dale Sweeney gmail com> CommitDate: Thu Jun 13 19:16:08 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=254f7bde dev-util/dmg2img: Fix QA issues in ebuild Signed-off-by: Dale Sweeney gmail.com> dev-util/dmg2img/dmg2img-9999.ebuild | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/dev-util/dmg2img/dmg2img-9999.ebuild b/dev-util/dmg2img/dmg2img-9999.ebuild old mode 100755 new mode 100644 index d7431763f..dcf71675a --- a/dev-util/dmg2img/dmg2img-9999.ebuild +++ b/dev-util/dmg2img/dmg2img-9999.ebuild @@ -3,11 +3,12 @@ EAPI=8 -inherit toolchain-funcs git-r3 +inherit git-r3 toolchain-funcs EGIT_REPO_URI="https://github.com/Lekensteyn/dmg2img" DESCRIPTION="Convert Apple disk images to IMG format." +HOMEPAGE="https://github.com/Lekensteyn/dmg2img" LICENSE="GPL-2" SLOT="0" IUSE="lzfse" @@ -22,9 +23,9 @@ RDEPEND="${DEPEND}" BDEPEND="${DEPEND}" src_compile() { - emake HAVE_LZFSE=$(usex lzfse 1 0) CC=$(tc-getCC) CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" + emake HAVE_LZFSE=$(usex lzfse 1 0) CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" } src_install() { - emake DESTDIR=${ED} install + emake DESTDIR="${ED}" install }