20200a747c
has a string value, which is notionally a sequence of Unicode codepoints, but may be internally encoded in either ISO-8859-1 or UTF-8. In places, and more so in older versions of Perl, the internal encoding shows through. To fully understand Perl strings it is necessary to understand these implementation details. This module provides functions to classify a string by encoding and to encode a string in a desired way. This module is implemented in XS, with a pure Perl backup version for systems that can't handle XS. WWW: http://search.cpan.org/dist/Scalar-String/
21 lines
383 B
Makefile
21 lines
383 B
Makefile
# New ports collection makefile for: Scalar-String
|
|
# Date created: 25 Mar 2009
|
|
# Whom: brix@FreeBSD.org
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= Scalar-String
|
|
PORTVERSION= 0.000
|
|
CATEGORIES= devel perl5
|
|
MASTER_SITES= CPAN
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= brix@FreeBSD.org
|
|
COMMENT= Perl module for string aspects of scalars
|
|
|
|
PERL_MODBUILD= yes
|
|
|
|
MAN3= Scalar::String.3
|
|
|
|
.include <bsd.port.mk>
|