diff options
author | seb <seb@pkgsrc.org> | 2004-11-08 22:07:54 +0000 |
---|---|---|
committer | seb <seb@pkgsrc.org> | 2004-11-08 22:07:54 +0000 |
commit | 6bff7b988b57a1e380e2d3d96c101f9c01c7117b (patch) | |
tree | efaaefcb25e777fa56a9cb483767bf1a5570f284 | |
parent | b4d68d91eb36955a15c1c5c42a1492c47fac7d85 (diff) | |
download | pkgsrc-6bff7b988b57a1e380e2d3d96c101f9c01c7117b.tar.gz |
Update to version 1.4.
While here set a more specific homepage.
Approved by abs@
Changes since last packaged version (1.2):
1.3 Mon Jun 28 19:25:43 CEST 2004
- Makefile.PL now tries to detect the need for -liconv
- added retval() method to Text::Iconv objects, which returns the
iconv() return value (according to the Single UNIX Specification,
"the number of non-identical conversions performed")
- to make this possible, Text::Iconv objects are--on the C level--no
longer just the iconv handle, but a struct (which can contain other
information besides the handle)
1.4 Sun Jul 18 00:09:21 CEST 2004
- Added instance attribute raise_error and corresponding
method to control exception raising on a per-object basis.
- Reset shift state for state-dependent conversions.
- Makefile.PL now passes all options besides LIBS and INC to
MakeMaker, so options like INSTALLDIRS=vendor work again.
-rw-r--r-- | converters/p5-Text-Iconv/Makefile | 8 | ||||
-rw-r--r-- | converters/p5-Text-Iconv/distinfo | 7 | ||||
-rw-r--r-- | converters/p5-Text-Iconv/patches/patch-aa | 13 |
3 files changed, 7 insertions, 21 deletions
diff --git a/converters/p5-Text-Iconv/Makefile b/converters/p5-Text-Iconv/Makefile index 61996012349..e6afde1efda 100644 --- a/converters/p5-Text-Iconv/Makefile +++ b/converters/p5-Text-Iconv/Makefile @@ -1,19 +1,19 @@ -# $NetBSD: Makefile,v 1.11 2004/10/03 00:13:17 tv Exp $ +# $NetBSD: Makefile,v 1.12 2004/11/08 22:07:54 seb Exp $ # -DISTNAME= Text-Iconv-1.2 +DISTNAME= Text-Iconv-1.4 PKGNAME= p5-${DISTNAME} -PKGREVISION= 2 SVR4_PKGNAME= p5tic CATEGORIES= converters perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Text/} MAINTAINER= abs@NetBSD.org -HOMEPAGE= http://www.linguistik.uni-erlangen.de/~mxp/ +HOMEPAGE= http://search.cpan.org/dist/Text-Iconv/ COMMENT= Perl interface to iconv() codeset conversion function USE_BUILDLINK3= YES PERL5_PACKLIST= ${PERL5_SITEARCH}/auto/Text/Iconv/.packlist +MAKE_PARAMS= LIBS=${BUILDLINK_LDADD.iconv} .include "../../converters/libiconv/buildlink3.mk" .include "../../lang/perl5/module.mk" diff --git a/converters/p5-Text-Iconv/distinfo b/converters/p5-Text-Iconv/distinfo index 12868c8c149..7582f73e36b 100644 --- a/converters/p5-Text-Iconv/distinfo +++ b/converters/p5-Text-Iconv/distinfo @@ -1,5 +1,4 @@ -$NetBSD: distinfo,v 1.2 2003/03/06 19:49:00 wiz Exp $ +$NetBSD: distinfo,v 1.3 2004/11/08 22:07:54 seb Exp $ -SHA1 (Text-Iconv-1.2.tar.gz) = 93b8896321aca94095568d73a2cf6e3d7360a92d -Size (Text-Iconv-1.2.tar.gz) = 6455 bytes -SHA1 (patch-aa) = 8a3b147e8fcac8982f0e1822e1581fe18c39ad4e +SHA1 (Text-Iconv-1.4.tar.gz) = da006eff1745f0458a0c72f87eb49c8dc58a46aa +Size (Text-Iconv-1.4.tar.gz) = 8986 bytes diff --git a/converters/p5-Text-Iconv/patches/patch-aa b/converters/p5-Text-Iconv/patches/patch-aa deleted file mode 100644 index 4d4df47e0dc..00000000000 --- a/converters/p5-Text-Iconv/patches/patch-aa +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-aa,v 1.1.1.1 2001/09/14 22:38:57 abs Exp $ - ---- Makefile.PL.orig Wed Aug 1 17:27:52 2001 -+++ Makefile.PL -@@ -4,7 +4,7 @@ - WriteMakefile( - 'NAME' => 'Text::Iconv', - 'VERSION_FROM' => 'Iconv.pm', # finds $VERSION -- 'LIBS' => [''], # e.g., '-lm' -+ 'LIBS' => ['-liconv'], # e.g., '-lm' - 'DEFINE' => '', # e.g., '-DHAVE_SOMETHING' - 'INC' => '', # e.g., '-I/usr/include/other' - 'dist' => {COMPRESS => 'gzip', SUFFIX => 'gz'}, |