From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 3 16:10:07 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 B017416A494 for ; Wed, 3 Oct 2007 16:10:07 +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 9FD4013C480 for ; Wed, 3 Oct 2007 16:10:07 +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 l93GA7Fa067124 for ; Wed, 3 Oct 2007 16: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 l93GA714067122; Wed, 3 Oct 2007 16:10:07 GMT (envelope-from gnats) Date: Wed, 3 Oct 2007 16:10:07 GMT Message-Id: <200710031610.l93GA714067122@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: Wed, 03 Oct 2007 16:10:07 -0000 The following reply was made to PR ports/113750; it has been noted by GNATS. From: Kay Lehmann To: Max Brazhnikov Cc: Stefan Walter , GNATS Subject: Re: ports/113750: update science/kst to 1.4.0 Date: Wed, 03 Oct 2007 18:04:04 +0200 This is a multi-part message in MIME format. --------------000902060105090005000601 Content-Type: text/plain; charset=KOI8-R; format=flowed Content-Transfer-Encoding: 7bit Thanks again to Max. Attached is a patch which solves the problems with pkg-plist and it works quite well (at least for me). So I think the update could be commited without marking anything broken. Greets, Kay --------------000902060105090005000601 Content-Type: text/plain; name="Makefile.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="Makefile.diff" --- /usr/ports/science/kst/Makefile 2007-06-29 09:46:43.000000000 +0400 +++ Makefile 2007-10-03 00:01:09.000000000 +0400 @@ -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,8 @@ .endif .if defined(WITH_CDF) +CONFIGURE_ARGS+=LDFLAGS="-lm" +MAKE_ARGS+= AUTOMAKE="${TRUE}" LIB_DEPENDS+= cdf.0:${PORTSDIR}/science/cdf PLIST_SUB+= CDF="" .else --------------000902060105090005000601--