From owner-svn-ports-head@FreeBSD.ORG Fri May 8 20:22:26 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B0AADE6B; Fri, 8 May 2015 20:22:26 +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 9FA5F1CBA; Fri, 8 May 2015 20:22:26 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t48KMQvH084054; Fri, 8 May 2015 20:22:26 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t48KMPlj084051; Fri, 8 May 2015 20:22:25 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201505082022.t48KMPlj084051@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 8 May 2015 20:22:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r385825 - head/devel/p5-ExtUtils-CChecker 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.20 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: Fri, 08 May 2015 20:22:26 -0000 Author: sunpoet Date: Fri May 8 20:22:25 2015 New Revision: 385825 URL: https://svnweb.freebsd.org/changeset/ports/385825 Log: - Update to 0.09 - Add LICENSE - Remove DOCS option - Update pkg-descr - Take maintainership Changes: http://search.cpan.org/dist/ExtUtils-CChecker/Changes Modified: head/devel/p5-ExtUtils-CChecker/Makefile head/devel/p5-ExtUtils-CChecker/distinfo head/devel/p5-ExtUtils-CChecker/pkg-descr Modified: head/devel/p5-ExtUtils-CChecker/Makefile ============================================================================== --- head/devel/p5-ExtUtils-CChecker/Makefile Fri May 8 20:22:19 2015 (r385824) +++ head/devel/p5-ExtUtils-CChecker/Makefile Fri May 8 20:22:25 2015 (r385825) @@ -2,24 +2,20 @@ # $FreeBSD$ PORTNAME= ExtUtils-CChecker -PORTVERSION= 0.08 -PORTREVISION= 1 +PORTVERSION= 0.09 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- -MAINTAINER= ports@FreeBSD.org +MAINTAINER= sunpoet@FreeBSD.org COMMENT= Configure-time utilities for using C headers, libraries, OS features +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + TEST_DEPENDS= p5-Test-Fatal>=0:${PORTSDIR}/devel/p5-Test-Fatal -USES= perl5 USE_PERL5= configure - -PORTDOCS= Changes README - -post-install: - @${INSTALL} -d ${STAGEDIR}${DOCSDIR} - @${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} +USES= perl5 .include Modified: head/devel/p5-ExtUtils-CChecker/distinfo ============================================================================== --- head/devel/p5-ExtUtils-CChecker/distinfo Fri May 8 20:22:19 2015 (r385824) +++ head/devel/p5-ExtUtils-CChecker/distinfo Fri May 8 20:22:25 2015 (r385825) @@ -1,2 +1,2 @@ -SHA256 (ExtUtils-CChecker-0.08.tar.gz) = 3425f08ad04f434e8b0294aa51fea0710381c4397e121074aaf666b1f281b107 -SIZE (ExtUtils-CChecker-0.08.tar.gz) = 20865 +SHA256 (ExtUtils-CChecker-0.09.tar.gz) = ebf167e3f98b4b1ff8e7a5e98d084558b87d0b19442f5da33233ef6b2eb66ad7 +SIZE (ExtUtils-CChecker-0.09.tar.gz) = 21237 Modified: head/devel/p5-ExtUtils-CChecker/pkg-descr ============================================================================== --- head/devel/p5-ExtUtils-CChecker/pkg-descr Fri May 8 20:22:19 2015 (r385824) +++ head/devel/p5-ExtUtils-CChecker/pkg-descr Fri May 8 20:22:25 2015 (r385825) @@ -1,10 +1,14 @@ -Often Perl modules are written to wrap functionallity found in existing -C headers, libraries, or to use OS-specific features. It is useful in -the Build.PL or Makefile.PL file to check for the existance of these -requirements before attempting to actually build the module. +Often Perl modules are written to wrap functionality found in existing C +headers, libraries, or to use OS-specific features. It is useful in the Build.PL +or Makefile.PL file to check for the existance of these requirements before +attempting to actually build the module. -Objects in this class provide an extension around ExtUtils::CBuilder to -simplify the creation of a .c file, compiling, linking and running it, -to test if a certain feature is present. +Objects in this class provide an extension around ExtUtils::CBuilder to simplify +the creation of a .c file, compiling, linking and running it, to test if a +certain feature is present. + +It may also be necessary to search for the correct library to link against, or +for the right include directories to find header files in. This class also +provides assistance here. WWW: http://search.cpan.org/dist/ExtUtils-CChecker/