1998-08-09 01:10:30 +00:00
|
|
|
# New ports collection makefile for: TinyMUX
|
|
|
|
# Version required: 1.4p13
|
|
|
|
# Date created: 1998/05/28
|
|
|
|
# Whom: cjohnson
|
|
|
|
#
|
1999-08-25 06:06:33 +00:00
|
|
|
# $FreeBSD$
|
1998-08-09 01:10:30 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
DISTNAME= tinymux-1.4p13
|
|
|
|
CATEGORIES= games
|
|
|
|
MASTER_SITES= ftp://ftp.digex.net/pub/mud/tinymux/
|
|
|
|
|
|
|
|
MAINTAINER= cjohnson@camelot.com
|
|
|
|
|
|
|
|
BUILD_DEPENDS= ${PREFIX}/lib/libgdbm.a:${PORTSDIR}/databases/gdbm
|
|
|
|
|
|
|
|
WRKSRC= ${WRKDIR}/src
|
|
|
|
#GNU_CONFIGURE= YES
|
|
|
|
USE_AUTOCONF= YES
|
|
|
|
|
|
|
|
#
|
|
|
|
# Distribution does not include an install target. So here it is.
|
|
|
|
do-install:
|
|
|
|
${MKDIR} ${PREFIX}/games/tinymux
|
|
|
|
${INSTALL_SCRIPT} ${WRKDIR}/game/Startmux ${PREFIX}/games/tinymux
|
1998-08-17 10:11:02 +00:00
|
|
|
.for file in alias.conf compat.conf mtrace.awk mux.config netmux.conf
|
|
|
|
${INSTALL_DATA} ${WRKDIR}/game/${file} ${PREFIX}/games/tinymux
|
|
|
|
.endfor
|
1998-08-09 01:10:30 +00:00
|
|
|
${MKDIR} ${PREFIX}/games/tinymux/data
|
1998-08-17 10:11:02 +00:00
|
|
|
.for file in db_check db_load db_unload
|
|
|
|
${INSTALL_SCRIPT} ${WRKDIR}/game/data/${file} \
|
|
|
|
${PREFIX}/games/tinymux/data
|
|
|
|
.endfor
|
1998-08-09 01:10:30 +00:00
|
|
|
${MKDIR} ${PREFIX}/games/tinymux/text
|
1998-08-17 10:11:02 +00:00
|
|
|
.for file in badsite connect create_reg down full guest help motd \
|
|
|
|
news newuser plushelp quit register wizhelp wizmotd wiznews
|
|
|
|
${INSTALL_DATA} ${WRKDIR}/game/text/${file}.txt \
|
|
|
|
${PREFIX}/games/tinymux/text
|
|
|
|
.endfor
|
1998-08-09 01:10:30 +00:00
|
|
|
${MKDIR} ${PREFIX}/games/tinymux/bin
|
|
|
|
# ${INSTALL_PROGRAM} ${WRKSRC}/conc ${PREFIX}/games/tinymux/bin
|
1998-08-17 10:11:02 +00:00
|
|
|
.for file in dbconvert mkindx netmux slave
|
|
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${file} ${PREFIX}/games/tinymux/bin
|
|
|
|
.endfor
|
1998-08-09 01:10:30 +00:00
|
|
|
.if !defined(NOPORTDOCS)
|
|
|
|
${MKDIR} ${PREFIX}/share/doc/tinymux
|
1998-08-17 10:11:02 +00:00
|
|
|
.for file in README README.COMPRESSION README.GUESTS README.MEMORY \
|
|
|
|
README.TOOLS
|
|
|
|
${INSTALL_DATA} ${WRKDIR}/${file} ${PREFIX}/share/doc/tinymux
|
|
|
|
.endfor
|
1998-08-09 01:10:30 +00:00
|
|
|
.endif
|
|
|
|
|
|
|
|
.include <bsd.port.mk>
|