1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-16 03:24:07 +00:00
freebsd-ports/devel/bison20/Makefile
Sean Chittenden 321ff106fa When installing bison, create a symlink from bin/bison to bin/bison1875
that way ports that require bison1875 (ie: PostgreSQL 7.4+) can properly
detect this dependency.  Given both bison's have the appropriate CONFLICTS
sections, this should be a big enough hint to users to move from
bison < 1.875 to something more recent.  Bump port revision.

Pointy hat to:	bison(1) authors for grammar incompatibilities
2003-11-15 22:20:01 +00:00

44 lines
1.0 KiB
Makefile

# Ports collection makefile for: bison
# Date created: 27 Mar 1999
# Whom: Jerry Hicks
#
# $FreeBSD$
#
PORTNAME= bison
PORTVERSION= 1.875
PORTREVISION= 2
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_GNU}
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= seanc@FreeBSD.org
COMMENT= A parser generator from FSF, (mostly) compatible with Yacc
CONFLICTS= bison-[0-9]+
BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4
LIB_DEPENDS= intl.5:${PORTSDIR}/devel/gettext
RUN_DEPENDS= gm4:${PORTSDIR}/devel/m4
USE_BZIP2= yes
GNU_CONFIGURE= yes
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib" \
MAKEINFO="makeinfo --no-split"
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:
${LN} -sf ${LOCALBASE}/bin/bison ${LOCALBASE}/bin/bison1875
.include <bsd.port.mk>