Port of the new 'matplotlib' color maps ('viridis' - the default -, 'magma', 'plasma' and 'inferno') to 'R'. 'matplotlib' <http://matplotlib.org/> is a popular plotting library for 'python'. These color maps are designed in such a way that they will analytically be perfectly perceptually-uniform, both in regular form and also when converted to black-and-white. They are also designed to be perceived by readers with the most common form of color blindness. WWW: https://cran.r-project.org/web/packages/viridis/
22 lines
524 B
Makefile
22 lines
524 B
Makefile
# Created by: TAKATSU Tomonari <tota@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= viridis
|
|
PORTVERSION= 0.4.0
|
|
CATEGORIES= graphics
|
|
DISTNAME= ${PORTNAME}_${DISTVERSION}
|
|
|
|
MAINTAINER= tota@FreeBSD.org
|
|
COMMENT= Default Color Maps from 'matplotlib'
|
|
|
|
LICENSE= MIT
|
|
|
|
CRAN_DEPENDS= R-cran-viridisLite>=0.2.0:graphics/R-cran-viridisLite \
|
|
R-cran-ggplot2>=1.0.1:graphics/R-cran-ggplot2 \
|
|
R-cran-gridExtra>0:graphics/R-cran-gridExtra
|
|
BUILD_DEPENDS= ${CRAN_DEPENDS}
|
|
RUN_DEPENDS= ${CRAN_DEPENDS}
|
|
|
|
USES= cran:auto-plist
|
|
|
|
.include <bsd.port.mk>
|