blob: f4aa9812a372ee1ebfad91d1f3837e5bf1fab3c5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# New ports collection makefile for: LambdaMOO
# Date created: Jul 3 1999
# Whom: Seiichirou Hiraoka
#
# $FreeBSD$
#
PORTNAME= lambdamoo
PORTVERSION= 1.8.1
PORTREVISION= 1
CATEGORIES= net
MASTER_SITES= SF
DISTNAME= LambdaMOO-${PORTVERSION}
MAINTAINER= ports@FreeBSD.org
COMMENT= The most commonly used program to run MOOs
WRKSRC= ${WRKDIR}/MOO-${PORTVERSION}
GNU_CONFIGURE= yes
ALL_TARGET=
CONFIGURE_ENV= YACC=${YACC}
USE_BISON= build
PLIST_FILES= sbin/moo
PORTDOCS= *
do-install:
@${INSTALL_PROGRAM} ${WRKSRC}/moo ${PREFIX}/sbin
post-install:
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
@(cd ${WRKSRC};\
${INSTALL_MAN} Minimal.db README README.Minimal \
${DOCSDIR}; \
)
@${INSTALL_DATA} ${FILESDIR}/README.FreeBSD \
${DOCSDIR}
.endif
.include <bsd.port.mk>
|