diff options
author | sunpoet <sunpoet@FreeBSD.org> | 2015-05-09 04:22:25 +0800 |
---|---|---|
committer | sunpoet <sunpoet@FreeBSD.org> | 2015-05-09 04:22:25 +0800 |
commit | afcc2017a9413e5180cb90e58d67df5b79674250 (patch) | |
tree | 77b7ff81e2c2241f9ec244d65058f55f0fd77966 /devel | |
parent | 959c9ac45a0283c8f0f06994757a29462f5fae3f (diff) | |
download | freebsd-ports-gnome-afcc2017a9413e5180cb90e58d67df5b79674250.tar.gz freebsd-ports-gnome-afcc2017a9413e5180cb90e58d67df5b79674250.tar.zst freebsd-ports-gnome-afcc2017a9413e5180cb90e58d67df5b79674250.zip |
- Update to 0.09
- Add LICENSE
- Remove DOCS option
- Update pkg-descr
- Take maintainership
Changes: http://search.cpan.org/dist/ExtUtils-CChecker/Changes
Diffstat (limited to 'devel')
-rw-r--r-- | devel/p5-ExtUtils-CChecker/Makefile | 16 | ||||
-rw-r--r-- | devel/p5-ExtUtils-CChecker/distinfo | 4 | ||||
-rw-r--r-- | devel/p5-ExtUtils-CChecker/pkg-descr | 18 |
3 files changed, 19 insertions, 19 deletions
diff --git a/devel/p5-ExtUtils-CChecker/Makefile b/devel/p5-ExtUtils-CChecker/Makefile index 5193c1a0c897..4005cf5b8335 100644 --- a/devel/p5-ExtUtils-CChecker/Makefile +++ b/devel/p5-ExtUtils-CChecker/Makefile @@ -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 <bsd.port.mk> diff --git a/devel/p5-ExtUtils-CChecker/distinfo b/devel/p5-ExtUtils-CChecker/distinfo index a28c32f011de..f4f504b20f77 100644 --- a/devel/p5-ExtUtils-CChecker/distinfo +++ b/devel/p5-ExtUtils-CChecker/distinfo @@ -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 diff --git a/devel/p5-ExtUtils-CChecker/pkg-descr b/devel/p5-ExtUtils-CChecker/pkg-descr index 58e80a9c709a..12c56dbdd0c7 100644 --- a/devel/p5-ExtUtils-CChecker/pkg-descr +++ b/devel/p5-ExtUtils-CChecker/pkg-descr @@ -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/ |