540a82dba1
potrace is a utility for tracing a bitmap, which means, transforming a bitmap into a smooth, scalable image. The input is a bitmap (PBM, PGM, PPM, or BMP format), and the default output is an encapsulated PostScript file (EPS). A typical use is to create EPS files from scanned data, such as company or university logos, handwritten notes, etc. The resulting image is not "jaggy" like a bitmap, but smooth. It can then be rendered at any resolution. From Matt Jibson <dolmant@gmail.com>
27 lines
534 B
Makefile
27 lines
534 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2005/11/03 13:11:52 alek Exp $
|
|
|
|
COMMENT= "transforming bitmaps into vector graphics"
|
|
|
|
DISTNAME= potrace-1.7
|
|
CATEGORIES= graphics
|
|
|
|
HOMEPAGE= http://potrace.sourceforge.net
|
|
|
|
MAINTAINER= Matt Jibson <dolmant@gmail.com>
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=potrace/}
|
|
|
|
WANTLIB= c m z
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
|
|
REGRESS_DEPENDS= :ghostscript-*:print/ghostscript/gnu
|
|
|
|
.include <bsd.port.mk>
|