mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-20 08:27:15 +00:00
4fe6852b8f
list by bsd.port.mk insert anti foot-shooting device, which prevents infinite fork loop when the user defines corresponding USE_XXX in global make.conf, command line or environment. Similar devices should probably be inserted into ports that might be inserted into dependency list by others bsd.foo.mk files (bsd.ruby.mk, bsd.python.mk and so on.)
41 lines
909 B
Makefile
41 lines
909 B
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: bison
|
|
# Date created: 27 Mar 1999
|
|
# Whom: Jerry Hicks
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= bison
|
|
PORTVERSION= 1.35
|
|
PORTREVISION= 1
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_GNU}
|
|
MASTER_SITE_SUBDIR= bison
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
|
|
LIB_DEPENDS= iconv.3:${PORTSDIR}/converters/libiconv
|
|
|
|
USE_BZIP2= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-included-gettext
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib" \
|
|
MAKEINFO="makeinfo --no-split"
|
|
CONFIGURE_TARGET= --target=${MACHINE_ARCH}-unknown-freebsd${OSREL}
|
|
|
|
MAN1= bison.1
|
|
|
|
.ifdef USE_BISON
|
|
.error You have `USE_BISON' variable defined either in environment or in make(1) arguments. Please undefine and try again.
|
|
.endif
|
|
|
|
post-extract:
|
|
@${RM} -f ${WRKSRC}/doc/bison.info*
|
|
|
|
post-install:
|
|
install-info ${PREFIX}/info/bison.info ${PREFIX}/info/dir
|
|
|
|
.include <bsd.port.mk>
|