From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1228004-garchives=archives.gentoo.org@lists.gentoo.org> 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 D97571382C5 for <garchives@archives.gentoo.org>; Thu, 3 Dec 2020 05:20:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 14583E084E; Thu, 3 Dec 2020 05:20:08 +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 F10BAE084E for <gentoo-commits@lists.gentoo.org>; Thu, 3 Dec 2020 05:20:07 +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 1EFD13411DF for <gentoo-commits@lists.gentoo.org>; Thu, 3 Dec 2020 05:20:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F11EE45B for <gentoo-commits@lists.gentoo.org>; Thu, 3 Dec 2020 05:20:02 +0000 (UTC) From: "Sam James" <sam@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" <sam@gentoo.org> Message-ID: <1606972198.4b8a98d5fb28db30e04dd0d9e8c028ddc3ecd18b.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/openimageio/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/openimageio/openimageio-2.2.8.0-r1.ebuild media-libs/openimageio/openimageio-2.2.8.0.ebuild X-VCS-Directories: media-libs/openimageio/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 4b8a98d5fb28db30e04dd0d9e8c028ddc3ecd18b X-VCS-Branch: master Date: Thu, 3 Dec 2020 05:20:02 +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: 871ddd02-343f-4546-86c6-aa137625df8d X-Archives-Hash: b8b173e6d9b4acda9cb38d65dcb71cc1 commit: 4b8a98d5fb28db30e04dd0d9e8c028ddc3ecd18b Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc> AuthorDate: Mon Nov 16 22:43:50 2020 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Thu Dec 3 05:09:58 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b8a98d5 media-libs/openimageio: fix font installation Closes: https://bugs.gentoo.org/679858 Package-Manager: Portage-3.0.8, Repoman-3.0.1 Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc> Signed-off-by: Sam James <sam <AT> gentoo.org> ...o-2.2.8.0.ebuild => openimageio-2.2.8.0-r1.ebuild} | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/media-libs/openimageio/openimageio-2.2.8.0.ebuild b/media-libs/openimageio/openimageio-2.2.8.0-r1.ebuild similarity index 89% rename from media-libs/openimageio/openimageio-2.2.8.0.ebuild rename to media-libs/openimageio/openimageio-2.2.8.0-r1.ebuild index 934cf38bd1c..78fe460252e 100644 --- a/media-libs/openimageio/openimageio-2.2.8.0.ebuild +++ b/media-libs/openimageio/openimageio-2.2.8.0-r1.ebuild @@ -3,8 +3,9 @@ EAPI=7 +FONT_PN=OpenImageIO PYTHON_COMPAT=( python3_{6..9} ) -inherit cmake python-single-r1 +inherit cmake font python-single-r1 DESCRIPTION="A library for reading and writing images" HOMEPAGE="https://sites.google.com/site/openimageio/ https://github.com/OpenImageIO" @@ -112,6 +113,7 @@ src_configure() { local mycmakeargs=( -DVERBOSE=ON -DOIIO_BUILD_TESTS=OFF + -DINSTALL_FONTS=OFF -DBUILD_DOCS=$(usex doc) -DINSTALL_DOCS=$(usex doc) -DSTOP_ON_WARNING=OFF @@ -136,3 +138,18 @@ src_configure() { cmake_src_configure } + +src_install() { + cmake_src_install + # can't use font_src_install + # it does directory hierarchy recreation + FONT_S=( + "${S}/src/fonts/Droid_Sans" + "${S}/src/fonts/Droid_Sans_Mono" + "${S}/src/fonts/Droid_Serif" + ) + insinto ${FONTDIR} + for dir in "${FONT_S[@]}"; do + doins "${dir}"/*.ttf + done +}