1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-12 03:00:28 +00:00
freebsd-ports/graphics/eps2png/Makefile
Edwin Groothuis b07dab8fce [PATCH] graphics/eps2png: 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/54927
Submitted by:	Jens Rehsack <rehsack@liwing.de>
2003-08-31 00:32:01 +00:00

34 lines
685 B
Makefile

# New ports collection makefile for: eps2png
# Date created: 12 February 2001
# Whom: nik
#
# $FreeBSD$
#
PORTNAME= eps2png
PORTVERSION= 1.7
PORTREVISION= 1
CATEGORIES= graphics
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
MASTER_SITE_SUBDIR= ../../authors/Johan_Vromans
MAINTAINER= nik@freebsd.org
COMMENT= Converts EPS images to PNG
.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
MAN1= eps2png.1
do-install:
@cd ${WRKSRC}; ${SETENV} ${INSTALL_ENV} ${MAKE} INSTALLSCRIPT=${PREFIX}/bin install
.include <bsd.port.mk>