svn commit: r302938 - in head/graphics: . R-cran-GDD R-cran-GDD/files

Steven Kreuzer skreuzer at FreeBSD.org
Wed Aug 22 13:59:55 UTC 2012


Author: skreuzer
Date: Wed Aug 22 13:59:54 2012
New Revision: 302938
URL: http://svn.freebsd.org/changeset/ports/302938

Log:
  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/

Added:
  head/graphics/R-cran-GDD/
  head/graphics/R-cran-GDD/Makefile   (contents, props changed)
  head/graphics/R-cran-GDD/distinfo   (contents, props changed)
  head/graphics/R-cran-GDD/files/
  head/graphics/R-cran-GDD/files/patch-src-Makevars.in   (contents, props changed)
  head/graphics/R-cran-GDD/pkg-descr   (contents, props changed)
Modified:
  head/graphics/Makefile

Modified: head/graphics/Makefile
==============================================================================
--- head/graphics/Makefile	Wed Aug 22 13:53:11 2012	(r302937)
+++ head/graphics/Makefile	Wed Aug 22 13:59:54 2012	(r302938)
@@ -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

Added: head/graphics/R-cran-GDD/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/R-cran-GDD/Makefile	Wed Aug 22 13:59:54 2012	(r302938)
@@ -0,0 +1,22 @@
+# New ports collection makefile for:	GDD
+# Date created:		2012-08-21
+# Whom:			Steven Kreuzer <skreuzer at FreeBSD.org>
+#
+# $FreeBSD$
+
+PORTNAME=	GDD
+PORTVERSION=	0.1.13.1
+CATEGORIES=	graphics
+DISTNAME=	${PORTNAME}_0.1-13.1
+
+MAINTAINER=	skreuzer at 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>

Added: head/graphics/R-cran-GDD/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/R-cran-GDD/distinfo	Wed Aug 22 13:59:54 2012	(r302938)
@@ -0,0 +1,2 @@
+SHA256 (GDD_0.1-13.1.tar.gz) = c5e9197c42411e8274f30f41d90387535e8a6c90aaff4106cd29d3e6ad4a2432
+SIZE (GDD_0.1-13.1.tar.gz) = 86515

Added: head/graphics/R-cran-GDD/files/patch-src-Makevars.in
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/R-cran-GDD/files/patch-src-Makevars.in	Wed Aug 22 13:59:54 2012	(r302938)
@@ -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@

Added: head/graphics/R-cran-GDD/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/graphics/R-cran-GDD/pkg-descr	Wed Aug 22 13:59:54 2012	(r302938)
@@ -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/



More information about the svn-ports-head mailing list