From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 41A8D198005 for ; Sat, 23 Feb 2013 22:54:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C0475E0618; Sat, 23 Feb 2013 22:54:54 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5D3FDE0618 for ; Sat, 23 Feb 2013 22:54:54 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 50FE933DF02 for ; Sat, 23 Feb 2013 22:54:53 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id DFB84E4075 for ; Sat, 23 Feb 2013 22:54:51 +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: <1361654543.eaf435d6bc8d7a07eeb2ef80d2e98db233b16daa.kent@gentoo> Subject: [gentoo-commits] proj/perl-overlay:master commit in: dev-perl/Gtk3/ X-VCS-Repository: proj/perl-overlay X-VCS-Files: dev-perl/Gtk3/ChangeLog dev-perl/Gtk3/Gtk3-0.9.0.ebuild X-VCS-Directories: dev-perl/Gtk3/ X-VCS-Committer: kent X-VCS-Committer-Name: Kent Fredric X-VCS-Revision: eaf435d6bc8d7a07eeb2ef80d2e98db233b16daa X-VCS-Branch: master Date: Sat, 23 Feb 2013 22:54:51 +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: 16aa2444-0722-4a57-995b-fefcc826798c X-Archives-Hash: 9a4a5cdad7eb6f3969e703cf31262d3f commit: eaf435d6bc8d7a07eeb2ef80d2e98db233b16daa Author: Kent Fredric gmail com> AuthorDate: Sat Feb 23 21:22:23 2013 +0000 Commit: Kent Fredric gmail com> CommitDate: Sat Feb 23 21:22:23 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/perl-overlay.git;a=commit;h=eaf435d6 [newversion] Gtk3-0.9.0 Package-Manager: portage-2.2.0_alpha141 Manifest-Sign-Key: ECD2C675C102CDA4 --- dev-perl/Gtk3/ChangeLog | 7 +++++- dev-perl/Gtk3/Gtk3-0.9.0.ebuild | 44 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 50 insertions(+), 1 deletions(-) diff --git a/dev-perl/Gtk3/ChangeLog b/dev-perl/Gtk3/ChangeLog index fc89829..309cd4d 100644 --- a/dev-perl/Gtk3/ChangeLog +++ b/dev-perl/Gtk3/ChangeLog @@ -1,7 +1,12 @@ # ChangeLog for dev-perl/Gtk3 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ +*Gtk3-0.9.0 (23 Feb 2013) + + 23 Feb 2013; Kent Fredric +Gtk3-0.9.0.ebuild: + Version Bump + 10 Nov 2012; Kent Fredric -Gtk3-0.5.0.ebuild: Gone on CPAN diff --git a/dev-perl/Gtk3/Gtk3-0.9.0.ebuild b/dev-perl/Gtk3/Gtk3-0.9.0.ebuild new file mode 100644 index 0000000..44077ae --- /dev/null +++ b/dev-perl/Gtk3/Gtk3-0.9.0.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ +EAPI=5 +MODULE_AUTHOR=TSCH +MODULE_VERSION=0.009 +inherit perl-module +inherit virtualx + +DESCRIPTION='Perl interface to the 3.x series of the gtk+ toolkit' +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" +extra_depend() { + echo x11-libs/gtk+:3 +} +perl_meta_configure() { + # ExtUtils::MakeMaker 6.30 ( 6.300.0 ) + echo \>=virtual/perl-ExtUtils-MakeMaker-6.30 +} +perl_meta_runtime() { + # Cairo::GObject 1.000 ( 1.0.0 ) + echo \>=dev-perl/Cairo-GObject-1.0.0 + # Carp + echo dev-lang/perl + # Exporter + echo virtual/perl-Exporter + # Glib::Object::Introspection 0.014 ( 0.14.0 ) + echo \>=dev-perl/Glib-Object-Introspection-0.14.0 +} +DEPEND=" + $(extra_depend) + $(perl_meta_configure) + $(perl_meta_runtime) +" +RDEPEND=" + $(extra_depend) + $(perl_meta_runtime) +" +SRC_TEST="do" +src_test() { + Xemake -j1 test || die +}