diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2003-08-31 00:32:01 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2003-08-31 00:32:01 +0000 |
commit | b07dab8fcea68acbe264a925fc0c33faca47eef6 (patch) | |
tree | fbb3f4f427674cc2c77a7cd6a56d4ba801b919d0 /graphics/eps2png | |
parent | e66bdf069c9b0e8b6ad8f02d6a66c89f76b8658d (diff) | |
download | ports-b07dab8fcea68acbe264a925fc0c33faca47eef6.tar.gz ports-b07dab8fcea68acbe264a925fc0c33faca47eef6.zip |
Notes
Diffstat (limited to 'graphics/eps2png')
-rw-r--r-- | graphics/eps2png/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/graphics/eps2png/Makefile b/graphics/eps2png/Makefile index 68c2664ecf21..b8fad6d096d1 100644 --- a/graphics/eps2png/Makefile +++ b/graphics/eps2png/Makefile @@ -15,7 +15,13 @@ MASTER_SITE_SUBDIR= ../../authors/Johan_Vromans MAINTAINER= nik@freebsd.org COMMENT= Converts EPS images to PNG -RUN_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 + +RUN_DEPENDS= gs:${PORTSDIR}/${GSPORT} PERL_CONFIGURE= yes |