From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Nov 1 18:40:03 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id C1B6A258 for ; Fri, 1 Nov 2013 18:40:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A47302FDC for ; Fri, 1 Nov 2013 18:40:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rA1Ie3Jt027234 for ; Fri, 1 Nov 2013 18:40:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rA1Ie3JT027233; Fri, 1 Nov 2013 18:40:03 GMT (envelope-from gnats) Resent-Date: Fri, 1 Nov 2013 18:40:03 GMT Resent-Message-Id: <201311011840.rA1Ie3JT027233@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 6E1BBF07 for ; Fri, 1 Nov 2013 18:30:41 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from omta02.auone-net.jp (mail-or0-f67.auone-net.jp [106.187.230.67]) by mx1.freebsd.org (Postfix) with ESMTP id 40E4A2F6C for ; Fri, 1 Nov 2013 18:30:41 +0000 (UTC) Received: from coppermine.my.domain (ZT034086.ppp.dion.ne.jp [59.128.34.86]) by omta02.auone-net.jp (au one net mail) with ESMTP id 0A4FF156006A for ; Sat, 2 Nov 2013 03:30:38 +0900 (JST) Message-Id: <20131102032032.49550cde712d088246e4fba5@yahoo.com> Date: Sat, 2 Nov 2013 03:20:32 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/183564: math/labplot: Update to version 2.0.0.b1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Nov 2013 18:40:03 -0000 >Number: 183564 >Category: ports >Synopsis: math/labplot: Update to version 2.0.0.b1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Nov 01 18:40:03 UTC 2013 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 8.4-RELEASE-p3 i386 >Organization: >Environment: >Description: - Update to version 2.0.0.b1 >How-To-Repeat: >Fix: diff -urN /usr/ports/math/labplot/Makefile math/labplot/Makefile --- /usr/ports/math/labplot/Makefile 2013-09-22 00:49:07.000000000 +0900 +++ math/labplot/Makefile 2013-11-02 00:00:00.000000000 +0900 @@ -2,17 +2,16 @@ # $FreeBSD: head/math/labplot/Makefile 327746 2013-09-20 20:55:04Z bapt $ PORTNAME= labplot -DISTVERSION= 2.0.0.alpha3 -PORTREVISION= 1 +DISTVERSION= 2.0.0.beta1 CATEGORIES= math kde MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION:R} MAINTAINER= ports@FreeBSD.org COMMENT= Data plotting and function analysis tool for KDE -LICENSE= GPLv2 +LICENCE= GPLv2 -LIB_DEPENDS= gsl:${PORTSDIR}/math/gsl +LIB_DEPENDS= libgsl.so:${PORTSDIR}/math/gsl OPTIONS_DEFINE= CDF HDF5 NETCDF CDF_DESC= CDF data support @@ -20,29 +19,29 @@ NETCDF_DESC= NetCDF data support USE_BZIP2= yes +USES= cmake USE_XORG= xft xpm +USE_GCC= yes USE_KDE4= automoc4 kdelibs kdeprefix USE_QT4= moc_build qmake_build rcc_build uic_build -USES= cmake CMAKE_ARGS= -DOPJ_LIBRARY:STRING="" -NO_STAGE= yes .include .if ${PORT_OPTIONS:MCDF} -LIB_DEPENDS+= cdf:${PORTSDIR}/science/cdf +LIB_DEPENDS+= libcdf.so:${PORTSDIR}/science/cdf .else CMAKE_ARGS+= -DCDF_LIBRARY:STRING="" .endif .if ${PORT_OPTIONS:MHDF5} -LIB_DEPENDS+= hdf5:${PORTSDIR}/science/hdf5 +LIB_DEPENDS+= libhdf5.so:${PORTSDIR}/science/hdf5 .else CMAKE_ARGS+= -DHDF5_LIBRARY:STRING="" .endif .if ${PORT_OPTIONS:MNETCDF} -LIB_DEPENDS+= netcdf:${PORTSDIR}/science/netcdf +LIB_DEPENDS+= libnetcdf.so:${PORTSDIR}/science/netcdf .else CMAKE_ARGS+= -DNETCDF_LIBRARY:STRING="" .endif @@ -53,5 +52,8 @@ @${REINPLACE_CMD} -e \ 's|i->\(children\)|\1|' \ ${WRKSRC}/src/backend/core/AbstractAspect.h + @${REINPLACE_CMD} -e \ + 's|!isnan|!std::isnan|' \ + ${WRKSRC}/src/backend/worksheet/plots/cartesian/CartesianCoordinateSystem.cpp .include diff -urN /usr/ports/math/labplot/distinfo math/labplot/distinfo --- /usr/ports/math/labplot/distinfo 2013-06-21 03:52:58.000000000 +0900 +++ math/labplot/distinfo 2013-11-02 00:00:00.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (labplot-2.0.0.alpha3.tar.bz2) = 881c0a36378a6ad406d2c1102a58a32c038a6fb1e9fd97565da7b7aa95767227 -SIZE (labplot-2.0.0.alpha3.tar.bz2) = 1280273 +SHA256 (labplot-2.0.0.beta1.tar.bz2) = 3e68b7a8036a51670a2011c671a7163dd49ddec79b77c80df1cabbbc019e4221 +SIZE (labplot-2.0.0.beta1.tar.bz2) = 1290084 diff -urN /usr/ports/math/labplot/pkg-plist math/labplot/pkg-plist --- /usr/ports/math/labplot/pkg-plist 2013-06-21 03:52:58.000000000 +0900 +++ math/labplot/pkg-plist 2013-11-02 00:00:00.000000000 +0900 @@ -1,8 +1,4 @@ bin/labplot2 -bin/opj2dat -lib/liblabplot_origin.so -lib/liblabplot_origin.so.0 -lib/liblabplot_origin.so.0.0.4 share/apps/LabPlot/LabPlotui.rc share/apps/LabPlot/labplot.png share/apps/LabPlot/pics/auto-scale-all.png >Release-Note: >Audit-Trail: >Unformatted: