From owner-svn-ports-head@FreeBSD.ORG Sat Aug 24 07:42:38 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 2585BDA7; Sat, 24 Aug 2013 07:42:38 +0000 (UTC) (envelope-from bf@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (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 0268F209D; Sat, 24 Aug 2013 07:42:38 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r7O7gbBl020072; Sat, 24 Aug 2013 07:42:37 GMT (envelope-from bf@svn.freebsd.org) Received: (from bf@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r7O7gbQ3020070; Sat, 24 Aug 2013 07:42:37 GMT (envelope-from bf@svn.freebsd.org) Message-Id: <201308240742.r7O7gbQ3020070@svn.freebsd.org> From: Brendan Fabeny Date: Sat, 24 Aug 2013 07:42:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r325286 - head/math/fflas-ffpack X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 Aug 2013 07:42:38 -0000 Author: bf Date: Sat Aug 24 07:42:37 2013 New Revision: 325286 URL: http://svnweb.freebsd.org/changeset/ports/325286 Log: Use new idioms (LIB_DEPENDS, etc.); fix a mistake from the options conversion, whitespace, and a plist typo Modified: head/math/fflas-ffpack/Makefile (contents, props changed) head/math/fflas-ffpack/pkg-descr (contents, props changed) Modified: head/math/fflas-ffpack/Makefile ============================================================================== --- head/math/fflas-ffpack/Makefile Sat Aug 24 03:34:00 2013 (r325285) +++ head/math/fflas-ffpack/Makefile Sat Aug 24 07:42:37 2013 (r325286) @@ -1,4 +1,4 @@ -# Created by: b.f. +# Created by: b.f. # $FreeBSD$ PORTNAME= fflas-ffpack @@ -11,16 +11,12 @@ COMMENT= A library for dense linear alge LICENSE= LGPL20 -LIB_DEPENDS= gmp.10:${PORTSDIR}/math/gmp +LIB_DEPENDS= libgmp.so:${PORTSDIR}/math/gmp GNU_CONFIGURE= yes -CONFIGURE_ARGS = --with-gmp="${LOCALBASE}" +CONFIGURE_ARGS= --with-gmp="${LOCALBASE}" -.if !defined(PACKAGE_BUILDING) -OPTIONS_DEFINE= OPTIMIZED_CFLAGS -.endif - -OPTIONS_DEFINE= DOXYGEN OPTIMIZED_CFLAGS +OPTIONS_DEFINE= DOXYGEN OPTIMIZED_CFLAGS .include @@ -31,7 +27,7 @@ LDFLAGS+= -L${LOCALBASE}/lib .if defined(MAINTAINER_MODE) CONFIGURE_ARGS+= --with-givaro="${LOCALBASE}" -LIB_DEPENDS+= givaro.3:${PORTSDIR}/math/givaro +LIB_DEPENDS+= libgivaro.so:${PORTSDIR}/math/givaro .else CONFIGURE_ARGS+= --with-givaro=no .endif @@ -41,25 +37,25 @@ WITH_BLAS?= gsl .if ${WITH_BLAS} == "gotoblas" CONFIGURE_ARGS+= --with-gotoblas2="${LOCALBASE}" --with-lapack=blas -LIB_DEPENDS+= goto2p:${PORTSDIR}/math/gotoblas +LIB_DEPENDS+= libgoto2p.so:${PORTSDIR}/math/gotoblas USE_FORTRAN= yes .elif ${WITH_BLAS} == "atlas" CONFIGURE_ARGS+= --with-cblas="${LOCALBASE}" --with-lapack=blas -LIB_DEPENDS+= cblas.2:${PORTSDIR}/math/atlas +LIB_DEPENDS+= libcblas.so:${PORTSDIR}/math/atlas USE_FORTRAN= yes .elif ${WITH_BLAS} == "gsl" CONFIGURE_ARGS+= --with-gsl="${LOCALBASE}" -LIB_DEPENDS+= gslcblas.0:${PORTSDIR}/math/gsl +LIB_DEPENDS+= libgslcblas.so:${PORTSDIR}/math/gsl .else IGNORE = unknown value of WITH_BLAS: ${WITH_BLAS} .endif .if ${PORT_OPTIONS:MDOXYGEN} -BUILD_DEPENDS += doxygen:${PORTSDIR}/devel/doxygen +BUILD_DEPENDS+= doxygen:${PORTSDIR}/devel/doxygen CONFIGURE_ARGS+= --enable-doc --with-docdir="${DOCSDIR}" PLIST_SUB+= DOXYGEN="" .else -PLIST_SUB+= DOXYGEN="@ccomment " +PLIST_SUB+= DOXYGEN="@comment " .endif .if ${PORT_OPTIONS:MOPTIMIZED_CFLAGS} @@ -102,7 +98,7 @@ post-install: .if defined(MAINTAINER_MODE) check regression-test test: build - @cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${MAKE} ${_MAKE_JOBS} \ + @cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${MAKE_CMD} \ ${MAKE_ARGS} check .endif Modified: head/math/fflas-ffpack/pkg-descr ============================================================================== --- head/math/fflas-ffpack/pkg-descr Sat Aug 24 03:34:00 2013 (r325285) +++ head/math/fflas-ffpack/pkg-descr Sat Aug 24 07:42:37 2013 (r325286) @@ -1,4 +1,4 @@ The FFLAS-FFPACK library provides dense linear algebra routines over word-size prime finite fields. -WWW: http://linalg.org/projects/fflas-ffpack +WWW: http://linalg.org/projects/fflas-ffpack