From owner-svn-ports-all@FreeBSD.ORG Tue Jun 10 15:08:06 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 09BFBFAD; Tue, 10 Jun 2014 15:08:06 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 EB6EF2031; Tue, 10 Jun 2014 15:08:05 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5AF853Z051220; Tue, 10 Jun 2014 15:08:05 GMT (envelope-from sunpoet@svn.freebsd.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5AF84Fk051213; Tue, 10 Jun 2014 15:08:04 GMT (envelope-from sunpoet@svn.freebsd.org) Message-Id: <201406101508.s5AF84Fk051213@svn.freebsd.org> From: Sunpoet Po-Chuan Hsieh Date: Tue, 10 Jun 2014 15:08:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r357320 - in head/devel: . p5-PkgConfig X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Jun 2014 15:08:06 -0000 Author: sunpoet Date: Tue Jun 10 15:08:04 2014 New Revision: 357320 URL: http://svnweb.freebsd.org/changeset/ports/357320 QAT: https://qat.redports.org/buildarchive/r357320/ Log: - Add p5-PkgConfig 0.07720 PkgConfig provides a pure-perl, core-only replacement for the pkg-config utility. This is not a description of the uses of pkg-config but rather a description of the differences between the C version and the Perl one. While pkg-config is a compiled binary linked with glib, the pure-perl version has no such requirement, and will run wherever Perl ( >= 5.6 ) does. The main supported options are the common --libs, --cflags, --static, --exists and --modversion. WWW: http://search.cpan.org/dist/PkgConfig/ Added: head/devel/p5-PkgConfig/ head/devel/p5-PkgConfig/Makefile (contents, props changed) head/devel/p5-PkgConfig/distinfo (contents, props changed) head/devel/p5-PkgConfig/pkg-descr (contents, props changed) head/devel/p5-PkgConfig/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Jun 10 15:07:59 2014 (r357319) +++ head/devel/Makefile Tue Jun 10 15:08:04 2014 (r357320) @@ -2598,6 +2598,7 @@ SUBDIR += p5-Pid-File-Flock SUBDIR += p5-Pipeline SUBDIR += p5-Pithub + SUBDIR += p5-PkgConfig SUBDIR += p5-Pod-Coverage SUBDIR += p5-Pod-Coverage-Moose SUBDIR += p5-Pod-Coverage-TrustPod Added: head/devel/p5-PkgConfig/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-PkgConfig/Makefile Tue Jun 10 15:08:04 2014 (r357320) @@ -0,0 +1,20 @@ +# Created by: Sunpoet Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= PkgConfig +PORTVERSION= 0.07720 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +MASTER_SITE_SUBDIR= CPAN:PLICEASE +PKGNAMEPREFIX= p5- + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Pure-Perl Core-Only replacement for pkg-config + +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +USE_PERL5= configure +USES= perl5 pkgconfig + +.include Added: head/devel/p5-PkgConfig/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-PkgConfig/distinfo Tue Jun 10 15:08:04 2014 (r357320) @@ -0,0 +1,2 @@ +SHA256 (PkgConfig-0.07720.tar.gz) = d6591bc0af51d0cf63e8da44dfdf2c13554ffe7ec87d90e5a324ac4fd1f1e68f +SIZE (PkgConfig-0.07720.tar.gz) = 130181 Added: head/devel/p5-PkgConfig/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-PkgConfig/pkg-descr Tue Jun 10 15:08:04 2014 (r357320) @@ -0,0 +1,13 @@ +PkgConfig provides a pure-perl, core-only replacement for the pkg-config +utility. + +This is not a description of the uses of pkg-config but rather a description of +the differences between the C version and the Perl one. + +While pkg-config is a compiled binary linked with glib, the pure-perl version +has no such requirement, and will run wherever Perl ( >= 5.6 ) does. + +The main supported options are the common --libs, --cflags, --static, --exists +and --modversion. + +WWW: http://search.cpan.org/dist/PkgConfig/ Added: head/devel/p5-PkgConfig/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-PkgConfig/pkg-plist Tue Jun 10 15:08:04 2014 (r357320) @@ -0,0 +1,8 @@ +bin/pkg-config.pl +bin/ppkg-config +%%SITE_PERL%%/PkgConfig.pm +%%SITE_PERL%%/%%PERL_ARCH%%/auto/PkgConfig/.packlist +%%PERL5_MAN3%%/PkgConfig.3.gz +man/man1/pkg-config.pl.1.gz +man/man1/ppkg-config.1.gz +@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/PkgConfig