From 181f872139dc1f6dcee72930510a791e608d150e Mon Sep 17 00:00:00 2001 From: Edwin Groothuis Date: Sun, 31 Aug 2003 01:21:41 +0000 Subject: [PATCH] textproc/latex2html: 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/54951 Submitted by: Jens Rehsack --- textproc/latex2html/Makefile | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) (limited to 'textproc/latex2html') diff --git a/textproc/latex2html/Makefile b/textproc/latex2html/Makefile index bcfe8a7b84db..accaa4536abc 100644 --- a/textproc/latex2html/Makefile +++ b/textproc/latex2html/Makefile @@ -21,8 +21,14 @@ COMMENT= Convert LaTeX documents to HTML # Global variables # +.if defined(WITH_GHOSTSCRIPT_AFPL) && ${WITH_GHOSTSCRIPT_AFPL} == yes +GSPORT?= print/ghostscript-afpl +.else +GSPORT?= print/ghostscript-gnu +.endif + BUILD_DEPENDS= ${LOCALBASE}/bin/latex:${PORTSDIR}/print/teTeX \ - ${LOCALBASE}/bin/gs:${PORTSDIR}/print/ghostscript-gnu \ + ${LOCALBASE}/bin/gs:${PORTSDIR}/${GSPORT} \ ${LOCALBASE}/bin/anytopnm:${PORTSDIR}/graphics/netpbm RUN_DEPENDS= ${BUILD_DEPENDS} @@ -42,6 +48,17 @@ PKGMESSAGE= ${WRKDIR}/pkg-message DOC_FILES= FAQ INSTALL LICENSE README +# Inform message +# + +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 + # Port-patch # -- cgit v1.2.3