diff options
-rw-r--r-- | textproc/latex2html/Makefile | 19 |
1 files changed, 18 insertions, 1 deletions
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 # |