diff options
author | hrs <hrs@FreeBSD.org> | 2008-10-05 10:49:27 +0800 |
---|---|---|
committer | hrs <hrs@FreeBSD.org> | 2008-10-05 10:49:27 +0800 |
commit | 34dfc6c2c952cf7c883afc76a59712a48b5eb8fb (patch) | |
tree | 2d72f1f4b0c179eefd1cd6842efcf237371ce27e /print | |
parent | 4cefb4c7d1474ca564e7666433248d4bcd833d62 (diff) | |
download | freebsd-ports-gnome-34dfc6c2c952cf7c883afc76a59712a48b5eb8fb.tar.gz freebsd-ports-gnome-34dfc6c2c952cf7c883afc76a59712a48b5eb8fb.tar.zst freebsd-ports-gnome-34dfc6c2c952cf7c883afc76a59712a48b5eb8fb.zip |
Fix dependency broken due to acroread7 removal.
Diffstat (limited to 'print')
-rw-r--r-- | print/apsfilter/Makefile | 5 | ||||
-rw-r--r-- | print/apsfilter/scripts/configure | 6 |
2 files changed, 3 insertions, 8 deletions
diff --git a/print/apsfilter/Makefile b/print/apsfilter/Makefile index e1b402ee45a2..e1f0238ce0fa 100644 --- a/print/apsfilter/Makefile +++ b/print/apsfilter/Makefile @@ -7,7 +7,7 @@ PORTNAME= apsfilter PORTVERSION= 7.2.8 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= print MASTER_SITES= http://www.apsfilter.org/download/ @@ -82,9 +82,8 @@ RUN_DEPENDS+= htmldoc:${PORTSDIR}/textproc/htmldoc RUN_DEPENDS+= psnup:${PORTSDIR}/print/psutils-${PAPERSIZE} .if !defined(WITHOUT_X11) # "xxx to ps" filter utilities that require X -RUN_DEPENDS+= ${LOCALBASE}/Adobe/Acrobat7.0/ENU/bin/acroread:${PORTSDIR}/print/acroread7 RUN_DEPENDS+= convert:${PORTSDIR}/graphics/ImageMagick -RUN_DEPENDS+= dvips:${PORTSDIR}/print/teTeX +RUN_DEPENDS+= dvips:${PORTSDIR}/print/dvipsk-tetex RUN_DEPENDS+= wmf2eps:${PORTSDIR}/graphics/libwmf RUN_DEPENDS+= sk2ps:${PORTSDIR}/graphics/skencil RUN_DEPENDS+= tgif:${PORTSDIR}/graphics/tgif diff --git a/print/apsfilter/scripts/configure b/print/apsfilter/scripts/configure index 037f293b065a..6cf3906f69ed 100644 --- a/print/apsfilter/scripts/configure +++ b/print/apsfilter/scripts/configure @@ -19,7 +19,6 @@ GS_NO_X11 "Postscript for non-PS printer, no X11" OFF \ GS_PDF_CRYPT "print encrypted PDF files using gs" ON \ PSUTILS "for pseudo duplex printing + paper handling" ON \ A2PS "ASCII files in different styles/orientation" ON \ -ACROREAD7 "PDF files, needs Linux emulation" ON \ CONVERT "support for lots of graphic file formats" ON \ DVIPS "TeX DVI files" OFF \ FIG2DEV "XFIG drawings" OFF \ @@ -112,14 +111,11 @@ while [ "$1" ]; do ;; esac ;; - \"ACROREAD7\") - echo RUN_DEPENDS+=${LOCALBASE}/Adobe/Acrobat7.0/ENU/bin/acroread:${PORTSDIR}/print/acroread7 - ;; \"CONVERT\") echo RUN_DEPENDS+=convert:${PORTSDIR}/graphics/ImageMagick ;; \"DVIPS\") - echo RUN_DEPENDS+=dvips:${PORTSDIR}/print/teTeX + echo RUN_DEPENDS+=dvips:${PORTSDIR}/print/dvipsk-tetex ;; \"FIG2DEV\") echo RUN_DEPENDS+=fig2dev:${PORTSDIR}/print/transfig |