diff options
author | wiz <wiz@pkgsrc.org> | 2007-08-30 12:22:59 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2007-08-30 12:22:59 +0000 |
commit | b60b8bc26be94cf2fe97ba24ddecf9071b23568c (patch) | |
tree | 9d65dfd02c86ffaa9f14e6f024d705d2e3d9af48 /emulators/vice/Makefile | |
parent | 41ab38fe959476024f4f0fea14442f23535c4348 (diff) | |
download | pkgsrc-b60b8bc26be94cf2fe97ba24ddecf9071b23568c.tar.gz |
Update to 1.22:
* Changes in VICE 1.22
======================
** C128 changes
---------------
- Added 2 MHz mode support (experimental).
- The cursor keys are mapped differently in C64-mode now.
- Fixed C64-mode autostart support.
** VIC20 changes
----------------
- Improved the sound emulation where the 'volume change click' is
concerned, and normalized the audio output level.
** VIC-II
---------
- The VIC-II border mode can be selected now (normal, full, debug).
- Some sprite fixes needed for Krestage 3 demo.
** Drive changes
----------------
- Improved drive LED emulation.
** Unix changes
---------------
- Fixed the "black screen" bug caused by some X11 library security
update.
- Fixed the usb support for bsd based platforms.
- Changed the preferred libdir and docdir for netbsd and freebsd.
- Xaw/XRandR fullscreen mode is supposed to work.
** C1541 changes
----------------
- Fixed some unlynx bugs.
Diffstat (limited to 'emulators/vice/Makefile')
-rw-r--r-- | emulators/vice/Makefile | 20 |
1 files changed, 2 insertions, 18 deletions
diff --git a/emulators/vice/Makefile b/emulators/vice/Makefile index 8f28cb640f4..852b041f0d7 100644 --- a/emulators/vice/Makefile +++ b/emulators/vice/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.73 2007/04/15 19:13:08 wiz Exp $ +# $NetBSD: Makefile,v 1.74 2007/08/30 12:22:59 wiz Exp $ # -DISTNAME= vice-1.21 +DISTNAME= vice-1.22 CATEGORIES= emulators MASTER_SITES= ftp://ftp.zimmers.net/pub/cbm/crossplatform/emulators/VICE/ \ http://www.zimmers.net/anonftp/pub/cbm/crossplatform/emulators/VICE/ @@ -37,22 +37,6 @@ REQD_DIRS+= ${PREFIX}/share/vice CONFIGURE_ARGS+= --without-oss .endif -# These changes are rather common, so sed instead of patch: -post-patch: - set -e; \ - for file in `${FIND} ${WRKSRC} -name Makefile.in -print` \ - ${WRKSRC}/src/arch/unix/archdep.h; do \ - sed -e "s|/lib/vice/doc|/share/doc/vice|g" \ - -e "s|/lib/vice|/share/vice|g" \ - -e "/^pkglibdir/s|(libdir)|(datadir)|g" \ - "$$file" > "$$file".new; \ - if cmp -s "$$file" "$$file".new; then \ - rm -f "$$file".new; \ - else \ - mv -f "$$file".new "$$file"; \ - fi; \ - done - .include "../../devel/readline/buildlink3.mk" .include "../../devel/gettext-lib/buildlink3.mk" .include "../../devel/zlib/buildlink3.mk" |