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 36C8A1396D9 for ; Tue, 24 Oct 2017 02:43:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AB7152BC063; Tue, 24 Oct 2017 02:43:18 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 7D2362BC05B for ; Tue, 24 Oct 2017 02:43:18 +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 A905E33C4EE for ; Tue, 24 Oct 2017 02:43:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9783083B for ; Tue, 24 Oct 2017 02:43:13 +0000 (UTC) From: "Kent Fredric" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Kent Fredric" Message-ID: <1508811159.4a0606227718c0f7aff75c01a3dfa766aff669c9.kentnl@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/gnome2-canvas/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-perl/gnome2-canvas/gnome2-canvas-1.2.0-r2.ebuild X-VCS-Directories: dev-perl/gnome2-canvas/ X-VCS-Committer: kentnl X-VCS-Committer-Name: Kent Fredric X-VCS-Revision: 4a0606227718c0f7aff75c01a3dfa766aff669c9 X-VCS-Branch: master Date: Tue, 24 Oct 2017 02:43:13 +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: bfe231f3-0ce2-477f-89a2-12157eee8284 X-Archives-Hash: 9101851b1d750c2f1b436b5936a707cd commit: 4a0606227718c0f7aff75c01a3dfa766aff669c9 Author: Kent Fredric gentoo org> AuthorDate: Tue Oct 24 02:12:39 2017 +0000 Commit: Kent Fredric gentoo org> CommitDate: Tue Oct 24 02:12:39 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a060622 dev-perl/gnome2-canvas: Enable tests - EAPI6 - Enable tests (X11) - Add USE=examples Package-Manager: Portage-2.3.8, Repoman-2.3.3 .../gnome2-canvas/gnome2-canvas-1.2.0-r2.ebuild | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/dev-perl/gnome2-canvas/gnome2-canvas-1.2.0-r2.ebuild b/dev-perl/gnome2-canvas/gnome2-canvas-1.2.0-r2.ebuild new file mode 100644 index 00000000000..9c31f14c1de --- /dev/null +++ b/dev-perl/gnome2-canvas/gnome2-canvas-1.2.0-r2.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DIST_NAME=Gnome2-Canvas +DIST_AUTHOR=TSCH +DIST_VERSION=1.002 +DIST_EXAMPLES=( "canvas_demo/*" ) +inherit perl-module virtualx + +DESCRIPTION="Perl interface to the Gnome Canvas" + +LICENSE="LGPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86" +IUSE="" + +RDEPEND="x11-libs/gtk+:2 + >=gnome-base/libgnomecanvas-2 + >=dev-perl/glib-perl-1.040 + >=dev-perl/Gtk2-1.040" +DEPEND="${RDEPEND} + >=dev-perl/ExtUtils-PkgConfig-1.03 + >=dev-perl/ExtUtils-Depends-0.202 + virtual/pkgconfig" + +src_test() { + virtx perl-module_src_test +}