Date: Sun, 27 Jul 2003 19:38:25 +0200 (CEST) From: Thierry Thomas <thierry@pompo.net> To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/54915: french/aster: fixing BUILD_DEPENDS. Message-ID: <20030727173825.0029A751E@graf.pompo.net> Resent-Message-ID: <200307271750.h6RHoJHk063307@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>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@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:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20030727173825.0029A751E>