aboutsummaryrefslogtreecommitdiff
path: root/textproc/Makefile
diff options
context:
space:
mode:
authorChin-San Huang <chinsan@FreeBSD.org>2008-08-31 08:31:02 +0000
committerChin-San Huang <chinsan@FreeBSD.org>2008-08-31 08:31:02 +0000
commitd2d421fd99442de3cc46828fc189d8c5f4e33dbc (patch)
tree673d5fdeee089354cc86b4c270700cdbd40acd4c /textproc/Makefile
parentb3759e494e6504748c2342618a36c5fd3b0c1776 (diff)
downloadports-d2d421fd99442de3cc46828fc189d8c5f4e33dbc.tar.gz
ports-d2d421fd99442de3cc46828fc189d8c5f4e33dbc.zip
Add p5-Text-CharWidth, get number of occupied columns of a string on terminal.
This module supplies features similar as wcwidth(3) and wcswidth(3) in C language. Characters have its own width on terminal depending on locale. For example, ASCII characters occupy one column per character, east Asian fullwidth characters (like Hiragana or Han Ideograph) occupy two columns per character, and combining characters (apperaring in ISO-8859-11 Thai, Unicode, and so on) occupy zero columns per character. mbwidth() gives the width of the first character of the given string and mbswidth() gives the width of the whole given string. The names of mbwidth and mbswidth came from "multibyte" versions of wcwidth and wcswidth which are "wide character" versions. mblen(string) returns number of bytes of the first character of the string. Please note that a character may consist of multiple bytes in multibyte encodings such as UTF-8, EUC-JP, EUC-KR, GB2312, or Big5. mbwidth(string) returns the width of the first character of the string. mbswidth(string) returns the width of the whole string. Parameters are to be given in locale encodings, not always in UTF-8. WWW: http://search.cpan.org/dist/Text-CharWidth/
Notes
Notes: svn path=/head/; revision=219506
Diffstat (limited to 'textproc/Makefile')
-rw-r--r--textproc/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/textproc/Makefile b/textproc/Makefile
index 000b653a135c..5bd8ad504baa 100644
--- a/textproc/Makefile
+++ b/textproc/Makefile
@@ -566,6 +566,7 @@
SUBDIR += p5-Text-CSV_PP
SUBDIR += p5-Text-CSV_XS
SUBDIR += p5-Text-Capitalize
+ SUBDIR += p5-Text-CharWidth
SUBDIR += p5-Text-Chomp
SUBDIR += p5-Text-Context-EitherSide
SUBDIR += p5-Text-Decorator