diff options
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/svg2png/Makefile | 24 | ||||
-rw-r--r-- | graphics/svg2png/distinfo | 2 | ||||
-rw-r--r-- | graphics/svg2png/files/patch-src_svg2png.c | 13 | ||||
-rw-r--r-- | graphics/svg2png/pkg-descr | 3 |
4 files changed, 42 insertions, 0 deletions
diff --git a/graphics/svg2png/Makefile b/graphics/svg2png/Makefile new file mode 100644 index 000000000..9af41087a --- /dev/null +++ b/graphics/svg2png/Makefile @@ -0,0 +1,24 @@ +# New ports collection makefile for: svg2png +# Date created: 2005-03-10 +# Whom: Michael Johnson <ahze@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= svg2png +PORTVERSION= 0.1.3 +CATEGORIES= graphics +MASTER_SITES= http://cairographics.org/snapshots/ + +MAINTAINER= ports@FreeBSD.org +COMMENT= Render an SVG image to a PNG image (using cairo) + +LIB_DEPENDS= svg-cairo.1:${PORTSDIR}/graphics/libsvg-cairo + +GNU_CONFIGURE= yes +USE_GETOPT_LONG=yes + +MAN1= svg2png.1 +PLIST_FILES= bin/svg2png + +.include <bsd.port.mk> diff --git a/graphics/svg2png/distinfo b/graphics/svg2png/distinfo new file mode 100644 index 000000000..6fbef9017 --- /dev/null +++ b/graphics/svg2png/distinfo @@ -0,0 +1,2 @@ +MD5 (svg2png-0.1.3.tar.gz) = ba266c00486ffd93b8a46d59028aaef9 +SIZE (svg2png-0.1.3.tar.gz) = 82331 diff --git a/graphics/svg2png/files/patch-src_svg2png.c b/graphics/svg2png/files/patch-src_svg2png.c new file mode 100644 index 000000000..e43612062 --- /dev/null +++ b/graphics/svg2png/files/patch-src_svg2png.c @@ -0,0 +1,13 @@ +--- src/svg2png.c.orig Thu Jan 20 10:03:49 2005 ++++ src/svg2png.c Thu Mar 10 23:04:42 2005 +@@ -47,9 +47,9 @@ + main (int argc, char **argv) + { + args_t args; +- args_parse (&args, argc, argv); + FILE *svg_file, *png_file; + svg_cairo_status_t status; ++ args_parse (&args, argc, argv); + + if (strcmp (args.svg_filename, "-") == 0) { + svg_file = stdin; diff --git a/graphics/svg2png/pkg-descr b/graphics/svg2png/pkg-descr new file mode 100644 index 000000000..abd9a70c4 --- /dev/null +++ b/graphics/svg2png/pkg-descr @@ -0,0 +1,3 @@ +Render an SVG image to a PNG image (using cairo) + +WWW: http://cairographics.org |