Mon Jul 10 00:49:40 2023 UTC ()
aiksaurus: fix builds with recent compilers

This uses "old" C++ expectations, and compilers that default to C++17
and such will object (or, at least, GCC 13 does). While here, take
maintainership.


(gutteridge)
diff -r1.37 -r1.38 pkgsrc/textproc/aiksaurus/Makefile

cvs diff -r1.37 -r1.38 pkgsrc/textproc/aiksaurus/Makefile (expand / switch to unified diff)

--- pkgsrc/textproc/aiksaurus/Makefile 2023/01/29 21:17:54 1.37
+++ pkgsrc/textproc/aiksaurus/Makefile 2023/07/10 00:49:40 1.38
@@ -1,22 +1,21 @@ @@ -1,22 +1,21 @@
1# $NetBSD: Makefile,v 1.37 2023/01/29 21:17:54 ryoon Exp $ 1# $NetBSD: Makefile,v 1.38 2023/07/10 00:49:40 gutteridge Exp $
2# 
3 2
4DISTNAME= aiksaurus-1.2.1 3DISTNAME= aiksaurus-1.2.1
5PKGREVISION= 15 4PKGREVISION= 15
6CATEGORIES= textproc 5CATEGORIES= textproc
7MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=aiksaurus/} 6MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=aiksaurus/}
8 7
9MAINTAINER= pkgsrc-users@NetBSD.org 8MAINTAINER= gutteridge@NetBSD.org
10HOMEPAGE= http://aiksaurus.sourceforge.net/ 9HOMEPAGE= http://aiksaurus.sourceforge.net/
11COMMENT= English-language thesaurus 10COMMENT= English-language thesaurus
12LICENSE= gnu-gpl-v2 11LICENSE= gnu-gpl-v2
13 12
14USE_LIBTOOL= YES 13USE_LIBTOOL= YES
15USE_TOOLS+= pkg-config 14USE_TOOLS+= pkg-config
16USE_LANGUAGES= c c++ 15USE_LANGUAGES= c c++03
17GNU_CONFIGURE= YES 16GNU_CONFIGURE= YES
18PKGCONFIG_OVERRIDE= base/aiksaurus-1.0.pc.in 17PKGCONFIG_OVERRIDE= base/aiksaurus-1.0.pc.in
19 18
20.include "options.mk" 19.include "options.mk"
21 20
22.include "../../mk/bsd.pkg.mk" 21.include "../../mk/bsd.pkg.mk"