From owner-svn-ports-all@freebsd.org Sun Jul 15 08:25:29 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 075121030725; Sun, 15 Jul 2018 08:25:29 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id AF0747E1C7; Sun, 15 Jul 2018 08:25:28 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9041E33B4; Sun, 15 Jul 2018 08:25:28 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w6F8PSjL011886; Sun, 15 Jul 2018 08:25:28 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w6F8PS0j011885; Sun, 15 Jul 2018 08:25:28 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201807150825.w6F8PS0j011885@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sun, 15 Jul 2018 08:25:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r474676 - branches/2018Q3/print/fig2dev X-SVN-Group: ports-branches X-SVN-Commit-Author: pi X-SVN-Commit-Paths: branches/2018Q3/print/fig2dev X-SVN-Commit-Revision: 474676 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Jul 2018 08:25:29 -0000 Author: pi Date: Sun Jul 15 08:25:28 2018 New Revision: 474676 URL: https://svnweb.freebsd.org/changeset/ports/474676 Log: MFH: r474675 print/fig2dev: fix to build, needs some help to really use ghostscript - GSEXE was not set during build, causing fig2dev -L pdf part.fig part.pdf to fail like this: sh: -q: not found Error in ghostcript command command was: -q -sAutoRotatePages=None -dAutoFilterColorImages=false -dColorImageFilter=/DCTEncode -sDEVICE=pdfwrite -dPDFSETTINGS=/prepress -o 'part.pdf' - Reported by: Anton Shterenlikht Approved by: portmgr (runtime fix blanket approval) Modified: branches/2018Q3/print/fig2dev/Makefile Directory Properties: branches/2018Q3/ (props changed) Modified: branches/2018Q3/print/fig2dev/Makefile ============================================================================== --- branches/2018Q3/print/fig2dev/Makefile Sun Jul 15 08:20:28 2018 (r474675) +++ branches/2018Q3/print/fig2dev/Makefile Sun Jul 15 08:25:28 2018 (r474676) @@ -2,13 +2,15 @@ PORTNAME= fig2dev PORTVERSION= 3.2.7 +PORTREVISION= 1 CATEGORIES= print MASTER_SITES= SF/mcj/ MAINTAINER= pi@FreeBSD.org COMMENT= Tools to convert Xfig .fig files -RUN_DEPENDS= ppmtogif:graphics/netpbm +RUN_DEPENDS= ppmtogif:graphics/netpbm \ + gs:print/ghostscript9-agpl-base LIB_DEPENDS= libpng.so:graphics/png CONFLICTS= transfig-* @@ -17,6 +19,7 @@ USES= alias ghostscript:run iconv tar:xz CFLAGS+= -Wno-return-type GNU_CONFIGURE= yes CONFIGURE_ARGS+= --enable-transfig +CONFIGURE_ARGS+= GSEXE=gs USE_XORG= xpm .include