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 69E81138334 for ; Wed, 26 Jun 2019 12:39:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 983B7E087E; Wed, 26 Jun 2019 12:39:26 +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 7C154E087E for ; Wed, 26 Jun 2019 12:39:26 +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 1FDAD346AB5 for ; Wed, 26 Jun 2019 12:39:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 93969449 for ; Wed, 26 Jun 2019 12:39:22 +0000 (UTC) From: "Ben Kohler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ben Kohler" Message-ID: <1561552751.f43a19ce9649700c9b16a44f6b75fed555dab3a2.bkohler@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-cdr/dumpet/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-cdr/dumpet/dumpet-2.1_p20140601.ebuild X-VCS-Directories: app-cdr/dumpet/ X-VCS-Committer: bkohler X-VCS-Committer-Name: Ben Kohler X-VCS-Revision: f43a19ce9649700c9b16a44f6b75fed555dab3a2 X-VCS-Branch: master Date: Wed, 26 Jun 2019 12:39:22 +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: 816448cf-a6d8-4c2c-ba88-b41189290fec X-Archives-Hash: d74c0076f24e0194a4e568e834fbb3e8 commit: f43a19ce9649700c9b16a44f6b75fed555dab3a2 Author: Ben Kohler gentoo org> AuthorDate: Wed Jun 26 12:29:48 2019 +0000 Commit: Ben Kohler gentoo org> CommitDate: Wed Jun 26 12:39:11 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f43a19ce app-cdr/dumpet: respect CC/CFLAGS, require valgrind for tests Closes: https://bugs.gentoo.org/688694 Package-Manager: Portage-2.3.67, Repoman-2.3.16 Signed-off-by: Ben Kohler gentoo.org> app-cdr/dumpet/dumpet-2.1_p20140601.ebuild | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/app-cdr/dumpet/dumpet-2.1_p20140601.ebuild b/app-cdr/dumpet/dumpet-2.1_p20140601.ebuild index 96ef9972e7a..27a98a38ba7 100644 --- a/app-cdr/dumpet/dumpet-2.1_p20140601.ebuild +++ b/app-cdr/dumpet/dumpet-2.1_p20140601.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Authors +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -14,16 +14,19 @@ SRC_URI="https://github.com/rhboot/dumpet/archive/${COMMIT}.tar.gz -> ${P}.tar.g LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="" +IUSE="test" RDEPEND="dev-libs/libxml2 dev-libs/popt" DEPEND="${RDEPEND} - virtual/pkgconfig" + virtual/pkgconfig + test? ( dev-util/valgrind )" src_prepare() { sed -i Makefile \ -e "s/^install : all$/install :/" \ + -e "s/^CFLAGS:=/CFLAGS?=/" \ + -e "s/^CC:=/CC?=/" \ || die default }