GDD is a graphics device for R which uses libgd for creating bitmap output.
Supported output formats are png8, png24, gif and jpeg. The main purpose of this package is to replace png/jpeg and similar native devices in R which either rely on X11 or use GhostScript are thus are very slow and not suitable in server applications. GDD also supports advanced features such as anti-aliasing of both lines and text. WWW: http://www.rosuda.org/R/GDD/
This commit is contained in:
parent
2779eeaa2b
commit
ea28d29123
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=302938
5 changed files with 46 additions and 0 deletions
|
@ -16,6 +16,7 @@
|
|||
SUBDIR += ImageMagick-nox11
|
||||
SUBDIR += O2-tools
|
||||
SUBDIR += OpenEXR
|
||||
SUBDIR += R-cran-GDD
|
||||
SUBDIR += R-cran-RColorBrewer
|
||||
SUBDIR += R-cran-colorspace
|
||||
SUBDIR += R-cran-diagram
|
||||
|
|
22
graphics/R-cran-GDD/Makefile
Normal file
22
graphics/R-cran-GDD/Makefile
Normal file
|
@ -0,0 +1,22 @@
|
|||
# New ports collection makefile for: GDD
|
||||
# Date created: 2012-08-21
|
||||
# Whom: Steven Kreuzer <skreuzer@FreeBSD.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= GDD
|
||||
PORTVERSION= 0.1.13.1
|
||||
CATEGORIES= graphics
|
||||
DISTNAME= ${PORTNAME}_0.1-13.1
|
||||
|
||||
MAINTAINER= skreuzer@FreeBSD.org
|
||||
COMMENT= Graphics device for R for creating bitmap output
|
||||
|
||||
LICENSE= GPLv2
|
||||
|
||||
WRKSRC= ${WRKDIR}/${PORTNAME}
|
||||
|
||||
USE_R_MOD= yes
|
||||
R_MOD_AUTOPLIST= yes
|
||||
|
||||
.include <bsd.port.mk>
|
2
graphics/R-cran-GDD/distinfo
Normal file
2
graphics/R-cran-GDD/distinfo
Normal file
|
@ -0,0 +1,2 @@
|
|||
SHA256 (GDD_0.1-13.1.tar.gz) = c5e9197c42411e8274f30f41d90387535e8a6c90aaff4106cd29d3e6ad4a2432
|
||||
SIZE (GDD_0.1-13.1.tar.gz) = 86515
|
12
graphics/R-cran-GDD/files/patch-src-Makevars.in
Normal file
12
graphics/R-cran-GDD/files/patch-src-Makevars.in
Normal file
|
@ -0,0 +1,12 @@
|
|||
--- src/Makevars.in.orig 2011-09-22 15:29:19.000000000 +0000
|
||||
+++ src/Makevars.in 2011-09-22 15:29:44.000000000 +0000
|
||||
@@ -1,7 +1,7 @@
|
||||
# we need to add JNI specific stuff here
|
||||
-ifdef DEBUG
|
||||
+.ifdef DEBUG
|
||||
PKG_CFLAGS+=-DJGD_DEBUG
|
||||
-endif
|
||||
+.endif
|
||||
PKG_CFLAGS+=@CFLAGS@
|
||||
PKG_CPPFLAGS+=@CPPFLAGS@ -I. -Iinclude
|
||||
PKG_LIBS+=@LDFLAGS@ @LIBS@
|
9
graphics/R-cran-GDD/pkg-descr
Normal file
9
graphics/R-cran-GDD/pkg-descr
Normal file
|
@ -0,0 +1,9 @@
|
|||
GDD is a graphics device for R which uses libgd for creating bitmap output.
|
||||
Supported output formats are png8, png24, gif and jpeg.
|
||||
|
||||
The main purpose of this package is to replace png/jpeg and similar native
|
||||
devices in R which either rely on X11 or use GhostScript are thus are very slow
|
||||
and not suitable in server applications. GDD also supports advanced features
|
||||
such as anti-aliasing of both lines and text.
|
||||
|
||||
WWW: http://www.rosuda.org/R/GDD/
|
Loading…
Reference in a new issue