diff options
author | tota <tota@FreeBSD.org> | 2011-08-01 23:41:41 +0800 |
---|---|---|
committer | tota <tota@FreeBSD.org> | 2011-08-01 23:41:41 +0800 |
commit | f2d71f5442f29a6b795273dbace5c4493edafe23 (patch) | |
tree | 26220e55361e32d5bc52f8a9d167ac5e6b12a3ee /textproc | |
parent | ac10e14d73538d3b76df7c121d2a3f7e0c6eb23e (diff) | |
download | freebsd-ports-gnome-f2d71f5442f29a6b795273dbace5c4493edafe23.tar.gz freebsd-ports-gnome-f2d71f5442f29a6b795273dbace5c4493edafe23.tar.zst freebsd-ports-gnome-f2d71f5442f29a6b795273dbace5c4493edafe23.zip |
- Add a new port: textproc/rubygem-coderay
CodeRay is a Ruby library for syntax highlighting.
Syntax highlighting means: You put your code in, and you get it back colored;
Keywords, strings, floats, comments - all in different colors. And with line
numbers.
Syntax Highlighting...
* makes code easier to read and maintain
* lets you detect syntax errors faster
* helps you to understand the syntax of a language
* looks nice
* is what everybody should have on their website
* solves all your problems and makes the girls run after you
WWW: http://coderay.rubychan.de/
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/Makefile | 1 | ||||
-rw-r--r-- | textproc/rubygem-coderay/Makefile | 23 | ||||
-rw-r--r-- | textproc/rubygem-coderay/distinfo | 2 | ||||
-rw-r--r-- | textproc/rubygem-coderay/pkg-descr | 16 |
4 files changed, 42 insertions, 0 deletions
diff --git a/textproc/Makefile b/textproc/Makefile index f41f720e468a..57cea7cc72fc 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -1185,6 +1185,7 @@ SUBDIR += ruby-xslt SUBDIR += ruby-xtemplate SUBDIR += rubygem-augeas + SUBDIR += rubygem-coderay SUBDIR += rubygem-diff-lcs SUBDIR += rubygem-ezamar SUBDIR += rubygem-ferret diff --git a/textproc/rubygem-coderay/Makefile b/textproc/rubygem-coderay/Makefile new file mode 100644 index 000000000000..98e95ed9bae5 --- /dev/null +++ b/textproc/rubygem-coderay/Makefile @@ -0,0 +1,23 @@ +# New ports collection makefile for: rubygem-coderay +# Date created: 2011-08-01 +# Whom: TAKATSU Tomonari <tota@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= coderay +PORTVERSION= 0.9.8 +CATEGORIES= textproc rubygems +MASTER_SITES= RG + +MAINTAINER= tota@FreeBSD.org +COMMENT= Fast and easy syntax highlighting for selected languages + +LICENSE= LGPL21 + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes +PLIST_FILES= bin/coderay bin/coderay_stylesheet + +.include <bsd.port.mk> diff --git a/textproc/rubygem-coderay/distinfo b/textproc/rubygem-coderay/distinfo new file mode 100644 index 000000000000..fcbd997cb825 --- /dev/null +++ b/textproc/rubygem-coderay/distinfo @@ -0,0 +1,2 @@ +SHA256 (rubygem/coderay-0.9.8.gem) = 1522e8b2d73dfead95d7f195dce63411c59b4b7cb120c6589d6474ccf207d38c +SIZE (rubygem/coderay-0.9.8.gem) = 97792 diff --git a/textproc/rubygem-coderay/pkg-descr b/textproc/rubygem-coderay/pkg-descr new file mode 100644 index 000000000000..885044da749c --- /dev/null +++ b/textproc/rubygem-coderay/pkg-descr @@ -0,0 +1,16 @@ +CodeRay is a Ruby library for syntax highlighting. + +Syntax highlighting means: You put your code in, and you get it back colored; +Keywords, strings, floats, comments - all in different colors. And with line +numbers. + +Syntax Highlighting... + + * makes code easier to read and maintain + * lets you detect syntax errors faster + * helps you to understand the syntax of a language + * looks nice + * is what everybody should have on their website + * solves all your problems and makes the girls run after you + +WWW: http://coderay.rubychan.de/ |