mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-28 05:29:48 +00:00
90e27a32ee
This patch allows the admin of the machine to choose either print/ghostscript-gnu or print/ghostscript-afp1 PR: ports/54922 Submitted by: Jens Rehsack <rehsack@liwing.de>
32 lines
777 B
Makefile
32 lines
777 B
Makefile
# New ports collection Makefile for: tkhylafax
|
|
# Date created: Sun Jun 8 11:51:21 CEST 1997
|
|
# Whom: Andreas Klemm <andreas@klemm.gtn.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= tkhylafax
|
|
PORTVERSION= 3.2b
|
|
CATEGORIES= comms tk82
|
|
MASTER_SITES= ftp://ftp.hylafax.org/contrib/tkhylafax/
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION:S/b/beta/}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= A tcl/tk interface to Sam Leffler's fax package
|
|
|
|
.if defined(WITH_GHOSTSCRIPT_AFPL) && ${WITH_GHOSTSCRIPT_AFPL} == yes
|
|
GSPORT?= print/ghostscript-afpl
|
|
.else
|
|
GSPORT?= print/ghostscript-gnu
|
|
.endif
|
|
|
|
RUN_DEPENDS= wish8.2:${PORTSDIR}/x11-toolkits/tk82 \
|
|
sendfax:${PORTSDIR}/comms/hylafax \
|
|
gs:${PORTSDIR}/${GSPORT} \
|
|
gv:${PORTSDIR}/print/gv
|
|
|
|
WRKSRC= ${WRKDIR}/tkhylafax
|
|
MAN1= tkhylafax.1
|
|
|
|
.include <bsd.port.mk>
|