diff options
author | ijliao <ijliao@FreeBSD.org> | 2001-05-19 15:29:55 +0000 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2001-05-19 15:29:55 +0000 |
commit | 4e373d563cedefe6c82cc329bc3f96c7c15456ee (patch) | |
tree | 10417d404e8fe794f8729a74c865ed491935b6ef /graphics | |
parent | 82a63b634d745c3b5054f39685aa82fc3e327d4e (diff) | |
download | FreeBSD-ports-4e373d563cedefe6c82cc329bc3f96c7c15456ee.zip FreeBSD-ports-4e373d563cedefe6c82cc329bc3f96c7c15456ee.tar.gz |
add autotrace
convert bitmap to vector graphics
PR: 26514
Submitted by: KANOU Hiroki <kanou@mil.allnet.ne.jp>
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/Makefile | 1 | ||||
-rw-r--r-- | graphics/autotrace/Makefile | 40 | ||||
-rw-r--r-- | graphics/autotrace/distinfo | 1 | ||||
-rw-r--r-- | graphics/autotrace/files/patch-aa | 11 | ||||
-rw-r--r-- | graphics/autotrace/files/patch-ab | 11 | ||||
-rw-r--r-- | graphics/autotrace/pkg-comment | 1 | ||||
-rw-r--r-- | graphics/autotrace/pkg-descr | 1 | ||||
-rw-r--r-- | graphics/autotrace/pkg-plist | 8 |
8 files changed, 74 insertions, 0 deletions
diff --git a/graphics/Makefile b/graphics/Makefile index ea338cd..c6e5892 100644 --- a/graphics/Makefile +++ b/graphics/Makefile @@ -11,6 +11,7 @@ SUBDIR += aalib SUBDIR += acidwarp SUBDIR += aero + SUBDIR += autotrace SUBDIR += aview SUBDIR += avifile SUBDIR += backfract diff --git a/graphics/autotrace/Makefile b/graphics/autotrace/Makefile new file mode 100644 index 0000000..7a811ea --- /dev/null +++ b/graphics/autotrace/Makefile @@ -0,0 +1,40 @@ +# New ports collection makefile for: autotrace +# Date created: 12 April 2001 +# Whom: KANOU Hiroki <kanou@mil.allnet.ne.jp> +# +# $FreeBSD$ +# + +PORTNAME= autotrace +PORTVERSION= 0.27a +CATEGORIES= graphics +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \ + http://homepage.go.com/~martweb/ +MASTER_SITE_SUBDIR= ${PORTNAME} + +MAINTAINER= kanou@mil.allnet.ne.jp + +LIB_DEPENDS= jbig.1:${PORTSDIR}/graphics/jbigkit \ + df.1:${PORTSDIR}/graphics/hdf \ + tiff.4:${PORTSDIR}/graphics/tiff \ + freetype.6:${PORTSDIR}/print/freetype2 \ + jpeg.9:${PORTSDIR}/graphics/jpeg \ + png.4:${PORTSDIR}/graphics/png \ + bz2.1:${PORTSDIR}/archivers/bzip2 \ + ming.2:${PORTSDIR}/graphics/ming \ + wmf.1:${PORTSDIR}/graphics/libwmf \ + Magick.5:${PORTSDIR}/graphics/ImageMagick + +USE_AUTOCONF= yes +GNU_CONFIGURE= yes +USE_AUTOMAKE= yes +USE_XLIB= yes + +pre-configure: + @(cd ${WRKSRC} ; ${AUTOCONF}) + +do-configure: + @(cd ${WRKSRC}/ ; set CPPFLAGS="-I${PREFIX}/include" ; \ + set CFLAGS="-I${PREFIX}/include -L${PREFIX}/lib" ; ./configure ) + +.include <bsd.port.mk> diff --git a/graphics/autotrace/distinfo b/graphics/autotrace/distinfo new file mode 100644 index 0000000..0751321 --- /dev/null +++ b/graphics/autotrace/distinfo @@ -0,0 +1 @@ +MD5 (autotrace-0.27a.tar.gz) = cb656a5d76170ab64d95ed81642d0233 diff --git a/graphics/autotrace/files/patch-aa b/graphics/autotrace/files/patch-aa new file mode 100644 index 0000000..3786527 --- /dev/null +++ b/graphics/autotrace/files/patch-aa @@ -0,0 +1,11 @@ +--- configure.in.orig Sun Mar 25 03:57:10 2001 ++++ configure.in Thu Apr 12 11:31:07 2001 +@@ -107,7 +107,7 @@ + dnl + HAVE_LIBSWF=no + +-AC_CHECK_HEADER(ming.h, ++AC_CHECK_HEADER(ming/ming.h, + swf_header_found=yes, + swf_header_found=no) + if test "${swf_header_found}" = yes ; then diff --git a/graphics/autotrace/files/patch-ab b/graphics/autotrace/files/patch-ab new file mode 100644 index 0000000..0fae7ef --- /dev/null +++ b/graphics/autotrace/files/patch-ab @@ -0,0 +1,11 @@ +--- output-swf.h.orig Thu Mar 8 09:27:39 2001 ++++ output-swf.h Thu Apr 12 11:48:40 2001 +@@ -9,7 +9,7 @@ + #include <stdio.h> + #include "types.h" + #include "spline.h" +-#include <ming.h> ++#include <ming/ming.h> + + int output_swf_writer(FILE* file, string name, + int llx, int lly, int urx, int ury, diff --git a/graphics/autotrace/pkg-comment b/graphics/autotrace/pkg-comment new file mode 100644 index 0000000..1907a62 --- /dev/null +++ b/graphics/autotrace/pkg-comment @@ -0,0 +1 @@ +convert bitmap to vector graphics diff --git a/graphics/autotrace/pkg-descr b/graphics/autotrace/pkg-descr new file mode 100644 index 0000000..b2bc170 --- /dev/null +++ b/graphics/autotrace/pkg-descr @@ -0,0 +1 @@ +AutoTrace is a utility that converts bitmap to vector graphics. diff --git a/graphics/autotrace/pkg-plist b/graphics/autotrace/pkg-plist new file mode 100644 index 0000000..66e68b6 --- /dev/null +++ b/graphics/autotrace/pkg-plist @@ -0,0 +1,8 @@ +lib/libautotrace.a +bin/autotrace +bin/autotrace-config +share/aclocal/autotrace.m4 +@dirrm share/aclocal +include/autotrace/types.h +include/autotrace/autotrace.h +@dirrm include/autotrace |