summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>2015-08-25 03:09:46 +0000
committerSunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>2015-08-25 03:09:46 +0000
commitcd261b21028e340077bfcbda106460221a847081 (patch)
tree63743cd9044b33bef2536563295e8a1f0f142283
parent- Simplify COMMENT (diff)
- Simplify COMMENT
- Fix LICENSE section - Strip shared library - Reformat pkg-descr - Take maintainership
Notes
Notes: svn path=/head/; revision=395212
-rw-r--r--devel/p5-Scalar-String/Makefile12
-rw-r--r--devel/p5-Scalar-String/pkg-descr19
2 files changed, 17 insertions, 14 deletions
diff --git a/devel/p5-Scalar-String/Makefile b/devel/p5-Scalar-String/Makefile
index 1c11ca88d60c..6bbdc45a78b1 100644
--- a/devel/p5-Scalar-String/Makefile
+++ b/devel/p5-Scalar-String/Makefile
@@ -8,12 +8,16 @@ CATEGORIES= devel perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= Perl module for string aspects of scalars
+MAINTAINER= sunpoet@FreeBSD.org
+COMMENT= String aspects of scalars
-LICENSE_COMB= dual
LICENSE= ART10 GPLv1
-USES= perl5
+LICENSE_COMB= dual
+
USE_PERL5= modbuild
+USES= perl5
+
+post-install:
+ ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/Scalar/String/String.so
.include <bsd.port.mk>
diff --git a/devel/p5-Scalar-String/pkg-descr b/devel/p5-Scalar-String/pkg-descr
index f20816f168ca..084eb5360065 100644
--- a/devel/p5-Scalar-String/pkg-descr
+++ b/devel/p5-Scalar-String/pkg-descr
@@ -1,14 +1,13 @@
-This module is about the string part of plain Perl scalars. A scalar
-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 is about the string part of plain Perl scalars. A scalar 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 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.
+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/