Thu Jan 17 15:56:05 2019 UTC ()
Fix build for math/libnumbertext on netbsd-7

This package makes use of features from C++11, that only GCC 5.x or
newer actually supports (codecvt and regex).


(khorben)
diff -r1.1 -r1.2 pkgsrc/math/libnumbertext/Makefile

cvs diff -r1.1 -r1.2 pkgsrc/math/libnumbertext/Makefile (expand / switch to unified diff)

--- pkgsrc/math/libnumbertext/Makefile 2018/08/15 14:02:46 1.1
+++ pkgsrc/math/libnumbertext/Makefile 2019/01/17 15:56:05 1.2
@@ -1,22 +1,24 @@ @@ -1,22 +1,24 @@
1# $NetBSD: Makefile,v 1.1 2018/08/15 14:02:46 ryoon Exp $ 1# $NetBSD: Makefile,v 1.2 2019/01/17 15:56:05 khorben Exp $
2 2
3DISTNAME= libnumbertext-1.0.3 3DISTNAME= libnumbertext-1.0.3
4CATEGORIES= math 4CATEGORIES= math
5MASTER_SITES= ${MASTER_SITE_GITHUB:=Numbertext/} 5MASTER_SITES= ${MASTER_SITE_GITHUB:=Numbertext/}
6EXTRACT_SUFX= .tar.xz 6EXTRACT_SUFX= .tar.xz
7GITHUB_PROJECT= libnumbertext 7GITHUB_PROJECT= libnumbertext
8GITHUB_RELEASE= 1.0 8GITHUB_RELEASE= 1.0
9 9
10MAINTAINER= ryoon@NetBSD.org 10MAINTAINER= ryoon@NetBSD.org
11HOMEPAGE= https://numbertext.github.io/ 11HOMEPAGE= https://numbertext.github.io/
12COMMENT= Convert to number names from numbers 12COMMENT= Convert to number names from numbers
13LICENSE= modified-bsd 13LICENSE= modified-bsd
14 14
15GNU_CONFIGURE= yes 15GNU_CONFIGURE= yes
16USE_LIBTOOL= yes 16USE_LIBTOOL= yes
17USE_TOOLS+= pkg-config 17USE_TOOLS+= pkg-config
18USE_LANGUAGES= c c++ 18USE_LANGUAGES= c c++11
 19
 20GCC_REQD+= 5.0
19 21
20PKGCONFIG_OVERRIDE+= libnumbertext.pc.in 22PKGCONFIG_OVERRIDE+= libnumbertext.pc.in
21 23
22.include "../../mk/bsd.pkg.mk" 24.include "../../mk/bsd.pkg.mk"