freebsd-ports/net/lambdamoo/Makefile
Andrey Slusar 64fde1bd6c - This patch will fix net/lambamoo to build on 6.x. The problem exists when the
configure script sets YACC in the Makefile. It sets it to "YACC= bison -y" on
  6.x systems. For one reason or another this does not work. Where as on 4.x
  systems, it sets "YACC= byacc" which works fine. I set YACC=${YACC} in
  CONFIGURE_ENV to fix this problem. I also added the dependency for bison
  (USE_BISON) as well as adding MASTER_SITE_SOURCEFORGE into the MASTER_SITES. [1]
- Respect CFLAGS.
- Pass maintainership to submitter. [1]

PR:		ports/93984 [1]
Submitted by:	Frank Laszlo <laszlof@vonostingroup.com> [1]
2006-04-13 11:16:32 +00:00

38 lines
849 B
Makefile

# New ports collection makefile for: LambdaMOO
# Date created: Jul 3 1999
# Whom: Seiichirou Hiraoka
#
# $FreeBSD$
#
PORTNAME= lambdamoo
PORTVERSION= 1.8.1
CATEGORIES= net
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
DISTNAME= LambdaMOO-${PORTVERSION}
MAINTAINER= laszlof@vonostingroup.com
COMMENT= The most commonly used program to run MOOs
WRKSRC= ${WRKDIR}/MOO-${PORTVERSION}
GNU_CONFIGURE= yes
ALL_TARGET=
CONFIGURE_ENV= YACC=${YACC}
USE_BISON= yes
do-install:
@${INSTALL_PROGRAM} ${WRKSRC}/moo ${PREFIX}/sbin
post-install:
.if !defined(NOPORTDOCS)
@${MKDIR} ${PREFIX}/share/doc/LambdaMOO
@(cd ${WRKSRC};\
${INSTALL_MAN} Minimal.db README README.Minimal \
${PREFIX}/share/doc/LambdaMOO; \
)
@${INSTALL_DATA} ${FILESDIR}/README.FreeBSD \
${PREFIX}/share/doc/LambdaMOO
.endif
.include <bsd.port.mk>