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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 76E8E158092 for ; Sun, 12 Sep 2021 09:13:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C325AE0729; Sun, 12 Sep 2021 09:13:38 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 569B9E0729 for ; Sun, 12 Sep 2021 09:13:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 35533342D66 for ; Sun, 12 Sep 2021 09:13:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B7FE955 for ; Sun, 12 Sep 2021 09:13:35 +0000 (UTC) From: "Alfredo Tupone" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alfredo Tupone" Message-ID: <1631437998.0c844a6603dbd16e406cb4f9e97a30ca87d05209.tupone@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/facile/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ml/facile/facile-1.1.3.ebuild X-VCS-Directories: dev-ml/facile/ X-VCS-Committer: tupone X-VCS-Committer-Name: Alfredo Tupone X-VCS-Revision: 0c844a6603dbd16e406cb4f9e97a30ca87d05209 X-VCS-Branch: master Date: Sun, 12 Sep 2021 09:13:35 +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: 655051a7-ba0c-4bcb-a950-784c62bcbb5e X-Archives-Hash: c2b0d1df65dec8f23d9b741b689a1c72 commit: 0c844a6603dbd16e406cb4f9e97a30ca87d05209 Author: Alfredo Tupone gentoo org> AuthorDate: Sun Sep 12 09:13:18 2021 +0000 Commit: Alfredo Tupone gentoo org> CommitDate: Sun Sep 12 09:13:18 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c844a66 dev-ml/facile: VariableScope Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Alfredo Tupone gentoo.org> dev-ml/facile/facile-1.1.3.ebuild | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/dev-ml/facile/facile-1.1.3.ebuild b/dev-ml/facile/facile-1.1.3.ebuild index 06cb817ed4b..2ae3f2c3be8 100644 --- a/dev-ml/facile/facile-1.1.3.ebuild +++ b/dev-ml/facile/facile-1.1.3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -18,8 +18,6 @@ DEPEND="${RDEPEND} sys-apps/sed " -DOCS=( README ) - PATCHES=( "${FILESDIR}/${PN}"-1.1-make.patch ) # Fix building on FreeBSD src_prepare() { @@ -35,11 +33,14 @@ src_prepare() { -e 's:^.*facile\.cmxa::'\ -e 's:^.*facile\.a::' Makefile || die "failed to remove native code objects" fi + sed -i \ + -e 's|$(FACILE|$(DESTDIR)$(FACILE|g' \ + Makefile || die } src_configure() { # This is a custom configure script and it does not support standard options - ./configure --faciledir "${D}"$(ocamlc -where)/facile/ || die + ./configure || die } src_test() { @@ -48,6 +49,5 @@ src_test() { src_install() { dodir $(ocamlc -where) - emake install - einstalldocs + default }