pkgsrc/lang/mawk/Makefile
gutteridge 8665bc28bf mawk: update to 20200120
20200120
	+ resync with my-autoconf.
	+ fix typos found with codespell.
	+ when reading input in interactive mode, provide for extending the
	  buffer size for very long lines (Original-Mawk #59).

20200106
	+ correct line-number shown in too-many-arguments error message for
	  the case where the function is a forward reference (report by
	  "mukti").
	+ fix install for manpage when configure --srcdir option is used
	  (report by Rajeev V Pillai).
	+ use both CFLAGS/LDFLAGS when linking in makefile (report by
	  Rajeev V Pillai).
	+ fix clang-9 warning in bi_funct.c (report by Rajeev V Pillai).
	+ minor improvement to gcc warning options, from vile

20191231
	+ updated configure macros
	+ update config.guess and config.sub

20190203
	+ improve manpage formatting, e.g., for man2html
	+ improve debug-traces

20190129
	+ eliminate non-portable tdestroy() from zmalloc no-leaks code.
	+ updated configure macros
	+ update config.guess and config.sub

20181114
	+ revert a change for memory-leaks which made the forced-exit via a
	  user function inconsistent with earlier versions (report by Sihera
	  Andre).
	+ amend a change for memory-leaks to avoid a double-free (Original-Mawk
	  #56).
2021-03-02 02:53:40 +00:00

27 lines
613 B
Makefile

# $NetBSD: Makefile,v 1.34 2021/03/02 02:53:40 gutteridge Exp $
DISTNAME= mawk-1.3.4-20200120
PKGNAME= ${DISTNAME:S/-20/.20/}
CATEGORIES= lang
MASTER_SITES= ftp://ftp.invisible-island.net/mawk/
EXTRACT_SUFX= .tgz
MAINTAINER= cheusov@NetBSD.org
HOMEPAGE= https://www.invisible-island.net/mawk/
COMMENT= AWK clone by Mike Brennan
LICENSE= gnu-gpl-v2
GNU_CONFIGURE= yes
INSTALLATION_DIRS= ${PKGMANDIR}/man1
TEST_TARGET= mawk_test fpe_test
.include "../../mk/bsd.prefs.mk"
# mawk configure fails with -ffast-math
CFLAGS:= ${CFLAGS:S/-ffast-math//}
MAKE_ENV.SunOS+= CPPFLAGS=
.include "../../mk/bsd.pkg.mk"