From owner-svn-ports-head@FreeBSD.ORG Sat Apr 27 18:04:42 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id E1C4C2C9; Sat, 27 Apr 2013 18:04:42 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id B80B313AD; Sat, 27 Apr 2013 18:04:42 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r3RI4geV097487; Sat, 27 Apr 2013 18:04:42 GMT (envelope-from hrs@svn.freebsd.org) Received: (from hrs@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r3RI4ggo097482; Sat, 27 Apr 2013 18:04:42 GMT (envelope-from hrs@svn.freebsd.org) Message-Id: <201304271804.r3RI4ggo097482@svn.freebsd.org> From: Hiroki Sato Date: Sat, 27 Apr 2013 18:04:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r316680 - in head/print/apsfilter: . scripts X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 27 Apr 2013 18:04:43 -0000 Author: hrs Date: Sat Apr 27 18:04:42 2013 New Revision: 316680 URL: http://svnweb.freebsd.org/changeset/ports/316680 Log: Fix psutils-* and a2ps-* dependency. Spotted by: Scott Allendorf Modified: head/print/apsfilter/Makefile head/print/apsfilter/scripts/configure Modified: head/print/apsfilter/Makefile ============================================================================== --- head/print/apsfilter/Makefile Sat Apr 27 17:52:39 2013 (r316679) +++ head/print/apsfilter/Makefile Sat Apr 27 18:04:42 2013 (r316680) @@ -3,7 +3,7 @@ PORTNAME= apsfilter PORTVERSION= 7.2.8 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= print MASTER_SITES= http://www.apsfilter.org/download/ @@ -61,7 +61,7 @@ PAPERSIZE?= letter RUN_DEPENDS+= melt:${PORTSDIR}/archivers/freeze RUN_DEPENDS+= lzop:${PORTSDIR}/archivers/lzop # all needed "ASCII to ps" filter utilities -RUN_DEPENDS+= a2ps:${PORTSDIR}/print/a2ps-${PAPERSIZE} +RUN_DEPENDS+= a2ps:${PORTSDIR}/print/a2ps RUN_DEPENDS+= enscript:${PORTSDIR}/print/enscript-${PAPERSIZE} RUN_DEPENDS+= mpage:${PORTSDIR}/print/mpage RUN_DEPENDS+= recode:${PORTSDIR}/converters/recode @@ -104,7 +104,7 @@ RUN_DEPENDS+= smbclient:${PORTSDIR}/${SA # since apsfilter should fit easily on installation CD 1... # # most important "xxx to ps" filter utilities -RUN_DEPENDS+= a2ps:${PORTSDIR}/print/a2ps-${PAPERSIZE} +RUN_DEPENDS+= a2ps:${PORTSDIR}/print/a2ps RUN_DEPENDS+= psnup:${PORTSDIR}/print/psutils .endif Modified: head/print/apsfilter/scripts/configure ============================================================================== --- head/print/apsfilter/scripts/configure Sat Apr 27 17:52:39 2013 (r316679) +++ head/print/apsfilter/scripts/configure Sat Apr 27 18:04:42 2013 (r316680) @@ -86,30 +86,10 @@ while [ "$1" ]; do echo PDFENCRYPT=YES ;; \"PSUTILS\") - case $PAPERSIZE in - letter) - echo RUN_DEPENDS+=psnup:${PORTSDIR}/print/psutils-letter - ;; - letterdj) - echo RUN_DEPENDS+=psnup:${PORTSDIR}/print/psutils-letter - ;; - a4) - echo RUN_DEPENDS+=psnup:${PORTSDIR}/print/psutils-a4 - ;; - esac + echo RUN_DEPENDS+=psnup:${PORTSDIR}/print/psutils ;; \"A2PS\") - case $PAPERSIZE in - letter) - echo RUN_DEPENDS+=a2ps:${PORTSDIR}/print/a2ps-letter - ;; - letterdj) - echo RUN_DEPENDS+=a2ps:${PORTSDIR}/print/a2ps-letterdj - ;; - a4) - echo RUN_DEPENDS+=a2ps:${PORTSDIR}/print/a2ps-a4 - ;; - esac + echo RUN_DEPENDS+=a2ps:${PORTSDIR}/print/a2ps ;; \"CONVERT\") echo RUN_DEPENDS+=convert:${PORTSDIR}/graphics/ImageMagick