diff options
author | Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2015-05-22 17:34:52 +0000 |
---|---|---|
committer | Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2015-05-22 17:34:52 +0000 |
commit | d8a8067d877e005641b9efd1bdec39fd026b8fa4 (patch) | |
tree | cc0991e63fd78040c7e73b9343ffcf286510cc2f | |
parent | ebfd4da33668d0d74442bba9507188f931305fce (diff) | |
download | ports-d8a8067d877e005641b9efd1bdec39fd026b8fa4.tar.gz ports-d8a8067d877e005641b9efd1bdec39fd026b8fa4.zip |
Notes
-rw-r--r-- | converters/p5-XML-WBXML/Makefile | 8 | ||||
-rw-r--r-- | converters/p5-XML-WBXML/distinfo | 4 | ||||
-rw-r--r-- | converters/p5-XML-WBXML/files/patch-Makefile.PL | 26 |
3 files changed, 20 insertions, 18 deletions
diff --git a/converters/p5-XML-WBXML/Makefile b/converters/p5-XML-WBXML/Makefile index e57166a0e243..078727db93a2 100644 --- a/converters/p5-XML-WBXML/Makefile +++ b/converters/p5-XML-WBXML/Makefile @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= XML-WBXML -PORTVERSION= 0.03 -PORTREVISION= 2 +PORTVERSION= 0.08 CATEGORIES= converters perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -11,13 +10,16 @@ PKGNAMEPREFIX= p5- MAINTAINER= perl@FreeBSD.org COMMENT= Convert between XML and WBXML using libwbxml2 +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + LIB_DEPENDS= libwbxml2.so:${PORTSDIR}/textproc/wbxml2 USES= perl5 USE_PERL5= configure post-patch: - @${REINPLACE_CMD} -e 's,-I.,-I. -I${LOCALBASE}/include,' ${WRKSRC}/Makefile.PL + @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|' ${WRKSRC}/Makefile.PL post-install: ${CHMOD} u+w ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/XML/WBXML/WBXML.so diff --git a/converters/p5-XML-WBXML/distinfo b/converters/p5-XML-WBXML/distinfo index 2a37fe18fe46..e5d7a169dd11 100644 --- a/converters/p5-XML-WBXML/distinfo +++ b/converters/p5-XML-WBXML/distinfo @@ -1,2 +1,2 @@ -SHA256 (XML-WBXML-0.03.tar.gz) = 618033732691ed6991b2568213dcc2cb41aee0b65aff5a90ffe253fb650e27da -SIZE (XML-WBXML-0.03.tar.gz) = 52022 +SHA256 (XML-WBXML-0.08.tar.gz) = bfabde1879865d227ec405a0e4d6bc0f6ad54dd31d679009585b579a5286ac19 +SIZE (XML-WBXML-0.08.tar.gz) = 61277 diff --git a/converters/p5-XML-WBXML/files/patch-Makefile.PL b/converters/p5-XML-WBXML/files/patch-Makefile.PL index 4e91529c62a0..346a7b261388 100644 --- a/converters/p5-XML-WBXML/files/patch-Makefile.PL +++ b/converters/p5-XML-WBXML/files/patch-Makefile.PL @@ -1,14 +1,14 @@ ---- Makefile.PL.orig Fri Jul 28 01:39:37 2006 -+++ Makefile.PL Fri Jul 28 09:02:40 2006 -@@ -8,9 +8,9 @@ - PREREQ_PM => {}, # e.g., Module::Name => 1.1 - ABSTRACT_FROM => 'lib/XML/WBXML.pm', # retrieve abstract from module - AUTHOR => 'David Glasser <glasser@bestpractical.com>', -- LIBS => ['-lwbxml2'], # e.g., '-lm' -+ LIBS => ['-L/usr/local/lib -lwbxml2'], # e.g., '-lm' - DEFINE => '', # e.g., '-DHAVE_SOMETHING' -- INC => '-I.', # e.g., '-I. -I/usr/include/other' -+ INC => '-I. -I/usr/local/include', # e.g., '-I. -I/usr/include/other' - # Un-comment this if you add C files to link with later: +--- Makefile.PL.orig 2015-05-21 10:43:29 UTC ++++ Makefile.PL +@@ -10,9 +10,9 @@ WriteMakefile( + ABSTRACT_FROM => 'lib/XML/WBXML.pm', # retrieve abstract from module + LICENSE => 'perl_5', + PREREQ_PM => {}, # e.g., Module::Name => 1.1 +- LIBS => ['-lwbxml2'], # e.g., '-lm' ++ LIBS => ['-L%%LOCALBASE%%/lib -lwbxml2'], # e.g., '-lm' + DEFINE => '', # e.g., '-DHAVE_SOMETHING' +- INC => '-I.', # e.g., '-I. -I/usr/include/other' ++ INC => '-I. -I%%LOCALBASE%%/include', # e.g., '-I. -I/usr/include/other' + + # Un-comment this if you add C files to link with later: # OBJECT => '$(O_FILES)', # link all the C files too - ); |