summaryrefslogtreecommitdiff
path: root/math/ffts/Makefile
diff options
context:
space:
mode:
authorgson <gson@pkgsrc.org>2017-07-04 19:51:42 +0000
committergson <gson@pkgsrc.org>2017-07-04 19:51:42 +0000
commiteaa56db4290df05c9e8cf3af728060336be3bf25 (patch)
tree23385cbd6e3733b62cdf9a45e55540641cfe951d /math/ffts/Makefile
parent2482f2b32cc68a882038f7afd6301435c94af4e2 (diff)
downloadpkgsrc-eaa56db4290df05c9e8cf3af728060336be3bf25.tar.gz
Update math/ffts to 20170617.
The package does not include a change log, but one major feature added since 20140106 is support for transforms of sizes other than powers of two by means of the chirp Z transform.
Diffstat (limited to 'math/ffts/Makefile')
-rw-r--r--math/ffts/Makefile11
1 files changed, 8 insertions, 3 deletions
diff --git a/math/ffts/Makefile b/math/ffts/Makefile
index 114c242c0f6..6932ff1ec05 100644
--- a/math/ffts/Makefile
+++ b/math/ffts/Makefile
@@ -1,9 +1,9 @@
-# $NetBSD: Makefile,v 1.1 2016/01/22 14:57:41 gson Exp $
+# $NetBSD: Makefile,v 1.2 2017/07/04 19:51:42 gson Exp $
-GIT_COMMIT= fa1780c68593762b1e4bdbc46d83912db3eba27a
+GIT_COMMIT= fe86885ecafd0d16eb122f3212403d1d5a86e24e
DISTNAME= ${GIT_COMMIT}
-PKGNAME= ffts-20140106
+PKGNAME= ffts-20170617
CATEGORIES= math
MASTER_SITES= ${MASTER_SITE_GITHUB:=anthonix/}/ffts/archive/
@@ -14,9 +14,14 @@ LICENSE= modified-bsd
WRKSRC= ${WRKDIR}/ffts-${GIT_COMMIT}
+USE_TOOLS+= gmake autoconf automake autoheader aclocal
USE_LANGUAGES= c c++
USE_LIBTOOL= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-sse --enable-single
+pre-configure:
+ set -e; cd ${WRKSRC}; \
+ aclocal; autoheader; automake -a --foreign -i; autoconf
+
.include "../../mk/bsd.pkg.mk"