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 748D91396D0 for ; Mon, 9 Oct 2017 20:13:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C0018E0BE7; Mon, 9 Oct 2017 20:13:07 +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 9A9D1E0BE7 for ; Mon, 9 Oct 2017 20:13:07 +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 4730C33BE68 for ; Mon, 9 Oct 2017 20:13:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D95778F66 for ; Mon, 9 Oct 2017 20:13:04 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1507579973.b88c4ffa968778080a39fe0bd5aae12779116a45.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libfreehand/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libfreehand/libfreehand-0.1.2.ebuild media-libs/libfreehand/libfreehand-9999.ebuild X-VCS-Directories: media-libs/libfreehand/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: b88c4ffa968778080a39fe0bd5aae12779116a45 X-VCS-Branch: master Date: Mon, 9 Oct 2017 20:13:04 +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-Archives-Salt: 9ea3ccc1-0a70-4e9c-b518-4f8fdf435a10 X-Archives-Hash: 2762a59db30f2c7498e4847618fa06ac commit: b88c4ffa968778080a39fe0bd5aae12779116a45 Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Oct 9 20:12:31 2017 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Oct 9 20:12:53 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b88c4ffa media-libs/libfreehand: Add missing tests handling Reported-by: jorgicio gmail.com> Gentoo-bug: 633806 Package-Manager: Portage-2.3.11, Repoman-2.3.3 media-libs/libfreehand/libfreehand-0.1.2.ebuild | 6 ++++-- media-libs/libfreehand/libfreehand-9999.ebuild | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/media-libs/libfreehand/libfreehand-0.1.2.ebuild b/media-libs/libfreehand/libfreehand-0.1.2.ebuild index 3ce6e903de1..c2a85de892e 100644 --- a/media-libs/libfreehand/libfreehand-0.1.2.ebuild +++ b/media-libs/libfreehand/libfreehand-0.1.2.ebuild @@ -14,7 +14,7 @@ LICENSE="MPL-2.0" SLOT="0" [[ ${PV} == 9999 ]] || \ KEYWORDS="~amd64 ~arm ~arm64 ~x86" -IUSE="doc static-libs" +IUSE="doc static-libs test" RDEPEND=" dev-libs/librevenge @@ -27,6 +27,7 @@ DEPEND="${RDEPEND} sys-devel/libtool virtual/pkgconfig doc? ( app-doc/doxygen ) + test? ( dev-util/cppunit ) " src_prepare() { @@ -39,7 +40,8 @@ src_configure() { econf \ --disable-werror \ $(use_with doc docs) \ - $(use_enable static-libs static) + $(use_enable static-libs static) \ + $(use_enable test tests) } src_install() { diff --git a/media-libs/libfreehand/libfreehand-9999.ebuild b/media-libs/libfreehand/libfreehand-9999.ebuild index 3ce6e903de1..c2a85de892e 100644 --- a/media-libs/libfreehand/libfreehand-9999.ebuild +++ b/media-libs/libfreehand/libfreehand-9999.ebuild @@ -14,7 +14,7 @@ LICENSE="MPL-2.0" SLOT="0" [[ ${PV} == 9999 ]] || \ KEYWORDS="~amd64 ~arm ~arm64 ~x86" -IUSE="doc static-libs" +IUSE="doc static-libs test" RDEPEND=" dev-libs/librevenge @@ -27,6 +27,7 @@ DEPEND="${RDEPEND} sys-devel/libtool virtual/pkgconfig doc? ( app-doc/doxygen ) + test? ( dev-util/cppunit ) " src_prepare() { @@ -39,7 +40,8 @@ src_configure() { econf \ --disable-werror \ $(use_with doc docs) \ - $(use_enable static-libs static) + $(use_enable static-libs static) \ + $(use_enable test tests) } src_install() {