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 8FAF2158086 for ; Sun, 12 Dec 2021 20:03:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B852CE0809; Sun, 12 Dec 2021 20:03:51 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 F2CD1E0809 for ; Sun, 12 Dec 2021 20:03:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 E06E03433E1 for ; Sun, 12 Dec 2021 20:03:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 22478238 for ; Sun, 12 Dec 2021 20:03:45 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1639339419.b87890e19640f50bf0e491442c8a34c1694464c7.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/inkscape/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/inkscape/inkscape-9999.ebuild X-VCS-Directories: media-gfx/inkscape/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: b87890e19640f50bf0e491442c8a34c1694464c7 X-VCS-Branch: master Date: Sun, 12 Dec 2021 20:03:45 +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: ef3880a6-9569-4e71-b2b9-ac5dac35c2bd X-Archives-Hash: 756cbb79c5dbecdcc6d21f864b6d8e1b commit: b87890e19640f50bf0e491442c8a34c1694464c7 Author: David Seifert gentoo org> AuthorDate: Sun Dec 12 20:03:39 2021 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Dec 12 20:03:39 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b87890e1 media-gfx/inkscape: sync live ebuild Closes: https://github.com/gentoo/gentoo/pull/23271 Signed-off-by: David Seifert gentoo.org> media-gfx/inkscape/inkscape-9999.ebuild | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/media-gfx/inkscape/inkscape-9999.ebuild b/media-gfx/inkscape/inkscape-9999.ebuild index 05de5cb6c18a..c77a2bc64410 100644 --- a/media-gfx/inkscape/inkscape-9999.ebuild +++ b/media-gfx/inkscape/inkscape-9999.ebuild @@ -33,6 +33,7 @@ COMMON_DEPEND="${PYTHON_DEPS} dev-cpp/gtkmm:3.0 >=dev-cpp/pangomm-2.40:1.4 >=dev-libs/boehm-gc-7.1:= + >=dev-libs/boost-1.65:= dev-libs/double-conversion:= >=dev-libs/glib-2.41 >=dev-libs/libsigc++-2.8:2 @@ -91,7 +92,6 @@ RDEPEND="${COMMON_DEPEND} postscript? ( app-text/ghostscript-gpl ) " DEPEND="${COMMON_DEPEND} - >=dev-libs/boost-1.65 test? ( dev-cpp/gtest ) " @@ -139,6 +139,10 @@ src_configure() { cmake_src_configure } +src_test() { + cmake_build -j1 check +} + src_install() { cmake_src_install @@ -158,7 +162,3 @@ src_install() { # Empty directory causes sandbox issues, see bug #761915 rm -r "${ED}/usr/share/inkscape/fonts" || die "Failed to remove fonts directory." } - -src_test() { - cmake_build -j1 check -}