diff options
author | sanpei <sanpei@FreeBSD.org> | 2012-04-15 21:31:03 +0800 |
---|---|---|
committer | sanpei <sanpei@FreeBSD.org> | 2012-04-15 21:31:03 +0800 |
commit | e4f6c7ba1d6e2a690cc54ec2f9ca4a5a199ffbfa (patch) | |
tree | caa11691e56347e11aab660d2dc6f6e170d954a3 /textproc | |
parent | 07fdff2862671ada444c5628793e91a317cef78c (diff) | |
download | freebsd-ports-graphics-e4f6c7ba1d6e2a690cc54ec2f9ca4a5a199ffbfa.tar.gz freebsd-ports-graphics-e4f6c7ba1d6e2a690cc54ec2f9ca4a5a199ffbfa.tar.zst freebsd-ports-graphics-e4f6c7ba1d6e2a690cc54ec2f9ca4a5a199ffbfa.zip |
This is a wrapper library to bring Unicode Normalization Form support
to Ruby/JRuby.
Reviewed by: swills
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/Makefile | 1 | ||||
-rw-r--r-- | textproc/rubygem-unf/Makefile | 21 | ||||
-rw-r--r-- | textproc/rubygem-unf/distinfo | 2 | ||||
-rw-r--r-- | textproc/rubygem-unf/pkg-descr | 4 |
4 files changed, 28 insertions, 0 deletions
diff --git a/textproc/Makefile b/textproc/Makefile index 00012890565..72a29cf4e67 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -1271,6 +1271,7 @@ SUBDIR += rubygem-termcolor SUBDIR += rubygem-terminal-table SUBDIR += rubygem-tidy + SUBDIR += rubygem-unf SUBDIR += rubygem-unf_ext SUBDIR += rubygem-xml-simple SUBDIR += rubygem-xslt diff --git a/textproc/rubygem-unf/Makefile b/textproc/rubygem-unf/Makefile new file mode 100644 index 00000000000..6efe519a0c6 --- /dev/null +++ b/textproc/rubygem-unf/Makefile @@ -0,0 +1,21 @@ +# Ports collection makefile for: rubygem-unf +# Date created: 31 Mar 2012 +# Whom: MIHIRA Yoshiro <sanpei@FreeBSD.org> +# +# $FreeBSD$ + +PORTNAME= unf +PORTVERSION= 0.0.3 +CATEGORIES= textproc rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= Wrapper library to bring Unicode Normalization Form support + +RUN_DEPENDS= rubygem-unf_ext>=0:${PORTSDIR}/textproc/rubygem-unf_ext + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include <bsd.port.mk> diff --git a/textproc/rubygem-unf/distinfo b/textproc/rubygem-unf/distinfo new file mode 100644 index 00000000000..1c61f8387d9 --- /dev/null +++ b/textproc/rubygem-unf/distinfo @@ -0,0 +1,2 @@ +SHA256 (rubygem/unf-0.0.3.gem) = 77a91261252d5c98b74ee5ff480183783bea71fed777e8627f3ce50631ad9b59 +SIZE (rubygem/unf-0.0.3.gem) = 118784 diff --git a/textproc/rubygem-unf/pkg-descr b/textproc/rubygem-unf/pkg-descr new file mode 100644 index 00000000000..8241f5e861d --- /dev/null +++ b/textproc/rubygem-unf/pkg-descr @@ -0,0 +1,4 @@ +This is a wrapper library to bring Unicode Normalization Form support +to Ruby/JRuby. + +WWW: https://github.com/knu/ruby-unf |