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 7DD6613835B for ; Sat, 29 May 2021 19:03:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A17B4E07F9; Sat, 29 May 2021 19:03:33 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 850C7E07F9 for ; Sat, 29 May 2021 19:03:33 +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 27162340F55 for ; Sat, 29 May 2021 19:03:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A6CC779B for ; Sat, 29 May 2021 19:03:30 +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: <1622314924.71a28de9bdb167bca63034f9527e3583d0cfddf3.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/mscgen/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/mscgen/mscgen-0.20.ebuild X-VCS-Directories: media-gfx/mscgen/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 71a28de9bdb167bca63034f9527e3583d0cfddf3 X-VCS-Branch: master Date: Sat, 29 May 2021 19:03:30 +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: c7df28a0-1b5f-4484-8546-be255896f4e1 X-Archives-Hash: f30dcc6e17af61c995320a33a2e88378 commit: 71a28de9bdb167bca63034f9527e3583d0cfddf3 Author: Sam James gentoo org> AuthorDate: Sat May 29 19:02:04 2021 +0000 Commit: David Seifert gentoo org> CommitDate: Sat May 29 19:02:04 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71a28de9 media-gfx/mscgen: misc. dep fixes * Add REQUIRED_USE for truetype (needs USE=png to do anything) * Add truetype? ( media-libs/freetype ) dependency * Use BDEPEND Signed-off-by: Sam James gentoo.org> Signed-off-by: David Seifert gentoo.org> media-gfx/mscgen/mscgen-0.20.ebuild | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/media-gfx/mscgen/mscgen-0.20.ebuild b/media-gfx/mscgen/mscgen-0.20.ebuild index 974df47549b..fa0e6c4a4a2 100644 --- a/media-gfx/mscgen/mscgen-0.20.ebuild +++ b/media-gfx/mscgen/mscgen-0.20.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=7 @@ -14,12 +14,16 @@ KEYWORDS="amd64 arm ppc ppc64 x86 ~x64-solaris" LICENSE="GPL-2" SLOT="0" IUSE="png truetype" +REQUIRED_USE="truetype? ( png )" -RDEPEND="png? ( media-libs/gd[png,truetype?] )" -DEPEND="${RDEPEND} - virtual/pkgconfig +RDEPEND=" + truetype? ( media-libs/freetype ) + png? ( media-libs/gd[png,truetype?] )" +DEPEND="${RDEPEND}" +BDEPEND=" sys-devel/bison - sys-devel/flex" + sys-devel/flex + virtual/pkgconfig" # Workaround for bug #379279 RESTRICT="test"