From b66748ec97cba5ad07ec90a779028373f6eb005a Mon Sep 17 00:00:00 2001 From: TAKATSU Tomonari Date: Sun, 31 Jan 2021 04:14:06 +0000 Subject: - Add new port: textproc/R-cran-sass An 'SCSS' compiler, powered by the 'LibSass' library. With this, R developers can use variables, inheritance, and functions to generate dynamic style sheets. The package uses the 'Sass CSS' extension language, which is stable, powerful, and CSS compatible. WWW: https://cran.r-project.org/web/packages/sass/ --- textproc/Makefile | 1 + textproc/R-cran-sass/Makefile | 24 ++++++++++++++++++++++++ textproc/R-cran-sass/distinfo | 3 +++ textproc/R-cran-sass/pkg-descr | 6 ++++++ 4 files changed, 34 insertions(+) create mode 100644 textproc/R-cran-sass/Makefile create mode 100644 textproc/R-cran-sass/distinfo create mode 100644 textproc/R-cran-sass/pkg-descr diff --git a/textproc/Makefile b/textproc/Makefile index c7d6bdf21d02..42972b2a503d 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -25,6 +25,7 @@ SUBDIR += R-cran-rex SUBDIR += R-cran-rio SUBDIR += R-cran-rmarkdown + SUBDIR += R-cran-sass SUBDIR += R-cran-stringi SUBDIR += R-cran-stringr SUBDIR += R-cran-utf8 diff --git a/textproc/R-cran-sass/Makefile b/textproc/R-cran-sass/Makefile new file mode 100644 index 000000000000..855cb47f2581 --- /dev/null +++ b/textproc/R-cran-sass/Makefile @@ -0,0 +1,24 @@ +# $FreeBSD$ + +PORTNAME= sass +PORTVERSION= 0.3.1 +CATEGORIES= textproc +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Syntactically Awesome Style Sheets ('Sass') + +LICENSE= MIT + +CRAN_DEPENDS= R-cran-digest>0:security/R-cran-digest \ + R-cran-fs>0:sysutils/R-cran-fs \ + R-cran-rlang>0:devel/R-cran-rlang \ + R-cran-htmltools>0:textproc/R-cran-htmltools \ + R-cran-R6>0:devel/R-cran-R6 \ + R-cran-rappdirs>0:devel/R-cran-rappdirs +BUILD_DEPENDS= ${CRAN_DEPENDS} +RUN_DEPENDS= ${CRAN_DEPENDS} + +USES= cran:auto-plist,compiles + +.include diff --git a/textproc/R-cran-sass/distinfo b/textproc/R-cran-sass/distinfo new file mode 100644 index 000000000000..628d223f9ea4 --- /dev/null +++ b/textproc/R-cran-sass/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1612048954 +SHA256 (sass_0.3.1.tar.gz) = 1a6ccbcbbfe6f69b820f1aea9a30da540613b2abc5288ca97b359cef9be6b8b3 +SIZE (sass_0.3.1.tar.gz) = 1837396 diff --git a/textproc/R-cran-sass/pkg-descr b/textproc/R-cran-sass/pkg-descr new file mode 100644 index 000000000000..bf6698c0fbc7 --- /dev/null +++ b/textproc/R-cran-sass/pkg-descr @@ -0,0 +1,6 @@ +An 'SCSS' compiler, powered by the 'LibSass' library. With this, R +developers can use variables, inheritance, and functions to generate +dynamic style sheets. The package uses the 'Sass CSS' extension +language, which is stable, powerful, and CSS compatible. + +WWW: https://cran.r-project.org/web/packages/sass/ -- cgit