From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Sep 30 19:00:11 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 4632D16A417 for ; Sun, 30 Sep 2007 19:00:11 +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 C8CC513C447 for ; Sun, 30 Sep 2007 19:00:10 +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 l8UJ0AOa097885 for ; Sun, 30 Sep 2007 19:00:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.1/8.14.1/Submit) id l8UJ0Ajd097882; Sun, 30 Sep 2007 19:00:10 GMT (envelope-from gnats) Date: Sun, 30 Sep 2007 19:00:10 GMT Message-Id: <200709301900.l8UJ0Ajd097882@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Kay Lehmann Cc: Subject: Re: ports/113750: update science/kst to 1.4.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Kay Lehmann List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Sep 2007 19:00:11 -0000 The following reply was made to PR ports/113750; it has been noted by GNATS. From: Kay Lehmann To: Stefan Walter Cc: Max Brazhnikov , GNATS Subject: Re: ports/113750: update science/kst to 1.4.0 Date: Sun, 30 Sep 2007 20:55:38 +0200 This is a multi-part message in MIME format. --------------050605080505040300030105 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit So after testing the different options, I think we should commit it, but we need to mark it broken with cdf-support enabled. I did not get it to work right now and it needs some more work to do. But updating the port would be nice, since the new version is not that new any more. Attached is a patch against the official Makefile, which includes the Broken-statement. Greetings, Kay --------------050605080505040300030105 Content-Type: text/plain; name="patch-Makefile" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="patch-Makefile" --- Makefile.orig 2007-06-29 07:46:43.000000000 +0200 +++ Makefile 2007-09-30 20:52:46.000000000 +0200 @@ -5,8 +5,7 @@ # $FreeBSD: ports/science/kst/Makefile,v 1.19 2007/06/29 05:46:43 ijliao Exp $ PORTNAME= kst -PORTVERSION= 1.3.1 -PORTREVISION= 3 +PORTVERSION= 1.4.0 CATEGORIES= science kde MASTER_SITES= ${MASTER_SITE_KDE} \ http://omega.astro.utoronto.ca/${PORTNAME}/ @@ -32,14 +31,6 @@ .include -.if ${OSVERSION} < 500000 -BROKEN= does not build -.endif - -.if ${OSVERSION} < 500000 || exists(${LOCALBASE}/lib/libreadline.so.5) -LIB_DEPENDS+= readline.5:${PORTSDIR}/devel/readline -.endif - .if defined(WITH_NETCDF) LIB_DEPENDS+= netcdf.4:${PORTSDIR}/science/netcdf PLIST_SUB+= NETCDF="" @@ -49,6 +40,7 @@ .endif .if defined(WITH_CDF) +BROKEN= "Incomplete pkg-plist with CDF-Support enabled" LIB_DEPENDS+= cdf.0:${PORTSDIR}/science/cdf PLIST_SUB+= CDF="" .else --------------050605080505040300030105--