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 AAFAD1396D9 for ; Tue, 24 Oct 2017 02:43:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8530D2BC071; 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 5F8772BC05B for ; Tue, 24 Oct 2017 02:43:18 +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 870E233D4A6 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 BD24083D 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: <1508812212.c214ed27b9b53742b297db544a34d9a274215eff.kentnl@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/gtk2-gladexml/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-perl/gtk2-gladexml/gtk2-gladexml-1.7.0-r2.ebuild X-VCS-Directories: dev-perl/gtk2-gladexml/ X-VCS-Committer: kentnl X-VCS-Committer-Name: Kent Fredric X-VCS-Revision: c214ed27b9b53742b297db544a34d9a274215eff 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: 23ade1c9-f9c3-490b-99ad-1460b88ddd5a X-Archives-Hash: d2ef93b4084f5298f7737019b090fbfc commit: c214ed27b9b53742b297db544a34d9a274215eff Author: Kent Fredric gentoo org> AuthorDate: Tue Oct 24 02:30:12 2017 +0000 Commit: Kent Fredric gentoo org> CommitDate: Tue Oct 24 02:30:12 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c214ed27 dev-perl/gtk2-gladexml: Enable tests - EAPI6 - Enable tests (X11) - Add USE=examples Package-Manager: Portage-2.3.8, Repoman-2.3.3 .../gtk2-gladexml/gtk2-gladexml-1.7.0-r2.ebuild | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/dev-perl/gtk2-gladexml/gtk2-gladexml-1.7.0-r2.ebuild b/dev-perl/gtk2-gladexml/gtk2-gladexml-1.7.0-r2.ebuild new file mode 100644 index 00000000000..9a671bdc484 --- /dev/null +++ b/dev-perl/gtk2-gladexml/gtk2-gladexml-1.7.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=Gtk2-GladeXML +DIST_AUTHOR=TSCH +DIST_VERSION=1.007 +DIST_EXAMPLES=("examples/*") +inherit perl-module virtualx + +DESCRIPTION="Create user interfaces directly from Glade XML files" +HOMEPAGE="http://gtk2-perl.sf.net/ ${HOMEPAGE}" + +SLOT="0" +LICENSE="LGPL-2" +KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~x86" +IUSE="" + +RDEPEND="x11-libs/gtk+:2 + gnome-base/libglade:2.0 + >=dev-perl/glib-perl-1.020 + >=dev-perl/Gtk2-1.012" +DEPEND="${RDEPEND} + >=dev-perl/ExtUtils-Depends-0.300 + dev-perl/ExtUtils-PkgConfig" + +src_test() { + virtx perl-module_src_test +}