From owner-svn-ports-all@FreeBSD.ORG Fri Mar 28 20:22:32 2014 Return-Path: Delivered-To: svn-ports-all@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 ESMTPS id 457CF906; Fri, 28 Mar 2014 20:22:32 +0000 (UTC) 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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 194A5E42; Fri, 28 Mar 2014 20:22:32 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s2SKMVmh059627; Fri, 28 Mar 2014 20:22:31 GMT (envelope-from swills@svn.freebsd.org) Received: (from swills@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s2SKMV73059625; Fri, 28 Mar 2014 20:22:31 GMT (envelope-from swills@svn.freebsd.org) Message-Id: <201403282022.s2SKMV73059625@svn.freebsd.org> From: Steve Wills Date: Fri, 28 Mar 2014 20:22:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r349458 - head/math/ruby-fftw3 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Mar 2014 20:22:32 -0000 Author: swills Date: Fri Mar 28 20:22:31 2014 New Revision: 349458 URL: http://svnweb.freebsd.org/changeset/ports/349458 QAT: https://qat.redports.org/buildarchive/r349458/ Log: - Use rubygem-narray for dependency instead of ruby-narray [1] - Use new LIB_DEPENDS format - Cleanup pkg-descr PR: ports/188012 [1] Submitted by: Shin-ya Murakami [1] Modified: head/math/ruby-fftw3/Makefile head/math/ruby-fftw3/pkg-descr Modified: head/math/ruby-fftw3/Makefile ============================================================================== --- head/math/ruby-fftw3/Makefile Fri Mar 28 20:00:52 2014 (r349457) +++ head/math/ruby-fftw3/Makefile Fri Mar 28 20:22:31 2014 (r349458) @@ -3,7 +3,7 @@ PORTNAME= fftw3 PORTVERSION= 0.4 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= math ruby MASTER_SITES= http://ruby.gfd-dennou.org/products/ruby-fftw3/release/ \ http://dennou-h.gfd-dennou.org/library/ruby/products/ruby-fftw3/release/ \ @@ -18,13 +18,18 @@ COMMENT= A Ruby interface to the FFTW ve LICENSE= BSD LICENSE_FILE= ${WRKSRC}/LICENSE.txt -LIB_DEPENDS= fftw3:${PORTSDIR}/math/fftw3 -BUILD_DEPENDS= ${RUBY_SITEARCHLIBDIR}/narray.so:${PORTSDIR}/math/ruby-narray +LIB_DEPENDS= libfftw3.so:${PORTSDIR}/math/fftw3 +BUILD_DEPENDS= rubygem-narray>=0:${PORTSDIR}/math/rubygem-narray RUN_DEPENDS:= ${BUILD_DEPENDS} USE_RUBY= yes USE_RUBY_EXTCONF= yes +RUBY_NARRAY_VERSION!= ${MAKE} -C ${PORTSDIR}/math/rubygem-narray -V PORTVERSION +RUBY_NARRAY_PKGNAME= narray-${RUBY_NARRAY_VERSION} + +CONFIGURE_ARGS+= --with-narray-include=${LOCALBASE}/lib/ruby/gems/${RUBY_VER}/gems/${RUBY_NARRAY_PKGNAME}/ + DOCS= LICENSE.txt doc/* post-install: Modified: head/math/ruby-fftw3/pkg-descr ============================================================================== --- head/math/ruby-fftw3/pkg-descr Fri Mar 28 20:00:52 2014 (r349457) +++ head/math/ruby-fftw3/pkg-descr Fri Mar 28 20:22:31 2014 (r349458) @@ -1,4 +1,3 @@ -Ruby bindins for Fast Fourier Transforms by using FFTW Ver.3. +Ruby bindings for Fast Fourier Transforms by using FFTW Ver.3. -Author: Takeshi Horinouchi -WWW: http://ruby.gfd-dennou.org/products/ruby-fftw3/ +WWW: http://ruby.gfd-dennou.org/products/ruby-fftw3/