From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1489399-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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0A6DF15802F for <garchives@archives.gentoo.org>; Thu, 23 Feb 2023 13:11:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5BF00E07C7; Thu, 23 Feb 2023 13:11:14 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3C4BCE07C7 for <gentoo-commits@lists.gentoo.org>; Thu, 23 Feb 2023 13:11:13 +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 8D700335D66 for <gentoo-commits@lists.gentoo.org>; Thu, 23 Feb 2023 13:11:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CE49E8A7 for <gentoo-commits@lists.gentoo.org>; Thu, 23 Feb 2023 13:11:10 +0000 (UTC) From: "Efe İzbudak" <efe.izbudak@metu.edu.tr> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Efe İzbudak" <efe.izbudak@metu.edu.tr> Message-ID: <1677157837.cd17c514cbb676b99d17e747657564936b76e475.efe.izbudak@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/someblocks/ X-VCS-Repository: repo/proj/guru X-VCS-Files: gui-apps/someblocks/someblocks-1.0.1.ebuild X-VCS-Directories: gui-apps/someblocks/ X-VCS-Committer: efe.izbudak X-VCS-Committer-Name: Efe İzbudak X-VCS-Revision: cd17c514cbb676b99d17e747657564936b76e475 X-VCS-Branch: dev Date: Thu, 23 Feb 2023 13:11:10 +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: 16552551-6373-494c-8ae6-9dfc6e8ed039 X-Archives-Hash: 35d400d9dc05f5a37c54e42e63c7176d commit: cd17c514cbb676b99d17e747657564936b76e475 Author: Efe İzbudak <efe.izbudak <AT> metu <DOT> edu <DOT> tr> AuthorDate: Thu Feb 23 13:07:42 2023 +0000 Commit: Efe İzbudak <efe.izbudak <AT> metu <DOT> edu <DOT> tr> CommitDate: Thu Feb 23 13:10:37 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=cd17c514 gui-apps/someblocks: prevent compiling in src_install Closes: https://bugs.gentoo.org/887715 Signed-off-by: Efe İzbudak <efe.izbudak <AT> metu.edu.tr> gui-apps/someblocks/someblocks-1.0.1.ebuild | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/gui-apps/someblocks/someblocks-1.0.1.ebuild b/gui-apps/someblocks/someblocks-1.0.1.ebuild index 707735f30..11c63b74e 100644 --- a/gui-apps/someblocks/someblocks-1.0.1.ebuild +++ b/gui-apps/someblocks/someblocks-1.0.1.ebuild @@ -17,10 +17,15 @@ src_prepare() { default sed -i -e 's:$(LDFLAGS):$(CPPFLAGS) $(CFLAGS) $(LDFLAGS):' Makefile \ || die "sed fix failed. Uh-oh..." - + # prevent compilation in install phase + sed -i -e "s/install: output/install:/g" Makefile restore_config blocks.h } +src_compile() { + emake output +} + src_install() { emake PREFIX="${ED}/usr" install