From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 21 20:10:08 2007 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2F13716A4A9 for ; Fri, 21 Sep 2007 20:10:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1564B13C458 for ; Fri, 21 Sep 2007 20:10:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.1/8.14.1) with ESMTP id l8LKA7xk031109 for ; Fri, 21 Sep 2007 20:10:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.1/8.14.1/Submit) id l8LKA7Ta031107; Fri, 21 Sep 2007 20:10:07 GMT (envelope-from gnats) Date: Fri, 21 Sep 2007 20:10:07 GMT Message-Id: <200709212010.l8LKA7Ta031107@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Max Brazhnikov Cc: Subject: Re: ports/116373: maintainer update: math/scilab-toolbox-swt X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Max Brazhnikov List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Sep 2007 20:10:08 -0000 The following reply was made to PR ports/116373; it has been noted by GNATS. From: Max Brazhnikov To: bug-followup@freebsd.org, makc@issp.ac.ru Cc: Subject: Re: ports/116373: maintainer update: math/scilab-toolbox-swt Date: Sat, 22 Sep 2007 00:06:30 +0400 --Boundary-00=_GRC9GuqjvaMQq/+ Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Use attached diff. This fixes RUN_DEPENDS if WITH_SIVP is defined --Boundary-00=_GRC9GuqjvaMQq/+ Content-Type: text/x-diff; charset="us-ascii"; name="scilab-toolbox-swt.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="scilab-toolbox-swt.diff" diff -ruN --exclude=CVS /usr/ports/math/scilab-toolbox-swt/Makefile /home/makc/porting/ports/math/scilab-toolbox-swt/Makefile --- /usr/ports/math/scilab-toolbox-swt/Makefile 2007-06-20 17:38:07.000000000 +0400 +++ /home/makc/porting/ports/math/scilab-toolbox-swt/Makefile 2007-09-21 23:49:40.000000000 +0400 @@ -21,17 +21,25 @@ WRKSRC= ${WRKDIR}/${PORTNAME}-${DISTVERSION} -SCI= ${LOCALBASE}/lib/scilab -TOOLBOXDIR?= lib/scilab/contrib/swt +SCILABDIR?= lib/scilab +CONTRIBDIR?= ${SCILABDIR}/contrib +TOOLBOXDIR?= ${CONTRIBDIR}/${PORTNAME} HAS_CONFIGURE= yes CONFIGURE_ARGS+=--prefix=${PREFIX}/${TOOLBOXDIR} -CONFIGURE_ENV+= SCI="${SCI}" -USE_LDCONFIG= ${PREFIX}/${TOOLBOXDIR} +CONFIGURE_ENV+= SCI="${LOCALBASE}/${SCILABDIR}" PLIST_SUB= TOOLBOXDIR=${TOOLBOXDIR} +OPTIONS= SIVP "Enable Image and Video support" off + +.include + +.if defined(WITH_SIVP) +RUN_DEPENDS+= ${LOCALBASE}/${CONTRIBDIR}/sivp/loader.sce:${PORTSDIR}/math/scilab-toolbox-sivp +.endif + post-install: @${CAT} ${PKGMESSAGE} -.include +.include --Boundary-00=_GRC9GuqjvaMQq/+--