40 lines
958 B
Makefile
40 lines
958 B
Makefile
# $NetBSD: Makefile,v 1.28 2012/10/23 19:51:01 asau Exp $
|
|
|
|
DISTNAME= file-5.11
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= ftp://ftp.astron.com/pub/file/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.darwinsys.com/file/
|
|
COMMENT= Tool for determining file type
|
|
LICENSE= 2-clause-bsd
|
|
|
|
USE_LIBTOOL= YES
|
|
|
|
GNU_CONFIGURE= YES
|
|
CONFIGURE_ARGS+= --enable-fsect-man5
|
|
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR:Q}
|
|
|
|
MESSAGE_SUBST+= PKG_SYSCONFDIR=${PKG_SYSCONFDIR}
|
|
|
|
TEST_TARGET= check
|
|
|
|
.include "../../mk/compiler.mk"
|
|
|
|
# gcc<4 does not know -Wextra.
|
|
# XXX: should be treated with wrappers automatically.
|
|
.if !empty(CC_VERSION:Mgcc-[23]*)
|
|
BUILDLINK_TRANSFORM+= rename:-Wextra:-W
|
|
.endif
|
|
# gcc<3 does not know -Wunused-parameter
|
|
.if !empty(CC_VERSION:Mgcc-2*)
|
|
BUILDLINK_TRANSFORM+= rm:-Wunused-parameter
|
|
.endif
|
|
|
|
.if ${LOWER_OPSYS} == "aix"
|
|
CFLAGS+= -D_LINUX_SOURCE_COMPAT
|
|
.endif
|
|
|
|
.include "../../devel/zlib/buildlink3.mk"
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|