summaryrefslogtreecommitdiff
path: root/graphics
diff options
context:
space:
mode:
authorEdwin Groothuis <edwin@FreeBSD.org>2003-08-31 00:40:17 +0000
committerEdwin Groothuis <edwin@FreeBSD.org>2003-08-31 00:40:17 +0000
commit3e5368f271367deb68d3aeb1c38c695bdd4e0f89 (patch)
treef7dd857fcfbf016bffde6ae6c0688443a830e27c /graphics
parent[PATCH] graphics/peps: enable choose of ghostscript interpreter (diff)
[PATCH] graphics/pstoedit: enable choose of ghostscript interpreter
This patch allows the admin of the machine to choose either print/ghostscript-gnu or print/ghostscript-afp1 PR: ports/54932 Submitted by: Jens Rehsack <rehsack@liwing.de>
Notes
Notes: svn path=/head/; revision=88130
Diffstat (limited to 'graphics')
-rw-r--r--graphics/pstoedit/Makefile18
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)