Date: Mon, 7 Jan 2019 17:38:24 +0000 (UTC) From: Tobias Kortkamp <tobik@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r489591 - head/print/pnm2ppa Message-ID: <201901071738.x07HcOmi051089@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: tobik Date: Mon Jan 7 17:38:24 2019 New Revision: 489591 URL: https://svnweb.freebsd.org/changeset/ports/489591 Log: print/pnm2ppa: Do not override RUN_DEPENDS after including bsd.port.pre.mk Make sure Ghostscript is actually added as a run dependency as specified. Modified: head/print/pnm2ppa/Makefile Modified: head/print/pnm2ppa/Makefile ============================================================================== --- head/print/pnm2ppa/Makefile Mon Jan 7 17:37:07 2019 (r489590) +++ head/print/pnm2ppa/Makefile Mon Jan 7 17:38:24 2019 (r489591) @@ -3,7 +3,7 @@ PORTNAME= pnm2ppa PORTVERSION= 1.13 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= print MASTER_SITES= SF @@ -19,9 +19,9 @@ GNU_CONFIGURE= yes .include <bsd.port.pre.mk> .if defined(A4) || !empty(PORT_OPTIONS:MA4SIZE) -RUN_DEPENDS= enscript:print/enscript-a4 +RUN_DEPENDS+= enscript:print/enscript-a4 .else -RUN_DEPENDS= enscript:print/enscript-letter +RUN_DEPENDS+= enscript:print/enscript-letter .endif post-patch:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201901071738.x07HcOmi051089>