From owner-freebsd-ports@FreeBSD.ORG Sun Jul 27 12:46:27 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D523237B40F; Sun, 27 Jul 2003 12:46:27 -0700 (PDT) Received: from helo.liwing.de (helo.liwing.de [213.70.188.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id 93F4443FB1; Sun, 27 Jul 2003 12:46:26 -0700 (PDT) (envelope-from root@helo.liwing.de) Received: from helo.liwing.de (localhost.liwing.de [127.0.0.1]) by helo.liwing.de (8.12.7/8.12.7) with ESMTP id h6RJkO6l098300; Sun, 27 Jul 2003 19:46:24 GMT (envelope-from root@helo.liwing.de) Received: (from root@localhost) by helo.liwing.de (8.12.7/8.12.7/Submit) id h6RJkMnx098299; Sun, 27 Jul 2003 19:46:22 GMT Date: Sun, 27 Jul 2003 19:46:22 GMT Message-Id: <200307271946.h6RJkMnx098299@helo.liwing.de> To: FreeBSD-gnats-submit@freebsd.org From: Jens Rehsack X-send-pr-version: 3.113 X-GNATS-Notify: cc: ports@freebsd.org Subject: [PATCH] enable choose of ghostscript interpreter X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Jens Rehsack List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Jul 2003 19:46:28 -0000 >Submitter-Id: current-users >Originator: Jens Rehsack >Organization: LiWing IT-Services >Confidential: no >Synopsis: [PATCH] enable choose of ghostscript interpreter >Severity: non-critical >Priority: low >Category: ports >Class: change-request >Release: FreeBSD 5.1-CURRENT i386 >Environment: System: FreeBSD webdev.muppets.liwing.de 5.1-CURRENT FreeBSD 5.1-CURRENT #0: Sat Jul 19 13:25:30 GMT 2003 root@webdev.muppets.liwing.de:/usr/obj/usr/src/sys/WEBDEV i386 >Description: This patch allows the admin of the machine to choose either print/ghostscript-gnu or print/ghostscript-afp1 >How-To-Repeat: >Fix: --- patch-ghostscript-afp1 begins here --- Index: cad/xcircuit/Makefile =================================================================== diff -u cad/xcircuit/Makefile.orig cad/xcircuit/Makefile --- cad/xcircuit/Makefile.orig Sun Jul 27 10:44:42 2003 +++ cad/xcircuit/Makefile Sun Jul 27 13:25:36 2003 @@ -14,7 +14,13 @@ MAINTAINER= ports@FreeBSD.org COMMENT= An X11 drawing program [especially for circuit schematics] -RUN_DEPENDS= gs:${PORTSDIR}/print/ghostscript-gnu +.if defined(WITH_GHOSTSCRIPT_AFP1) && ${WITH_GHOSTSCRIPT_AFP1} == yes +GSPORT?= print/ghostscript-afp1 +.else +GSPORT?= print/ghostscript-gnu +.endif + +RUN_DEPENDS= gs:${PORTSDIR}/${GSPORT} USE_BZIP2= yes USE_X_PREFIX= yes @@ -33,7 +39,7 @@ --with-tk=${LOCALBASE}/lib/tk8.4 ALL_TARGET= tcl INSTALL_TARGET= install-tcl -PLIST_SUB+= PYTHON="@comment " NOPYTHON="" TCLTK="" NOTCLTK="@comment " +PLIST_SUB+= PYTHON="@comment " NOPYTHON="" TCLTK="" NOTCLTK="@comment " CFLAGS+= -I${LOCALBASE}/include/tcl8.4 -I${LOCALBASE}/include/tk8.4 \ -I${X11BASE}/include .else @@ -48,6 +54,26 @@ .else PLIST_SUB+= PYTHON="@comment " NOPYTHON="" TCLTK="@comment " NOTCLTK="" .endif +.endif + +pre-fetch: +.if !defined(WITH_GHOSTSCRIPT_AFP1) || ${WITH_GHOSTSCRIPT_AFP1} != yes + @${ECHO} "" + @${ECHO} " Define WITH_GHOSTSCRIPT_AFP1=yes to use" + @${ECHO} " AFPL Postscript interpreter instead of GNU one" + @${ECHO} "" +.endif +.if !defined(WITH_TCLTK) + @${ECHO} "" + @${ECHO} " Define WITH_TCLTK for Tcl/Tk support" + @${ECHO} " (prevents python support)" + @${ECHO} "" +.endif +.if !defined(WITH_PYTHON) + @${ECHO} "" + @${ECHO} " Or define WITH_PYTHON for Python support" + @${ECHO} " (only available without WITH_TCLTK defined)" + @${ECHO} "" .endif post-patch: --- patch-ghostscript-afp1 ends here ---