diff options
author | kristerw <kristerw@pkgsrc.org> | 2000-07-13 17:34:38 +0000 |
---|---|---|
committer | kristerw <kristerw@pkgsrc.org> | 2000-07-13 17:34:38 +0000 |
commit | e503dc28623f8ea5c52f2d44136359660e4a591f (patch) | |
tree | a1bc3bb08e7d55365e7c232ed22381e920481b3b /emulators/uae/Makefile | |
parent | ce0b824cef08b97f88bd9f00191bdd45e107abe3 (diff) | |
download | pkgsrc-e503dc28623f8ea5c52f2d44136359660e4a591f.tar.gz |
Updated UAE to version 0.8.12:
Changes from last packaged version:
User-visible changes in 0.8.12:
- Several bugfixes
User-visible changes in 0.8.11:
- Finally, an accurate copper emulation, thanks to Sam Jordan.
- Sprite emulation fixes, also due to Sam Jordan.
- Some CPU emulation fixes (Keith Rollin, Toni Wilen, Lauri Pesonen)
- Old command line options actually work now.
- Some floppy related lockups removed.
User-visible changes in 0.8.10:
- Audio interpolation
- Bugfixes for
* disk emulation
* FPU emulation
* CPU prefetch emulation (the "compatible" setting).
* some 2.0+ filesystem packets
* text-based UI (should compile again)
* some other parts
- People like me who liked the old command line options better can now use
(most of) them again.
User-visible changes in 0.8.9:
- The filesystem emulation should be able to emulate an Amiga FS more
accurately. Script/Pure bits and filenotes are kept.
- Patrick Ohly contributed SCSI support (currently Linux only) that allows
you to (e.g.) use CD writers with the emulator.
The package has ben changed to use the NetBSD sound driver instead of oss.
Diffstat (limited to 'emulators/uae/Makefile')
-rw-r--r-- | emulators/uae/Makefile | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/emulators/uae/Makefile b/emulators/uae/Makefile index 3c976f795fd..00b51406367 100644 --- a/emulators/uae/Makefile +++ b/emulators/uae/Makefile @@ -1,10 +1,10 @@ -# $NetBSD: Makefile,v 1.5 2000/02/23 19:51:57 soren Exp $ +# $NetBSD: Makefile,v 1.6 2000/07/13 17:34:38 kristerw Exp $ -DISTNAME= uae-0.8.8 +DISTNAME= uae-0.8.12 CATEGORIES= emulators MASTER_SITES= ftp://ftp.freiburg.linux.de/pub/uae/ -MAINTAINER= packages@netbsd.org +MAINTAINER= kristerw@netbsd.org HOMEPAGE= http://www.freiburg.linux.de/~uae/ NOT_FOR_PLATFORM= *-*-arm32 @@ -13,17 +13,12 @@ USE_GMAKE= yes USE_X11= yes GNU_CONFIGURE= yes -CPPFLAGS= -I${WRKSRC}/src/include # Because using the gtk+ user interface requires a thread library # we use a brute force method to avoid detection of gtk+. CONFIGURE_ARGS+= --enable-dga --enable-vidmode \ --with-gtk-prefix=${WRKDIR} CONFIGURE_ENV+= CPPFLAGS="${CPPFLAGS}" -post-extract: - @${MKDIR} ${WRKSRC}/src/include/machine - @${LN} -sf /usr/include/soundcard.h ${WRKSRC}/src/include/machine - post-configure: (cd ${WRKSRC}/src; ${MAKE} .SECONDARY) |