mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
"make describe" failed in top-level "make index"
since ports configure script adds "-nox11" suffix even when ${GHOSTSCRIPT_PORT} is already "ghostscript-gpl-nox11". Submitted by: G. Paul Ziemba <paul@treehouse.napa.ca.us> Reviewed by: me
This commit is contained in:
parent
84e26ef07a
commit
7409cfd447
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=193406
@ -7,7 +7,7 @@
|
||||
|
||||
PORTNAME= apsfilter
|
||||
PORTVERSION= 7.2.8
|
||||
PORTREVISION= 2
|
||||
PORTREVISION= 3
|
||||
CATEGORIES= print
|
||||
MASTER_SITES= http://www.apsfilter.org/download/
|
||||
|
||||
|
10
print/apsfilter/scripts/configure
vendored
10
print/apsfilter/scripts/configure
vendored
@ -73,7 +73,15 @@ while [ "$1" ]; do
|
||||
;;
|
||||
\"GS_NO_X11\")
|
||||
echo WITHOUT_X11=yes
|
||||
echo RUN_DEPENDS+=gs:${PORTSDIR}/${GHOSTSCRIPT_PORT}-nox11
|
||||
case ${GHOSTSCRIPT_PORT} in
|
||||
*-nox11)
|
||||
_GSSUF=""
|
||||
;;
|
||||
*)
|
||||
_GSSUF=-nox11
|
||||
;;
|
||||
esac
|
||||
echo RUN_DEPENDS+=gs:${PORTSDIR}/${GHOSTSCRIPT_PORT}${_GSSUF}
|
||||
;;
|
||||
\"GS_PDF_CRYPT\")
|
||||
echo PDFENCRYPT=YES
|
||||
|
Loading…
Reference in New Issue
Block a user