16dbb0caab
in PR pkg/24698. Changes: - Fixed a bug with deleting mapping elements in atomic code. - Allow allocation of blocks up to 1G in size. - Fixed a bug that could cause a crash during the atomic commit phase. - While restoring a callout, not all appropriate fields were zeroed. - Some fixes to get restarting to work. - Make sure that a callout handle is not truncated to 16 bits before an attempt is made to remove it. - Made sure that destructing the driver object in atomic code does not lead to trouble. - Fixed a problem with driver->recompile() in multi-level atomic code. - Input blocking for binary connections didn't work. Additionally, this update changes LICENSE to the more accurate "fee-based-commercial-use."
41 lines
1.3 KiB
Makefile
41 lines
1.3 KiB
Makefile
# $NetBSD: Makefile,v 1.6 2004/03/08 01:56:53 minskim Exp $
|
|
|
|
DISTNAME= dgd-1.2p4
|
|
PKGNAME= dgd-1.2.0.4
|
|
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= fee-based-commercial-use
|
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
|
|
WRKSRC= ${WRKDIR}/dgd/src
|
|
USE_BUILDLINK3= yes
|
|
|
|
SUBST_CLASSES+= paths
|
|
SUBST_MESSAGE.paths= "Fixing hardcoded paths and command names."
|
|
SUBST_STAGE.paths= post-patch
|
|
SUBST_FILES.paths= ../mud.dgd
|
|
SUBST_SED.paths= -e 's,/home/dworkin/,${PREFIX}/libdata/,g'
|
|
|
|
INSTALLATION_DIRS= libexec
|
|
|
|
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
|
|
${INSTALL_DATA} ${WRKSRC}/../mud.dgd ${PREFIX}/share/examples/dgd
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|