diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2009-07-13 22:13:24 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2009-07-13 22:13:24 +0000 |
commit | 8f1a58689c59e29cc804f3e70a73a21befc3c258 (patch) | |
tree | c44814454ae6f251bd89efbd0db39294a7458016 | |
parent | Fix the installation with libtool 2.2. (diff) |
HTMLEntities is a simple library to facilitate encoding and decoding of
named (ý and so on) or numerical ({ or Ī) entities
in HTML and XHTML documents.
WWW: http://rubyforge.org/projects/htmlentities/
PR: ports/136713
Submitted by: TERAMOTO Masahiro <markun at onohara.to>
Notes
Notes:
svn path=/head/; revision=237717
-rw-r--r-- | textproc/Makefile | 1 | ||||
-rw-r--r-- | textproc/rubygem-htmlentities/Makefile | 20 | ||||
-rw-r--r-- | textproc/rubygem-htmlentities/distinfo | 3 | ||||
-rw-r--r-- | textproc/rubygem-htmlentities/pkg-descr | 5 |
4 files changed, 29 insertions, 0 deletions
diff --git a/textproc/Makefile b/textproc/Makefile index 447d70c3ac9e..7581ebb8c3e5 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -1018,6 +1018,7 @@ SUBDIR += rubygem-diff-lcs SUBDIR += rubygem-ferret SUBDIR += rubygem-formosa + SUBDIR += rubygem-htmlentities SUBDIR += rubygem-htmltools SUBDIR += rubygem-ini SUBDIR += rubygem-markaby diff --git a/textproc/rubygem-htmlentities/Makefile b/textproc/rubygem-htmlentities/Makefile new file mode 100644 index 000000000000..4e7219128a41 --- /dev/null +++ b/textproc/rubygem-htmlentities/Makefile @@ -0,0 +1,20 @@ +# New ports collection makefile for: rubygem-htmlentities +# Date created: 2009-07-13 +# Whom: TERAMOTO Masahiro <markun@onohara.to> +# +# $FreeBSD$ +# + +PORTNAME= htmlentities +PORTVERSION= 4.0.0 +CATEGORIES= textproc rubygems +MASTER_SITES= RF + +MAINTAINER= markun@onohara.to +COMMENT= HTML entity encoding and decoding for Ruby + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include <bsd.port.mk> diff --git a/textproc/rubygem-htmlentities/distinfo b/textproc/rubygem-htmlentities/distinfo new file mode 100644 index 000000000000..55ae670a89fa --- /dev/null +++ b/textproc/rubygem-htmlentities/distinfo @@ -0,0 +1,3 @@ +MD5 (rubygem/htmlentities-4.0.0.gem) = 8490050367c95d63f83049852f7e93a8 +SHA256 (rubygem/htmlentities-4.0.0.gem) = 0dd025e8860ec45bff23b6241c1b15d1b56b6a1d835ecb3f843033ed2612c8da +SIZE (rubygem/htmlentities-4.0.0.gem) = 11264 diff --git a/textproc/rubygem-htmlentities/pkg-descr b/textproc/rubygem-htmlentities/pkg-descr new file mode 100644 index 000000000000..95f7fa816589 --- /dev/null +++ b/textproc/rubygem-htmlentities/pkg-descr @@ -0,0 +1,5 @@ +HTMLEntities is a simple library to facilitate encoding and decoding of +named (ý and so on) or numerical ({ or Ī) entities +in HTML and XHTML documents. + +WWW: http://rubyforge.org/projects/htmlentities/ |