summaryrefslogtreecommitdiffstats
path: root/graphics
diff options
context:
space:
mode:
authorahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059>2005-06-18 23:36:55 +0800
committerahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059>2005-06-18 23:36:55 +0800
commit4d96361bf9c6e65de9b87f88db81dad9d1932b18 (patch)
tree51c4ff77df7be75e6b3632fc04fb82b9907ec49c /graphics
parentc1cf0b50c3e5ccc4693edb0f5e6400f146382cf0 (diff)
downloadmarcuscom-ports-4d96361bf9c6e65de9b87f88db81dad9d1932b18.tar
marcuscom-ports-4d96361bf9c6e65de9b87f88db81dad9d1932b18.tar.gz
marcuscom-ports-4d96361bf9c6e65de9b87f88db81dad9d1932b18.tar.bz2
marcuscom-ports-4d96361bf9c6e65de9b87f88db81dad9d1932b18.tar.lz
marcuscom-ports-4d96361bf9c6e65de9b87f88db81dad9d1932b18.tar.xz
marcuscom-ports-4d96361bf9c6e65de9b87f88db81dad9d1932b18.tar.zst
marcuscom-ports-4d96361bf9c6e65de9b87f88db81dad9d1932b18.zip
- Add svg2png at version 0.1.3
* cairo 0.5.0 update port git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@4100 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'graphics')
-rw-r--r--graphics/svg2png/Makefile24
-rw-r--r--graphics/svg2png/distinfo2
-rw-r--r--graphics/svg2png/files/patch-src_svg2png.c13
-rw-r--r--graphics/svg2png/pkg-descr3
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