diff options
author | dillo <dillo@pkgsrc.org> | 2004-08-16 22:23:58 +0000 |
---|---|---|
committer | dillo <dillo@pkgsrc.org> | 2004-08-16 22:23:58 +0000 |
commit | 240d796d1234911ac39a8ddde0e3c604c2743305 (patch) | |
tree | cbc9caa5c436c529b82b58c0df004b4a54e6411b /emulators/stella | |
parent | f58f8f573f9fae3fcbfc82e09a57703444d47ed1 (diff) | |
download | pkgsrc-240d796d1234911ac39a8ddde0e3c604c2743305.tar.gz |
update to 1.4.1 and fix one bug:
* system properties file was never used.
Changes in 1.4.1:
* Fixed PAL sound issues.
* Cleaned up the SDL event gathering loop.
* Control/Alt can now be used for any event.
* Updated stella.pro file to work with the latest Good2600 ROMset release
(Thanks go to Voch for helping to maintain the stella.pro file).
Diffstat (limited to 'emulators/stella')
-rw-r--r-- | emulators/stella/Makefile | 4 | ||||
-rw-r--r-- | emulators/stella/distinfo | 8 | ||||
-rw-r--r-- | emulators/stella/patches/patch-ab | 13 |
3 files changed, 18 insertions, 7 deletions
diff --git a/emulators/stella/Makefile b/emulators/stella/Makefile index 8a085caf856..685826cdf99 100644 --- a/emulators/stella/Makefile +++ b/emulators/stella/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.18 2004/08/13 16:12:25 dillo Exp $ +# $NetBSD: Makefile,v 1.19 2004/08/16 22:23:58 dillo Exp $ -STELLA_VERSION= 1.4 +STELLA_VERSION= 1.4.1 DISTNAME= stella-${STELLA_VERSION}-src PKGNAME= stella-${STELLA_VERSION} CATEGORIES= emulators diff --git a/emulators/stella/distinfo b/emulators/stella/distinfo index 8066493c482..849d32d45a5 100644 --- a/emulators/stella/distinfo +++ b/emulators/stella/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.4 2004/08/13 16:12:25 dillo Exp $ +$NetBSD: distinfo,v 1.5 2004/08/16 22:23:58 dillo Exp $ -SHA1 (stella-1.4-src.tar.gz) = 3dd22f47d421fd425c795edce09e4e7bf99b1a8e -Size (stella-1.4-src.tar.gz) = 670366 bytes +SHA1 (stella-1.4.1-src.tar.gz) = 085650e00b7d077f9da0069b327f9c9bbec893e4 +Size (stella-1.4.1-src.tar.gz) = 707079 bytes SHA1 (patch-aa) = 893d5ad5165f02c2dfde5d07c348362aba36d340 -SHA1 (patch-ab) = 5fd5d2c911e22827faa9b7c550750adbf50ed228 +SHA1 (patch-ab) = a7d13dd26b7656385c09fda306b8272dd3feae4c diff --git a/emulators/stella/patches/patch-ab b/emulators/stella/patches/patch-ab index 33e77b3cf7f..8119a3938d1 100644 --- a/emulators/stella/patches/patch-ab +++ b/emulators/stella/patches/patch-ab @@ -1,4 +1,4 @@ -$NetBSD: patch-ab,v 1.3 2004/08/13 16:12:25 dillo Exp $ +$NetBSD: patch-ab,v 1.4 2004/08/16 22:23:58 dillo Exp $ --- ../unix/SettingsUNIX.cxx.orig 2004-07-05 02:53:48.000000000 +0200 +++ ../unix/SettingsUNIX.cxx @@ -14,3 +14,14 @@ $NetBSD: patch-ab,v 1.3 2004/08/13 16:12:25 dillo Exp $ // Set up the names of the input and output config files mySettingsOutputFilename = myUserConfigFile; +@@ -54,6 +54,10 @@ SettingsUNIX::SettingsUNIX() + else + mySettingsInputFilename = mySystemConfigFile; + ++ // otherwise the system properties file is never used ++ if(!fileExists(myUserPropertiesFile)) ++ myUserPropertiesFile = ""; ++ + mySnapshotFile = ""; + myStateFile = ""; + } |