diff options
author | TAKATSU Tomonari <tota@FreeBSD.org> | 2015-08-08 08:54:54 +0000 |
---|---|---|
committer | TAKATSU Tomonari <tota@FreeBSD.org> | 2015-08-08 08:54:54 +0000 |
commit | 2366c6a2641dd0a8986195fd5090f5ecb6a532c4 (patch) | |
tree | b67a7b307b10060f6fb14a142b7008c3c30b6ff1 | |
parent | 95c270496f834afe84ed0eccacabc67d0ec6627d (diff) | |
download | freebsd-ports-2366c6a2641dd0a8986195fd5090f5ecb6a532c4.zip |
- Add new port: textproc/R-cran-highr
Provides syntax highlighting for R source code. Currently it supports
LaTeX and HTML output. Source code of other languages is supported
via Andre Simon's highlight package.
WWW: https://cran.r-project.org/web/packages/highr/
-rw-r--r-- | textproc/Makefile | 1 | ||||
-rw-r--r-- | textproc/R-cran-highr/Makefile | 17 | ||||
-rw-r--r-- | textproc/R-cran-highr/distinfo | 2 | ||||
-rw-r--r-- | textproc/R-cran-highr/pkg-descr | 5 |
4 files changed, 25 insertions, 0 deletions
diff --git a/textproc/Makefile b/textproc/Makefile index 68463216e03d..16454a4fd94f 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -7,6 +7,7 @@ SUBDIR += R-cran-R2HTML SUBDIR += R-cran-XML SUBDIR += R-cran-formatR + SUBDIR += R-cran-highr SUBDIR += R-cran-htmltools SUBDIR += R-cran-markdown SUBDIR += R-cran-pystr diff --git a/textproc/R-cran-highr/Makefile b/textproc/R-cran-highr/Makefile new file mode 100644 index 000000000000..8b4d34ab94bc --- /dev/null +++ b/textproc/R-cran-highr/Makefile @@ -0,0 +1,17 @@ +# Created by: TAKATSU Tomonari <tota@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= highr +PORTVERSION= 0.5 +CATEGORIES= textproc +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Syntax Highlighting for R Source Code + +LICENSE= GPLv2 GPLv3 +LICENSE_COMB= dual + +USES= cran:auto-plist + +.include <bsd.port.mk> diff --git a/textproc/R-cran-highr/distinfo b/textproc/R-cran-highr/distinfo new file mode 100644 index 000000000000..2d3c7b3b73f9 --- /dev/null +++ b/textproc/R-cran-highr/distinfo @@ -0,0 +1,2 @@ +SHA256 (highr_0.5.tar.gz) = de7e584e1dda73b39c81e5c2feaff8807892ab6ab23c9d6771e4e9326f59ca4a +SIZE (highr_0.5.tar.gz) = 16288 diff --git a/textproc/R-cran-highr/pkg-descr b/textproc/R-cran-highr/pkg-descr new file mode 100644 index 000000000000..0ecd2ead6a57 --- /dev/null +++ b/textproc/R-cran-highr/pkg-descr @@ -0,0 +1,5 @@ +Provides syntax highlighting for R source code. Currently it supports +LaTeX and HTML output. Source code of other languages is supported +via Andre Simon's highlight package. + +WWW: https://cran.r-project.org/web/packages/highr/ |