From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Oct 1 18:10:05 2012 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 60B3A1065723 for ; Mon, 1 Oct 2012 18:10:05 +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 3604F8FC1C for ; Mon, 1 Oct 2012 18:10:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q91IA5IK013115 for ; Mon, 1 Oct 2012 18:10:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q91IA5Kj013108; Mon, 1 Oct 2012 18:10:05 GMT (envelope-from gnats) Resent-Date: Mon, 1 Oct 2012 18:10:05 GMT Resent-Message-Id: <201210011810.q91IA5Kj013108@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:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 21908106566C for ; Mon, 1 Oct 2012 18:00:45 +0000 (UTC) (envelope-from tkato432@yahoo.com) Received: from msa105lp.auone-net.jp (msa105lp.auone-net.jp [222.3.140.168]) by mx1.freebsd.org (Postfix) with ESMTP id BA0F88FC1B for ; Mon, 1 Oct 2012 18:00:44 +0000 (UTC) Received: from localhost.localdomain (ZT037251.ppp.dion.ne.jp [59.128.37.251]) by msa105lp.auone-net.jp (au one net msa) with ESMTP id A3A9A50038 for ; Tue, 2 Oct 2012 03:00:35 +0900 (JST) Message-Id: <20121002025304.53b82e6d730284af3538da46@yahoo.com> Date: Tue, 2 Oct 2012 02:53:04 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/172221: cad/pdnmesh: Update to version 0.2.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 01 Oct 2012 18:10:05 -0000 >Number: 172221 >Category: ports >Synopsis: cad/pdnmesh: Update to version 0.2.2 >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: Mon Oct 01 18:10:04 UTC 2012 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.4-RELEASE-p10 i386 >Organization: >Environment: >Description: - Update to version 0.2.2 Remove file: files/patch-src+Makefile.in >How-To-Repeat: >Fix: diff -urN /usr/ports/cad/pdnmesh/Makefile cad/pdnmesh/Makefile --- /usr/ports/cad/pdnmesh/Makefile 2012-09-26 04:00:37.000000000 +0900 +++ cad/pdnmesh/Makefile 2012-10-01 23:28:09.000000000 +0900 @@ -2,39 +2,65 @@ # $FreeBSD: ports/cad/pdnmesh/Makefile,v 1.27 2012/09/25 19:00:37 tabthorpe Exp $ PORTNAME= pdnmesh -PORTVERSION= 0.2.1 -PORTREVISION= 11 +PORTVERSION= 0.2.2 CATEGORIES= cad MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-source/${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= A finite element program +LICENSE= GPLv2 # (or later) + LIB_DEPENDS= gtkglext:${PORTSDIR}/x11-toolkits/gtkglext -.include - -.if exists(${LOCALBASE}/lib/libatlas.so) && !defined(WITH_BLAS) -WITH_ATLAS= yes -.endif -.if defined(WITH_ATLAS) -LIB_DEPENDS+= atlas.2:${PORTSDIR}/math/atlas -BLAS= -lf77blas -LAPACK= -lalapack -lcblas -.else -LIB_DEPENDS+= blas.2:${PORTSDIR}/math/blas -LIB_DEPENDS+= lapack.4:${PORTSDIR}/math/lapack -BLAS= -lblas -LAPACK= -llapack -.endif +OPTIONS_DEFINE= ATLAS DOCS EXAMPLES +ATLAS_DESC= Enable ATLAS support USE_FORTRAN= yes -CONFIGURE_ENV+= BLAS_LIBS="${BLAS}" LAPACK_LIBS="${LAPACK}" -USE_GL= yes +USE_GL= glu GNU_CONFIGURE= yes -CONFIGURE_ENV+= LIBS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" +MAKE_JOBS_SAFE= yes + +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib + +MAN1= pdnmesh.1 +MAN5= pdnmesh_input.5 -MAN1= pdnmesh.1 -MAN5= pdnmesh_input.5 +.include + +.if ${PORT_OPTIONS:MATLAS} +LIB_DEPENDS+= atlas:${PORTSDIR}/math/atlas +CONFIGURE_ARGS+=--with-blas=cblas --with-lapack=alapack +.else +LIB_DEPENDS+= blas:${PORTSDIR}/math/blas +LIB_DEPENDS+= lapack:${PORTSDIR}/math/lapack +CONFIGURE_ARGS+=--with-blas=blas --with-lapack=lapack +.endif + +post-patch: + @${REINPLACE_CMD}-e \ + '/^SUBDIRS/s|doc|| ; \ + s|^pkgdata_DATA|#pkgdata_DATA|' ${WRKSRC}/Makefile.in + +post-install: +.if ${PORT_OPTIONS:MDOCS} + @${MKDIR} ${DOCSDIR} + (cd ${WRKSRC} \ + && ${INSTALL_DATA} ChangeLog ${DOCSDIR} \ + && ${INSTALL_DATA} README ${DOCSDIR}) + @${MKDIR} ${DOCSDIR}/tutorial + (cd ${WRKSRC}/doc/tutorial \ + && ${INSTALL_DATA} README ${DOCSDIR}/tutorial \ + && ${INSTALL_DATA} tutorial.* ${DOCSDIR}/tutorial) +.endif +.if ${PORT_OPTIONS:MEXAMPLES} + @${MKDIR} ${EXAMPLESDIR} + @(${TAR} -C ${WRKSRC}/doc/examples --exclude "*Makefile*" -cf - . | \ + ${TAR} -C ${EXAMPLESDIR} --unlink -xf -) + @${FIND} ${EXAMPLESDIR} | ${XARGS} ${CHOWN} ${SHREOWN}:${SHAREGRP} + @${FIND} ${EXAMPLESDIR} -type d | ${XARGS} ${CHMOD} a+rx + @${FIND} ${EXAMPLESDIR} -type f | ${XARGS} ${CHMOD} ${SHAREMODE} +.endif -.include +.include diff -urN /usr/ports/cad/pdnmesh/distinfo cad/pdnmesh/distinfo --- /usr/ports/cad/pdnmesh/distinfo 2011-03-20 21:46:14.000000000 +0900 +++ cad/pdnmesh/distinfo 2012-09-28 21:28:31.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (pdnmesh-0.2.1.tar.gz) = af67231ff7767af479f08ec3cd9148c124016481c04a43c1b4bb429545409d29 -SIZE (pdnmesh-0.2.1.tar.gz) = 1590790 +SHA256 (pdnmesh-0.2.2.tar.gz) = 6ff31e2bf9ef9906a75f6ad37d37f4197bd4262f7dc4418a0c8f3898cd38e704 +SIZE (pdnmesh-0.2.2.tar.gz) = 1625961 diff -urN /usr/ports/cad/pdnmesh/files/patch-src+Makefile.in cad/pdnmesh/files/patch-src+Makefile.in --- /usr/ports/cad/pdnmesh/files/patch-src+Makefile.in 2007-01-17 17:05:55.000000000 +0900 +++ cad/pdnmesh/files/patch-src+Makefile.in 1970-01-01 09:00:00.000000000 +0900 @@ -1,11 +0,0 @@ ---- src/Makefile.in.orig Wed Jan 17 16:58:18 2007 -+++ src/Makefile.in Wed Jan 17 16:58:16 2007 -@@ -72,7 +72,7 @@ - LEXLIB = @LEXLIB@ - LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ - LIBOBJS = @LIBOBJS@ --LIBS = @LIBS@ -+LIBS = @LAPACK_LIBS@ @BLAS_LIBS@ @FLIBS@ - LN_S = @LN_S@ - LTLIBOBJS = @LTLIBOBJS@ - MAKEINFO = @MAKEINFO@ diff -urN /usr/ports/cad/pdnmesh/pkg-plist cad/pdnmesh/pkg-plist --- /usr/ports/cad/pdnmesh/pkg-plist 2005-03-16 21:01:08.000000000 +0900 +++ cad/pdnmesh/pkg-plist 2012-09-28 22:05:16.000000000 +0900 @@ -1,41 +1,41 @@ bin/pdnmesh -%%DATADIR%%/README -%%DATADIR%%/COPYING -%%DATADIR%%/ChangeLog -%%DATADIR%%/tutorial/README -%%DATADIR%%/tutorial/tutorial.sgml.bz2 -%%DATADIR%%/tutorial/tutorial.html.bz2 -%%DATADIR%%/examples/README -%%DATADIR%%/examples/coords.1 -%%DATADIR%%/examples/coords.10 -%%DATADIR%%/examples/coords.11 -%%DATADIR%%/examples/coords.1a -%%DATADIR%%/examples/coords.2 -%%DATADIR%%/examples/coords.3 -%%DATADIR%%/examples/coords.4 -%%DATADIR%%/examples/coords.5 -%%DATADIR%%/examples/coords.6 -%%DATADIR%%/examples/coords.7 -%%DATADIR%%/examples/coords.8 -%%DATADIR%%/examples/coords.9 -%%DATADIR%%/examples/heat -%%DATADIR%%/examples/flow -%%DATADIR%%/examples/flow.1 -%%DATADIR%%/examples/heart -%%DATADIR%%/examples/switch -%%DATADIR%%/examples/trans -%%DATADIR%%/pixmaps/open.xpm -%%DATADIR%%/pixmaps/save.xpm +%%PORTDOCS%%%%DOCSDIR%%/ChangeLog +%%PORTDOCS%%%%DOCSDIR%%/README +%%PORTDOCS%%%%DOCSDIR%%/tutorial/README +%%PORTDOCS%%%%DOCSDIR%%/tutorial/tutorial.html.bz2 +%%PORTDOCS%%%%DOCSDIR%%/tutorial/tutorial.sgml.bz2 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/README +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/coords.1 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/coords.10 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/coords.11 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/coords.1a +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/coords.2 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/coords.3 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/coords.4 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/coords.5 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/coords.6 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/coords.7 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/coords.8 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/coords.9 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/flow +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/flow.1 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/heart +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/heat +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/switch +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/trans %%DATADIR%%/pixmaps/help_about.xpm %%DATADIR%%/pixmaps/next_eigenmode.xpm +%%DATADIR%%/pixmaps/open.xpm %%DATADIR%%/pixmaps/plot_cont.xpm %%DATADIR%%/pixmaps/plot_fill.xpm %%DATADIR%%/pixmaps/plot_grad.xpm %%DATADIR%%/pixmaps/plot_mesh.xpm +%%DATADIR%%/pixmaps/save.xpm %%DATADIR%%/pixmaps/zoom_all.xpm %%DATADIR%%/pixmaps/zoom_back.xpm %%DATADIR%%/pixmaps/zoom_window.xpm -@dirrm %%DATADIR%%/examples @dirrm %%DATADIR%%/pixmaps -@dirrm %%DATADIR%%/tutorial @dirrm %%DATADIR%% +%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%% +%%PORTDOCS%%@dirrm %%DOCSDIR%%/tutorial +%%PORTDOCS%%@dirrm %%DOCSDIR%% >Release-Note: >Audit-Trail: >Unformatted: