This was hidden behind a broken test section, and causing circular dependency problems on some OS with bash -> bison -> flex -> bash. The GNU make requirement is still valid, but the test suite no longer requires bash. Reported by Alver on IRC.
40 lines
980 B
Makefile
40 lines
980 B
Makefile
# $NetBSD: Makefile,v 1.62 2020/09/08 11:21:17 jperkin Exp $
|
|
|
|
DISTNAME= flex-2.6.4
|
|
CATEGORIES= devel lang
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=westes/}
|
|
GITHUB_RELEASE= v${PKGVERSION_NOREV}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/westes/flex
|
|
COMMENT= Fast clone of lex(1), the lexical scanner generator
|
|
LICENSE= 2-clause-bsd
|
|
|
|
BUILD_DEPENDS+= help2man-[0-9]*:../../converters/help2man
|
|
|
|
USE_LANGUAGES= c c++
|
|
USE_LIBTOOL= yes
|
|
USE_PKGLOCALEDIR= yes
|
|
USE_TOOLS+= gm4:run gmake makeinfo gettext
|
|
GNU_CONFIGURE= yes
|
|
INFO_FILES= yes
|
|
|
|
TEST_TARGET= check
|
|
LIBS.SunOS+= -lm
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
CFLAGS.AIX+= -D_LINUX_SOURCE_COMPAT
|
|
|
|
.if ${OS_VARIANT} == "SCOOSR5"
|
|
LDFLAGS.SCO_SV+= -lsocket
|
|
.endif
|
|
|
|
# https://github.com/westes/flex/issues/219
|
|
CONFIGURE_ENV.NetBSD+= ac_cv_func_reallocarray=no
|
|
|
|
# https://github.com/westes/flex/issues/241
|
|
CFLAGS.Linux+= -D_GNU_SOURCE
|
|
|
|
.include "../../devel/gettext-lib/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|