02cc9e090f
Relevant changes from the changelog: * added a .asy backend for Asymptote files ( http://asymptote.sourceforge.net/ ). Thanks to John Bowman * fixed three bugs (one memory leak, two other minor problems) detected by the Coverity Prevent tool (http://www.coverity.com/) * PostScript frontend: fixed a bug in tracing the bounding box of raster images. * fixed a bug in sub path handling - thanks to Soren Henriksen. * fixed the handling of some special characters in the LaTeX2e format driver.
40 lines
913 B
Makefile
40 lines
913 B
Makefile
# $OpenBSD: Makefile,v 1.2 2005/08/11 17:32:06 naddy Exp $
|
|
|
|
COMMENT= "translate PostScript/PDF graphics to other vector formats"
|
|
|
|
DISTNAME= pstoedit-3.41
|
|
CATEGORIES= graphics
|
|
|
|
HOMEPAGE= http://www.pstoedit.net/
|
|
|
|
MAINTAINER= Steven Mestdagh <steven.mestdagh@esat.kuleuven.be>
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=pstoedit/}
|
|
|
|
RUN_DEPENDS= ::print/ghostscript/gnu
|
|
BUILD_DEPENDS= ${RUN_DEPENDS}
|
|
|
|
USE_LIBTOOL= Yes
|
|
CONFIGURE_STYLE=gnu
|
|
CONFIGURE_ARGS= ${CONFIGURE_SHARED} \
|
|
--without-libplot \
|
|
--without-emf \
|
|
--without-swf \
|
|
--without-magick
|
|
WANTLIB= c stdc++ m
|
|
|
|
# trailing carriage returns where we need to apply a patch
|
|
pre-patch:
|
|
@perl -pi -e 's/\r$$//' ${WRKSRC}/src/drvlatex2e.cpp
|
|
|
|
post-install:
|
|
cd ${WRKSRC}/doc && ${INSTALL_MAN} pstoedit.1 ${PREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|