diff options
author | wiz <wiz@pkgsrc.org> | 2003-06-03 14:35:23 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2003-06-03 14:35:23 +0000 |
commit | 955be09b26a9ff8a64663ceec837230e9c02f628 (patch) | |
tree | 14a99bda4f3e5f8054f40f533c046d4ee6fb71e7 /emulators/dosbox/Makefile | |
parent | 47b006c8e78925f1def6c7c32a3235e9953137c7 (diff) | |
download | pkgsrc-955be09b26a9ff8a64663ceec837230e9c02f628.tar.gz |
Initial import of dosbox, provided by Quentin Garnier via pkgsrc-wip.
DOSBox is a DOS-emulator using SDL for easy portability to
different platforms, DOSBox has already been ported to
several different platforms, such as Windows, BeOS, Linux,
Mac OS X...
DOSBox emulates a 286/386 realmode CPU, Directory
FileSystem/XMS/EMS, a SoundBlaster card for excellent sound
compatibility with older games...
You can "re-live" the good old days with the help of
DOSBox, it can run plenty of the old classics that don't
run on your new computer !
Diffstat (limited to 'emulators/dosbox/Makefile')
-rw-r--r-- | emulators/dosbox/Makefile | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/emulators/dosbox/Makefile b/emulators/dosbox/Makefile new file mode 100644 index 00000000000..a48728a5207 --- /dev/null +++ b/emulators/dosbox/Makefile @@ -0,0 +1,24 @@ +# $NetBSD: Makefile,v 1.1.1.1 2003/06/03 14:35:23 wiz Exp $ +# + +DISTNAME= dosbox-0.58 +CATEGORIES= emulators +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=dosbox/} + +MAINTAINER= cube@cubidou.net +HOMEPAGE= http://dosbox.sourceforge.net/ +COMMENT= multi-platform DOS emulator using SDL + +USE_BUILDLINK2= YES +GNU_CONFIGURE= YES + +post-patch: + ${SED} -e s,/usr/share,${PREFIX}, ${WRKSRC}/docs/dosbox.1 > ${WRKSRC}/docs/dosbox.1.sed + ${MV} ${WRKSRC}/docs/dosbox.1.sed ${WRKSRC}/docs/dosbox.1 + +post-install: + ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/dosbox + ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/dosbox + +.include "../../devel/SDL/buildlink2.mk" +.include "../../mk/bsd.pkg.mk" |