ports/54915: french/aster: fixing BUILD_DEPENDS.
Thierry Thomas
thierry at pompo.net
Sun Jul 27 17:50:21 UTC 2003
>Number: 54915
>Category: ports
>Synopsis: french/aster: fixing BUILD_DEPENDS.
>Confidential: no
>Severity: non-critical
>Priority: medium
>Responsible: freebsd-ports-bugs
>State: open
>Quarter:
>Keywords:
>Date-Required:
>Class: update
>Submitter-Id: current-users
>Arrival-Date: Sun Jul 27 10:50:19 PDT 2003
>Closed-Date:
>Last-Modified:
>Originator: Thierry Thomas
>Release: FreeBSD 4.8-STABLE i386
>Organization:
Kabbale Eros
>Environment:
System: FreeBSD graf.pompo.net 4.8-STABLE FreeBSD 4.8-STABLE #0: Tue Apr 29 18:16:35 CEST 2003 thierry at graf.pompo.net:/usr/obj/mntsrc/src/sys/GRAF020727 i386
>Description:
WITH_BASH or WITH_KSH do not work if they are not installed.
Reported by Stephen Hilton.
>How-To-Repeat:
On a machine where bash is not installed, try to build aster
with the knob WITH_BASH=yes => it will try to fetch the port
shells/bash, which does not exist. Idem for ksh.
>Fix:
Please apply the following patch:
--- aster.diff begins here ---
--- french/aster/Makefile.orig Fri Jul 25 19:27:32 2003
+++ french/aster/Makefile Sun Jul 27 19:27:07 2003
@@ -39,7 +39,7 @@
LIB_DEPENDS= blas.1:${PORTSDIR}/math/blas
BUILD_DEPENDS= ${opt_hdf}:${PORTSDIR}/graphics/hdf5 \
${opt_med}:${PORTSDIR}/french/med \
- ${SHELL_INSTALL_ASTER}:${PORTSDIR}/shells/${SHIA}
+ ${SHELL_INSTALL_ASTER}:${PORTSDIR}/shells/${SHIADEP}
RUN_DEPENDS= ${PYTHON_SITELIBDIR}/Gnuplot:${PORTSDIR}/math/py-gnuplot \
${LOCALBASE}/bin/onmetis.exe:${PORTSDIR}/cad/metis-edf
@@ -110,15 +110,20 @@
.elif defined(WITH_BASH)
SHIA= bash
.elif defined(WITH_KSH)
-SHIA= ksh
+SHIA= ksh93
.elif exists(${LOCALBASE}/bin/zsh)
SHIA= zsh
.elif exists(${LOCALBASE}/bin/bash)
SHIA= bash
-.elif exists(${LOCALBASE}/bin/ksh)
-SHIA= ksh
+.elif exists(${LOCALBASE}/bin/ksh93)
+SHIA= ksh93
.else
SHIA= zsh
+.endif
+.if ${SHIA} == "bash"
+SHIADEP= bash2
+.else
+SHIADEP= ${SHIA}
.endif
vaster= STA${PORTVERSION}
--- aster.diff ends here ---
>Release-Note:
>Audit-Trail:
>Unformatted:
More information about the freebsd-ports-bugs
mailing list