Received: by mail.netbsd.org (Postfix, from userid 605) id 3AE0784DED; Fri, 24 May 2019 15:56:23 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id B780184DEC for ; Fri, 24 May 2019 15:56:22 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id AcRlejiIxF61 for ; Fri, 24 May 2019 15:56:22 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 1A5F784D94 for ; Fri, 24 May 2019 15:56:22 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 14735FBB7; Fri, 24 May 2019 15:56:22 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_155871338291020" MIME-Version: 1.0 Date: Fri, 24 May 2019 15:56:22 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/math/fftw To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20190524155622.14735FBB7@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_155871338291020 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Fri May 24 15:56:21 UTC 2019 Added Files: pkgsrc/math/fftw: Makefile.common Log Message: fftw: introduce Makefile.common To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 pkgsrc/math/fftw/Makefile.common Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_155871338291020 Content-Disposition: inline Content-Length: 1031 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Added files: Index: pkgsrc/math/fftw/Makefile.common diff -u /dev/null pkgsrc/math/fftw/Makefile.common:1.1 --- /dev/null Fri May 24 15:56:22 2019 +++ pkgsrc/math/fftw/Makefile.common Fri May 24 15:56:21 2019 @@ -0,0 +1,33 @@ +# $NetBSD: Makefile.common,v 1.1 2019/05/24 15:56:21 adam Exp $ +# used by math/fftw/Makefile +# used by math/fftwf/Makefile + +DISTNAME= fftw-3.3.8 +CATEGORIES= math +MASTER_SITES= ftp://ftp.fftw.org/pub/fftw/ +MASTER_SITES+= http://www.fftw.org/ + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= http://www.fftw.org/ +LICENSE= gnu-gpl-v2 + +USE_LANGUAGES= c +USE_LIBTOOL= yes +USE_TOOLS+= gmake +GNU_CONFIGURE= yes +CONFIGURE_ARGS+= --enable-shared +TEST_TARGET= check + +.include "../../mk/bsd.prefs.mk" + +.if defined(PKGSRC_RUN_TEST) && !empty(PKGSRC_RUN_TEST:M[Yy][Ee][Ss]) +USE_TOOLS+= perl +.endif + +PLIST_VARS+= pthreads +PTHREAD_OPTS= native +.include "../../mk/pthread.buildlink3.mk" +.if ${PTHREAD_TYPE} == "native" +CONFIGURE_ARGS+= --enable-threads +PLIST.pthreads= yes +.endif --_----------=_155871338291020--