diff options
author | tsarna <tsarna> | 1998-07-18 04:46:11 +0000 |
---|---|---|
committer | tsarna <tsarna> | 1998-07-18 04:46:11 +0000 |
commit | 3db541ecb457d3609b1c38d66c0549a1f80945a1 (patch) | |
tree | fb0fe0e8b20c8eafc6bc8d23992f87c62f389c01 /emulators/doscmd | |
parent | 0588978c772df13c305c1f7102b84b91fae83f85 (diff) | |
download | pkgsrc-3db541ecb457d3609b1c38d66c0549a1f80945a1.tar.gz |
An MS-DOS emulator (NetBSD/i386 only)
Diffstat (limited to 'emulators/doscmd')
-rw-r--r-- | emulators/doscmd/Makefile | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/emulators/doscmd/Makefile b/emulators/doscmd/Makefile new file mode 100644 index 00000000000..137b4124579 --- /dev/null +++ b/emulators/doscmd/Makefile @@ -0,0 +1,24 @@ +# $NetBSD: Makefile,v 1.1 1998/07/18 04:46:11 tsarna Exp $ +# + +DISTNAME= doscmd-19960502-2 +PKGNAME= doscmd-19960502.2 +CATEGORIES= emulators +MASTER_SITES= ftp://ftp.netbsd.org/pub/NetBSD/arch/i386/doscmd/ + +MAINTAINER= tsarna@NetBSD.ORG + +ONLY_FOR_ARCHS= i386 + +WRKSRC= ${WRKDIR}/doscmd + +MAKE_ENV+= X11BASE=${X11BASE} + +do-configure: + @cd ${WRKSRC} && \ + ${SED} "s=%PREFIX%=${PREFIX}=" < doscmd.1 >doscmd.1.new && \ + ${MV} doscmd.1.new doscmd.1 && \ + ${SED} "s=%PREFIX%=${PREFIX}=" < doscmd_loader.c >dl.new && \ + ${MV} dl.new doscmd_loader.c + +.include "../../mk/bsd.pkg.mk" |