a551da2efe
- The editor could erroneously allocate dynamic instead of static memory. - Fixed a spurious pause that would occur if the first callout started after a cold boot had a delay of 0. - Fixed a problem with repeatedly adding and removing callouts in atomically executed code. - Fixed several bugs in error handling. - A better fix for errors in atomic code, in combination with multi-level catches. - Fixed a config file reading bug that could occur if the server was restarted. - Fixed a bug in saving/restoring variables in an object that privately inherited another. - Prevent code from being erroneously optimized away in rare cases. - Fixed a bug in handling some regular expressions. - Fixed several bugs which could, in rare cases, cause nil to turn up in mappings that had been accessed from atomically executed code. - Fixed a bug in error recovery for compiling switch statements. The update was contributed by Scott Thompson in private e-mail.
29 lines
996 B
Makefile
29 lines
996 B
Makefile
# $NetBSD: Makefile,v 1.2 2002/09/11 20:02:26 tron Exp $
|
|
|
|
DISTNAME= dgd-1.2p2
|
|
PKGNAME= dgd-1.2.0.2
|
|
CATEGORIES= net games
|
|
MASTER_SITES= ftp://ftp.dworkin.nl/pub/dgd/
|
|
|
|
MAINTAINER= sco@openface.ca
|
|
HOMEPAGE= http://www.dworkin.nl/dgd/
|
|
COMMENT= Object-oriented programmable server
|
|
|
|
LICENSE= no-commercial-use
|
|
|
|
WRKSRC= ${WRKDIR}/dgd/src
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/a.out ${PREFIX}/libexec/dgd
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/dgd
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/dgd
|
|
${INSTALL_DATA_DIR} ${PREFIX}/libdata/dgd/tmp
|
|
cd ${WRKDIR}/dgd && \
|
|
${INSTALL_DATA} Copyright Credits README ${PREFIX}/share/doc/dgd
|
|
${GTAR} cCf ${WRKDIR}/dgd/doc - . | ${GTAR} xCf ${PREFIX}/share/doc/dgd -
|
|
${GTAR} cCf ${WRKDIR}/dgd - mud | ${GTAR} xCf ${PREFIX}/libdata/dgd -
|
|
${CHOWN} -R ${BINOWN}:${BINGRP} ${PREFIX}/libdata/dgd \
|
|
${PREFIX}/share/doc/dgd
|
|
${SED} -e "s#@PREFIX@#${PREFIX}#" ${WRKSRC}/../mud.dgd > ${PREFIX}/share/examples/dgd/mud.dgd
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|