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 411DE1382C5 for ; Sun, 24 Jan 2021 01:31:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 549CDE070D; Sun, 24 Jan 2021 01:31:53 +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 3715CE070D for ; Sun, 24 Jan 2021 01:31:53 +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 989CB340DD9 for ; Sun, 24 Jan 2021 01:31:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0D7B347 for ; Sun, 24 Jan 2021 01:31:50 +0000 (UTC) From: "Maciej Mrozowski" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Maciej Mrozowski" Message-ID: <1611451847.afa7efb81dfbf003d4c263e484980f6472a2ba59.reavertm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/ddd/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/ddd/ddd-3.3.12-r4.ebuild X-VCS-Directories: dev-util/ddd/ X-VCS-Committer: reavertm X-VCS-Committer-Name: Maciej Mrozowski X-VCS-Revision: afa7efb81dfbf003d4c263e484980f6472a2ba59 X-VCS-Branch: master Date: Sun, 24 Jan 2021 01:31:50 +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: e68088a1-04c7-4bc1-9eea-780a314ab12e X-Archives-Hash: 76da09b81a5d3eed4dc80dbae096a78a commit: afa7efb81dfbf003d4c263e484980f6472a2ba59 Author: Maciej Mrozowski gentoo org> AuthorDate: Sun Jan 24 01:30:47 2021 +0000 Commit: Maciej Mrozowski gentoo org> CommitDate: Sun Jan 24 01:30:47 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=afa7efb8 dev-util/ddd: migrate to optfeature Bug: https://bugs.gentoo.org/759130 Package-Manager: Portage-3.0.13, Repoman-3.0.2 Signed-off-by: Maciej Mrozowski gentoo.org> dev-util/ddd/ddd-3.3.12-r4.ebuild | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/dev-util/ddd/ddd-3.3.12-r4.ebuild b/dev-util/ddd/ddd-3.3.12-r4.ebuild index 8ca2724f7f5..b0279808edf 100644 --- a/dev-util/ddd/ddd-3.3.12-r4.ebuild +++ b/dev-util/ddd/ddd-3.3.12-r4.ebuild @@ -3,7 +3,7 @@ EAPI="6" -inherit autotools eutils +inherit autotools eutils optfeature DESCRIPTION="Graphical front-end for command-line debuggers" HOMEPAGE="https://www.gnu.org/software/ddd" @@ -74,19 +74,15 @@ src_install() { } pkg_postinst() { - if ! has_version sci-visualization/gnuplot; then - echo - elog "To enable data visualization in DDD, install sci-visualization/gnuplot." - fi + optfeature "Data visualisation" sci-visualization/gnuplot + optfeature "Java debugging" virtual/jdk + optfeature "Bash debugging" app-shells/bashdb + optfeature "Perl debugging" dev-lang/perl + optfeature "Python debugging" dev-python/pydb + echo elog "Important notice: if you encounter DDD crashes during visualization, you might" elog "have hit bug #459324. Try switching to plotting in external window:" elog "Select Edit|Preferences|Helpers and switch 'plot window' to 'external'" - elog - elog "To be able to debug java, bash, perl or python scripts within DDD, install respectively:" - elog " virtual/jdk" - elog " app-shells/bashdb" - elog " dev-lang/perl" - elog " dev-python/pydb" echo }