From owner-svn-ports-head@freebsd.org Mon Apr 18 01:12:29 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7595EB10CCE; Mon, 18 Apr 2016 01:12:29 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 438E91DE9; Mon, 18 Apr 2016 01:12:29 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u3I1CScd045966; Mon, 18 Apr 2016 01:12:28 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u3I1CS6Y045961; Mon, 18 Apr 2016 01:12:28 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201604180112.u3I1CS6Y045961@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Mon, 18 Apr 2016 01:12:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r413545 - in head/x11-toolkits: . p5-Gtk3 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Apr 2016 01:12:29 -0000 Author: pi Date: Mon Apr 18 01:12:27 2016 New Revision: 413545 URL: https://svnweb.freebsd.org/changeset/ports/413545 Log: New port: x11-toolkits/p5-Gtk3 Perl bindings to the 3.x series of the gtk+ toolkit. This module allows you to write graphical user interfaces in a Perlish and object-oriented way, freeing you from the casting and memory management in C, yet remaining very close in spirit to original API. Find out more about gtk+ at http://www.gtk.org. The gtk+ reference manual is also a handy companion when writing Gtk3 programs in Perl: http://developer.gnome.org/gtk3/stable/. The Perl bindings follow the C API very closely, and the C reference documentation should be considered the canonical source. WWW: https://metacpan.org/pod/Gtk3 PR: 208372 Submitted by: hiroto.kagotani@gmail.com Added: head/x11-toolkits/p5-Gtk3/ head/x11-toolkits/p5-Gtk3/Makefile (contents, props changed) head/x11-toolkits/p5-Gtk3/distinfo (contents, props changed) head/x11-toolkits/p5-Gtk3/pkg-descr (contents, props changed) head/x11-toolkits/p5-Gtk3/pkg-plist (contents, props changed) Modified: head/x11-toolkits/Makefile Modified: head/x11-toolkits/Makefile ============================================================================== --- head/x11-toolkits/Makefile Sun Apr 17 23:51:49 2016 (r413544) +++ head/x11-toolkits/Makefile Mon Apr 18 01:12:27 2016 (r413545) @@ -149,6 +149,7 @@ SUBDIR += p5-Gtk2-PathButtonBar SUBDIR += p5-Gtk2-TrayIcon SUBDIR += p5-Gtk2-Unique + SUBDIR += p5-Gtk3 SUBDIR += p5-Pango SUBDIR += p5-Prima SUBDIR += p5-Tk Added: head/x11-toolkits/p5-Gtk3/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-toolkits/p5-Gtk3/Makefile Mon Apr 18 01:12:27 2016 (r413545) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= Gtk3 +PORTVERSION= 0.026 +CATEGORIES= x11-toolkits lang perl5 +MASTER_SITES= CPAN SF/${PORTNAME:tl}-perl/${PORTNAME}/${PORTVERSION} +MASTER_SITE_SUBDIR= CPAN:XAOC +PKGNAMEPREFIX= p5- + +MAINTAINER= hiroto.kagotani@gmail.com +COMMENT= Perl module for Gtk+ 3.x graphical user interface library + +LICENSE= LGPL21 + +RUN_DEPENDS= p5-Glib-Object-Introspection>=0.002:devel/p5-Glib-Object-Introspection + +USES= perl5 +USE_PERL5= configure +USE_GNOME= gtk30 + +.include Added: head/x11-toolkits/p5-Gtk3/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-toolkits/p5-Gtk3/distinfo Mon Apr 18 01:12:27 2016 (r413545) @@ -0,0 +1,2 @@ +SHA256 (Gtk3-0.026.tar.gz) = 083a857c45b9178603176f56402472633851c7e42f6a8c47fd7f6a18e9181319 +SIZE (Gtk3-0.026.tar.gz) = 53408 Added: head/x11-toolkits/p5-Gtk3/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-toolkits/p5-Gtk3/pkg-descr Mon Apr 18 01:12:27 2016 (r413545) @@ -0,0 +1,12 @@ +Perl bindings to the 3.x series of the gtk+ toolkit. This module +allows you to write graphical user interfaces in a Perlish and +object-oriented way, freeing you from the casting and memory +management in C, yet remaining very close in spirit to original +API. Find out more about gtk+ at http://www.gtk.org. + +The gtk+ reference manual is also a handy companion when writing +Gtk3 programs in Perl: http://developer.gnome.org/gtk3/stable/. The +Perl bindings follow the C API very closely, and the C reference +documentation should be considered the canonical source. + +WWW: https://metacpan.org/pod/Gtk3 Added: head/x11-toolkits/p5-Gtk3/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-toolkits/p5-Gtk3/pkg-plist Mon Apr 18 01:12:27 2016 (r413545) @@ -0,0 +1,2 @@ +%%SITE_PERL%%/Gtk3.pm +%%PERL5_MAN3%%/Gtk3.3.gz