diff options
author | MIHIRA Sanpei Yoshiro <sanpei@FreeBSD.org> | 2012-04-15 13:29:57 +0000 |
---|---|---|
committer | MIHIRA Sanpei Yoshiro <sanpei@FreeBSD.org> | 2012-04-15 13:29:57 +0000 |
commit | 3745cb1ebf5a84106988050fec55592fca7bed7f (patch) | |
tree | c9615445b3632b9e95cf13c338ebee4e07708421 | |
parent | - Update to 0.2.0 (diff) |
Unicode Normalization Form support library for CRuby.
Reviewed by: swills
Notes
Notes:
svn path=/head/; revision=294850
-rw-r--r-- | textproc/Makefile | 1 | ||||
-rw-r--r-- | textproc/rubygem-unf_ext/Makefile | 19 | ||||
-rw-r--r-- | textproc/rubygem-unf_ext/distinfo | 2 | ||||
-rw-r--r-- | textproc/rubygem-unf_ext/pkg-descr | 3 |
4 files changed, 25 insertions, 0 deletions
diff --git a/textproc/Makefile b/textproc/Makefile index d09966f45b04..000128905659 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -1271,6 +1271,7 @@ SUBDIR += rubygem-termcolor SUBDIR += rubygem-terminal-table SUBDIR += rubygem-tidy + SUBDIR += rubygem-unf_ext SUBDIR += rubygem-xml-simple SUBDIR += rubygem-xslt SUBDIR += rubygem-yard diff --git a/textproc/rubygem-unf_ext/Makefile b/textproc/rubygem-unf_ext/Makefile new file mode 100644 index 000000000000..c5669b434028 --- /dev/null +++ b/textproc/rubygem-unf_ext/Makefile @@ -0,0 +1,19 @@ +# Ports collection makefile for: rubygem-unf_ext +# Date created: 31 Mar 2012 +# Whom: MIHIRA Yoshiro <sanpei@FreeBSD.org> +# +# $FreeBSD$ + +PORTNAME= unf_ext +PORTVERSION= 0.0.4 +CATEGORIES= textproc rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= Unicode Normalization Form support library for CRuby + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include <bsd.port.mk> diff --git a/textproc/rubygem-unf_ext/distinfo b/textproc/rubygem-unf_ext/distinfo new file mode 100644 index 000000000000..8b75c830743a --- /dev/null +++ b/textproc/rubygem-unf_ext/distinfo @@ -0,0 +1,2 @@ +SHA256 (rubygem/unf_ext-0.0.4.gem) = 257b89ad3bbb90ca1a1f32aedb75df955197125cbe8d9ffcc868c56072e39c6c +SIZE (rubygem/unf_ext-0.0.4.gem) = 396288 diff --git a/textproc/rubygem-unf_ext/pkg-descr b/textproc/rubygem-unf_ext/pkg-descr new file mode 100644 index 000000000000..6d34b3a0c708 --- /dev/null +++ b/textproc/rubygem-unf_ext/pkg-descr @@ -0,0 +1,3 @@ +Unicode Normalization Form support library for CRuby. + +WWW: https://github.com/knu/ruby-unf_ext |