- Fix conditionals to set IGNORE in appropiate cases (requires manual options
selection and installation of another port). Reported by: pav
This commit is contained in:
parent
88d8a1c763
commit
0fd1cecabe
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=208990
2 changed files with 4 additions and 6 deletions
|
@ -24,10 +24,9 @@ INFO= stumpwm
|
|||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if exists(${LOCALBASE}/bin/clisp) || !defined(PACKAGE_BUILDING)
|
||||
. if !exists(${LOCALBASE}/lib/clisp/full/clx.o)
|
||||
.if !exists(${LOCALBASE}/bin/clisp) || \
|
||||
!exists(${LOCALBASE}/lib/clisp/full/clx.o)
|
||||
IGNORE= requires lang/clisp built with CLX_NEW option ON
|
||||
. endif
|
||||
.endif
|
||||
|
||||
do-install:
|
||||
|
|
|
@ -24,10 +24,9 @@ INFO= stumpwm
|
|||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if exists(${LOCALBASE}/bin/clisp) || !defined(PACKAGE_BUILDING)
|
||||
. if !exists(${LOCALBASE}/lib/clisp/full/clx.o)
|
||||
.if !exists(${LOCALBASE}/bin/clisp) || \
|
||||
!exists(${LOCALBASE}/lib/clisp/full/clx.o)
|
||||
IGNORE= requires lang/clisp built with CLX_NEW option ON
|
||||
. endif
|
||||
.endif
|
||||
|
||||
do-install:
|
||||
|
|
Loading…
Reference in a new issue