diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2003-08-31 00:40:17 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2003-08-31 00:40:17 +0000 |
commit | 3e5368f271367deb68d3aeb1c38c695bdd4e0f89 (patch) | |
tree | f7dd857fcfbf016bffde6ae6c0688443a830e27c /graphics/pstoedit | |
parent | 2575d054a6920ea7a3b624b5a9c97a4211ee6273 (diff) | |
download | ports-3e5368f271367deb68d3aeb1c38c695bdd4e0f89.tar.gz ports-3e5368f271367deb68d3aeb1c38c695bdd4e0f89.zip |
Notes
Diffstat (limited to 'graphics/pstoedit')
-rw-r--r-- | graphics/pstoedit/Makefile | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/graphics/pstoedit/Makefile b/graphics/pstoedit/Makefile index 6df764994177..41eaa89e9ac8 100644 --- a/graphics/pstoedit/Makefile +++ b/graphics/pstoedit/Makefile @@ -13,11 +13,17 @@ MASTER_SITES= http://home.t-online.de/home/helga.glunz/wglunz/pstoedit/ MAINTAINER= ports@FreeBSD.org COMMENT= Convert PostScript to other vector graphic formats -BUILD_DEPENDS= gs:${PORTSDIR}/print/ghostscript-gnu +.if defined(WITH_GHOSTSCRIPT_AFPL) && ${WITH_GHOSTSCRIPT_AFPL} == yes +GSPORT?= print/ghostscript-afpl +.else +GSPORT?= print/ghostscript-gnu +.endif + +BUILD_DEPENDS= gs:${PORTSDIR}/${GSPORT} LIB_DEPENDS= Magick++.5:${PORTSDIR}/graphics/ImageMagick \ ming.3:${PORTSDIR}/graphics/ming \ plotter.4:${PORTSDIR}/graphics/plotutils -RUN_DEPENDS= gs:${PORTSDIR}/print/ghostscript-gnu +RUN_DEPENDS= gs:${PORTSDIR}/${GSPORT} USE_GNOME= gnometarget pkgconfig USE_LIBTOOL= yes @@ -30,6 +36,14 @@ CPPFLAGS= -I${LOCALBASE}/include/ming -I${LOCALBASE}/include \ -I${X11BASE}/include LDFLAGS= -L${LOCALBASE}/lib -L${X11BASE}/lib +pre-fetch: +.if !defined(WITH_GHOSTSCRIPT_AFPL) || ${WITH_GHOSTSCRIPT_AFPL} != yes + @${ECHO} "" + @${ECHO} " Define WITH_GHOSTSCRIPT_AFPL=yes to use" + @${ECHO} " AFPL Postscript interpreter instead of GNU one" + @${ECHO} "" +.endif + post-install: ${INSTALL_MAN} ${WRKSRC}/doc/pstoedit.1 ${MANPREFIX}/man/man1 .if !defined(NOPORTDOCS) |