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 0E6E2158041 for ; Tue, 7 Sep 2021 11:58:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5C860E095E; Tue, 7 Sep 2021 11:58:14 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 44333E095E for ; Tue, 7 Sep 2021 11:58:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 68F4C342AAC for ; Tue, 7 Sep 2021 11:58:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 059AC79 for ; Tue, 7 Sep 2021 11:58:12 +0000 (UTC) From: "Alessandro Barbieri" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alessandro Barbieri" Message-ID: <1631015851.8b7db9595598dc007c54c3739272b63421864945.Alessandro-Barbieri@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: sci-mathematics/chaco/ X-VCS-Repository: repo/proj/guru X-VCS-Files: sci-mathematics/chaco/chaco-2.2-r1.ebuild sci-mathematics/chaco/chaco-2.2-r2.ebuild X-VCS-Directories: sci-mathematics/chaco/ X-VCS-Committer: Alessandro-Barbieri X-VCS-Committer-Name: Alessandro Barbieri X-VCS-Revision: 8b7db9595598dc007c54c3739272b63421864945 X-VCS-Branch: dev Date: Tue, 7 Sep 2021 11:58:12 +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: 4a3ddd99-65a3-4665-9433-b31581489fac X-Archives-Hash: e4feb62107fc4d9b2079e47b5edf2155 commit: 8b7db9595598dc007c54c3739272b63421864945 Author: Alessandro Barbieri gmail com> AuthorDate: Tue Sep 7 11:57:31 2021 +0000 Commit: Alessandro Barbieri gmail com> CommitDate: Tue Sep 7 11:57:31 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8b7db959 sci-mathematics/chaco: change file layout Signed-off-by: Alessandro Barbieri gmail.com> sci-mathematics/chaco/{chaco-2.2-r1.ebuild => chaco-2.2-r2.ebuild} | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/sci-mathematics/chaco/chaco-2.2-r1.ebuild b/sci-mathematics/chaco/chaco-2.2-r2.ebuild similarity index 84% rename from sci-mathematics/chaco/chaco-2.2-r1.ebuild rename to sci-mathematics/chaco/chaco-2.2-r2.ebuild index 499b1253a..c774dd464 100644 --- a/sci-mathematics/chaco/chaco-2.2-r1.ebuild +++ b/sci-mathematics/chaco/chaco-2.2-r2.ebuild @@ -27,10 +27,12 @@ src_compile() { src_install() { dodoc -r doc/. - dodoc -r "code/matlab" + insinto "/usr/share/octave/packages/${PN}" + doins -r code/matlab/* cd "exec" || die dobin "chaco" dolib.so "libchaco.so" - dodoc *.coords *.graph "User_Params" + insinto "/usr/share/${PN}" + doins *.coords *.graph "User_Params" newdoc README README_exec }